¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date
IBC and TWS 981
I've finally been forced by IB to bite the bullet and migrate to TWS 981. I've been previously using IBController320 (aarghh) and older TWS. Richard - what a bummer! So if I don't want to be logged
By Lou Dudka · #47987 ·
Re: No response from TWS after moving from 973.2g to 981 or 985
IB sometimes sets a new minimum allowable TWS version but I don't remember them doing that with Api versions. I can't seem to find release notes that talk about minimum versions but maybe someone has
By Nick <news1000@...> · #47986 ·
Re: No response from TWS after moving from 973.2g to 981 or 985
Do you have api logging turned on?? Check the api.day.id.log file to see if the request is sent.
By btw · #47985 ·
No response from TWS after moving from 973.2g to 981 or 985
I'm trying to move from 973.2g to a later version.? I am able to connect and receive several data farm messages, but my requests for account updates and other services are ignored. Does anyone have
By Frank Bell · #47984 ·
Re: create dataframe after positions iterate to end of positions list
The position request follows a fairly standard TWS API batch-data protocol of calling a closing "xxxEnd" callback upon completion so it looks like the only thing you need to add is the implementation
By ds-avatar · #47983 ·
create dataframe after positions iterate to end of positions list
I am trying to figure out how to most effectively create my dataframe of positions only AFTER the loop of creating the list of positions is complete, not while it is iterating through each positition.
By ebtrader · #47982 ·
Re: reqCurrentTime
Here is my own answer. I first created a new CurrentTimeMessage Class to handle this type of message: And modified the abstract class MarketDataMessage with a new constructor with one parameter only.
By Bruno Voisin · #47981 ·
Re: Data
Nick, Thanks for your comments !!! I was getting it all the way around... Eduardo
By Eduardo Esteva Kremer <eekremer@...> · #47980 ·
Re: reqCurrentTime
Thank you both, I've done extensive coding in VB.NET now moving on to C#, so I'll figure it out eventually. Message Processing looked easier to follow in VB.
By Bruno Voisin · #47979 ·
Re: US futures historical data in exchange time
Guys, Thanks a lot. Setting login to Chicago is a great solution My comp was already in Chicago time. Actually since very beginning many years ago I¡¯ve found that regardless what broker you use, the
By Edward · #47978 ·
Re: reqCurrentTime
Both are also still in the Java 985 API that I downloaded a few weeks back. reqCurrentTime and currentTime callbacks are still there.
By J¨¹rgen Reinold · #47977 ·
Re: US futures historical data in exchange time
Timezones are tricky business even before you consider incompatible daylight saving concepts around the world or states, such as Arizona, that don't do daylight saving. Here a couple thoughts that may
By J¨¹rgen Reinold · #47976 ·
Re: Data
The MktData stream is sampled at about 4/sec for stocks. The rate doesn't change if volume gets heavy so you always have a stream of recent prices. The TickByTick stream sends every tick and several
By Nick <news1000@...> · #47975 ·
Re: US futures historical data in exchange time
Hi again. I am also in the EST time zone, if by EST you mean Sydney time. I trade mainly US futures, and solved all my time zone problems by setting both the computer and TWS login to Chicago time.
By Kevin · #47974 ·
Re: reqCurrentTime
It's both still in C# API mandatory interface declaration and testbed in the source. Without release notes specific to this new API version it's hard to judge if there are any concrete changes.
By ds-avatar · #47973 ·
Re: US futures historical data in exchange time
Interesting. Thanks. The comp is in the EST zone. I have not selected anything related to the time zone in the login screen but I¡¯ll recheck. It has been about ten years since i used the IB
By Edward · #47972 ·
Re: US futures historical data in exchange time
From this page ( https://interactivebrokers.github.io/tws-api/historical_bars.html ) : The time zone of returned bars is the time zone chosen in TWS on the login screen. KH
By Kevin · #47971 ·
reqCurrentTime
Hi All, Probably a dumb question, so apologies in advance: I don't see this reqCurrentTime being used in the latest 9.85 API (no callback). Is it to be deprecated with the EClient code left for
By Bruno Voisin · #47970 ·
Re: US futures historical data in exchange time
Thanks for the reply. I'm using .NET C# "yyyyMMdd HH:mm:ss" format for the endDateTime so I guess it is what you meant? As much as I remember Python (quite rusty) it is the same... Are you saying IB
By Edward · #47969 ·
Re: US futures historical data in exchange time
The issue is how you set current time. Make sure you set your "endDateTime" variable in the following way using the datetime package, if you are using Python (script attached): endDateTime =
By ebtrader · #47968 ·