¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date
Re: Looping the Historical ticks request
yes thank you!
By ebtrader · #47327 ·
Re: back and glad for it
You run 6 instances for different accounts or for one account? Probably 3 accounts with paper and live?
By Bruce B · #47326 ·
Re: back and glad for it
https://github.com/ib-ruby/ib-container I run up to 6 instances on a single cloud instance. Just install a window-manager there and x2-go (server) and you get a reasonable facsimile of a
By Hartmut Bischoff · #47325 ·
Re: Looping the Historical ticks request
Hi, It's done so: start with one call self.reqHistoricalData(self.hisID, self.contract, self.lastxDay, "1800 S", "1 secs", BID_TYPE, 0, 1, False, []) def historicalData(self, reqId, bar): # do your
By erezkaplan90@... · #47324 ·
back and glad for it
Hi everybody, I¡¯m back and also wanted to express my thanks to folks here for helping me to stand-up automated trading through IB. I couldn¡¯t be more delighted. My only nit is that having to
By Stuart Cracraft <smcracraft@...> · #47323 ·
TWS vs Gateway at reconnections
Last week I was running the TWS and the gateway simultaneously when my internet connection suddenly disappeared. While the gateway attempted to reconnected many times until finally the connection was
By Despair · #47322 ·
Re: Looping the Historical ticks request
That is not correct. reqHistoricalTicks takes start and end times. You can specify the end time you want for the first request. Then subtract 1 from the oldest received timestamp and use that for the
By Nick <news1000@...> · #47321 ·
Re: Looping the Historical ticks request
Use reqTickByTickData ( https://interactivebrokers.github.io/tws-api/classIBApi_1_1EClient.html#a3ab310450f1261accd706f69766b2263 ) for acquiring live tick data ( as long as cancel- or API
By Sebastian · #47320 ·
Looping the Historical ticks request
Is there a good way to create a loop for the historical ticks request? ?This could help to bypass the 1000 line limit per request.
By ebtrader · #47318 ·
Re: Getting Option Call Open Interest (tickId 27) and Option Call Volume (tickId 29)
Same here.? I do receive OI and not Volume.? This issue is not a new one...
By Bruno Voisin · #47317 ·
Re: OrderState Status Partial Fill
My vote is on execution reports ( https://interactivebrokers.github.io/tws-api/executions_commissions.html ) since orderStatus (
By J¨¹rgen Reinold · #47316 ·
Re: OrderState Status Partial Fill
I don't think there is a status text specifically for partially filled orders. Such working orders will have the status "Submitted" and change to "Filled" once completely executed. Every change in
By ds-avatar · #47315 ·
OrderState Status Partial Fill
All, Having some difficulty simulating this, when requesting a filled order, what is the "status" in the OrderState class if it is partially filled?? Is there a way to tell if the order is
By Mike · #47314 ·
Re: Adding Attributes to Order Object
JR, Thank you for the input and your suggestions.? Much appreciated. Mike
By Mike · #47313 ·
Re: Adding Attributes to Order Object
There is no way to add fields to the Order object that travel all the way to IB and back to you. That would be a scary thought from a security point of view. But depending on what you are trying to
By J¨¹rgen Reinold · #47312 ·
Adding Attributes to Order Object
All, I am wondering if there is any way to add an attribute to an Order object placed at IB, then return the order object from IB with that attribute.? Currently when I try this, the attribute I
By Mike · #47311 ·
Re: Getting Option Call Open Interest (tickId 27) and Option Call Volume (tickId 29)
Thanks a lot Nick, It worked for Option Call Open Interest (tickId 27) but for some reason it doesn't get any Option Call Volume (tickId 29). Maybe I should calculate the volume requesting historical
By Pirro Trader · #47310 ·
Re: Getting Option Call Open Interest (tickId 27) and Option Call Volume (tickId 29)
Tick types 27 and 29 come back in tickSize instead of tickString. https://interactivebrokers.github.io/tws-api/tick_types.html
By Nick <news1000@...> · #47309 ·
Getting Option Call Open Interest (tickId 27) and Option Call Volume (tickId 29)
Hello, I'm trying to get Option Call Open Interest (tickId 27) and Option Call Volume (tickId 29) with the following code, but I only get "TickerId: 99 TickType: 49 Value: 0.0" in TickGeneric
By Pirro Trader · #47308 ·
Re: using reqAccountUpdates to create pandas dataframe for each new update
Thanks Trevor, that's true - I coded this up in a scratch file without the usual other code that would go along with it.
By @ScottBrian · #47307 ·