jeog

Results 15 comments of jeog

The bridge just naively takes in whatever TOS sends out. At times, like in the after-hours session, this can happen. Looking at the historical data for a particular stream should...

It looks like you're pulling a snapshot of the day's open which is always going to be the same value as there is only one open price. (Certain fields, like...

best I could come up with is to wrap the import like so... ``` def interactive_import(module, obj=pypreprocessor): import types, inspect g = inspect.stack()[1][0].f_globals # use previous frame's globals def interactive_on_the_fly(self):...

Sorry I missed this. I'm not 100% sure what you're trying to do. It sounds like you are trying to buy and use a OCO bracket to exit. If so...

It's been a while since I used this script, but sounds like the RequestHandler is hanging. First thing I would do is add some debug print statements to the script...

Thanks for filing the issue, hopefully we can get this working so I can add a build option for mac. The problem is I have no experience w/ mac so...

Those functions are from the crypto library. Trying adding -lcrypto after -luv

Glad it worked. I think you may have an issue using sigwait instead of sigtimedwait, the latter returns the singal number (> 0) on success and the former sets the...

I just pushed a new branch 'mac-build' that fixes the things you mentioned and adds a workaround to the 'sigtimedwait' issue that appears to work on linux - so far....

I merged these updates to master EXCEPT -luv, which should be manually added to objects.mk. (The makefiles are automatically generated and I didn't want to force an unnecessary dependency on...