开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育
Re: Time is a reserved name in VBA
That’s not quite right. ‘Time’ is NOT a VBA function: it’s a property of the VBA DateTime module (you can see this using the ObjectBrowser). It returns a variant with a vbDate variant
By Richard L King · #53854 ·
Time is a reserved name in VBA
The Excel versions of the API frequently use the variable 'time'.? Declaring it as string or as long in numerous places.? It is also in the TWSlib in at least five places. This is a problem because
By Harold Lanier · #53853 ·
Re: Cancel on Client Disconnect/Logout
Thanks for the clarification.
By tarun.joshi@... · #53852 ·
Clarification on Identifying Order Status Callback for Modified Orders
Hello Folks, While sending a modification request for an existing confirmed order, I am receiving the following callbacks related to that specific order ID: * *OpenOrder* * *OrderStatus* * *Error* :
By tarun.joshi@... · #53851 ·
Re: Cancel on Client Disconnect/Logout
Set `order.GoodTillDate`, configure it till end of day minus 1 second.
By Daniel Ferreira · #53849 ·
Cancel on Client Disconnect/Logout
Hi, Is there any option in the TWS application to automatically cancel all open orders (an event triggered automatically by the TWS application) when the client disconnects? Or is there a specific
By tarun.joshi@... · #53848 ·
Re: Not receiving previous close price from ReqMktData
Not sure what to tell you, but maybe this is one for IBKR to look into. It does not feel like there is anything your client does wrong. Here a few thoughts: * IBKR describes the "Close" tick as: "
By Jürgen Reinold · #53847 ·
Fee Rate for opening a short position
Where does the fee rate show up? Is it folded into the commision charge? How can that be determined through the API? If I understand the fee rate correctly then taking for example I open a short
By Chucky · #53846 ·
Re: Not receiving previous close price from ReqMktData
For the contrast, I'm also attaching another API session log from today where the #9 tick was reported immediately after ReqMktData call, as expected. Unfortunately the fact that the tick is reported
By ds-avatar · #53845 ·
Not receiving previous close price from ReqMktData
I'm not regularly receiving tick #9 today through the API after calling ReqMktData for one particular stock. Admittedly, this is not the first time I ran into this bug for any random stock, but today
By ds-avatar · #53844 ·
Re: reqHistoricalTicks() & batching vs. reqTickByTick() vs. reqHistoricalData(), Backtesting vs. Realtime execution
I assume you are talking about grouping TickByTick real time data into 1second candles? You would not use your tick arrival timestamp, but the 1second resolution timestamp IBKR provides with each
By Jürgen Reinold · #53843 ·
Re: reqHistoricalTicks() & batching vs. reqTickByTick() vs. reqHistoricalData(), Backtesting vs. Realtime execution
Good question. See for yourself when calling reqTickByTick(), try converting the time from an epoch to a timestamp with the format -> 'hh:mm:ss.ms'. Then call reqHistoricalTicks() and see a comparison
By Brendan Lydon · #53842 ·
Re: reqHistoricalTicks() & batching vs. reqTickByTick() vs. reqHistoricalData(), Backtesting vs. Realtime execution
Very insightful discussion, when rounding to the 1 second, does it means that any tick with a "real" timestamp with be rounded to the second based on of +/-500ms or is it more of a
By Sdoof · #53841 ·
Re: C++ preventing EReader reading when socket is closed
On restarting the TWS Application manually from TWS Application drop down menu while TWS API process is up & running TWS Api replies with Connection Closed callback via Updated source code void
By tarun.joshi@... · #53840 ·
Re: C++ preventing EReader reading when socket is closed
It is hard to follow what you are doing from the above code, however, you should not be calling "stop()" yourself. This is a function that is supposed to be internal to the API. I see you are
By David Armour · #53839 ·
Re: Improvements to Intraday Momentum Strategies Using Parameter Optimization and Different Exit Strategies
Dear Akos, thanks for sharing, a pity you couldn't replicate the returns of the Zarattini paper. Regarding your paper, looks promising but I would need to test it first out-of-sample. Kr, Trados
By Trados · #53838 ·
Re: C++ preventing EReader reading when socket is closed
Hello David Armour, I have been encountering a similar issue regarding the TWS application. My goal is to simulate scenarios where the TWS application experiences a freeze or requires a restart due
By tarun.joshi@... · #53837 ·
Re: C++ preventing EReader reading when socket is closed
Just tested API version 10.33.02. It works as expected. Thanks!
By zhou437@... · #53836 ·
Re: C++ preventing EReader reading when socket is closed
You are running an old version. There was a bug in the Windows version which was corrected on 5 Sep 2024 and release in the "latest" version. Version 10.30.1t was released back in July 2024. If you
By David Armour · #53835 ·
Re: C++ preventing EReader reading when socket is closed
My IB Gateway version is latest stable 10.30.1t, API version is latest stable 10.30.01 running on Windows. I replicated this on the sample TestCppClientStatic (debug, both win32 and x64). 1) start IB
By zhou437@... · #53834 ·