¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date
Re: Can anyone help with crashing IB gateway?
I've experienced crashes with 10.x startup in a couple of situations: * using Wayland (use Xorg instead) * using tightvnc (use tigervnc instead)
By buddy · #50903 ·
Can anyone help with crashing IB gateway?
Anyone have any tips on tracking down an IB Gateway crash? Current install is 981.3c, I tried to update to 1021. The updated application crashes on startup. It crashes whether started standalone, or
By Andy Geach · #50902 ·
Re: API historical data with less decimals than seen in chart for EUR.USD
the last info i have is about a week old and they said they're still working on it...
By fordfrog · #50901 ·
Re: API historical data with less decimals than seen in chart for EUR.USD
Hi! I also stumbled upon this one when upgrading the TWS/Gateway version. Have found out that the rounding doesn't happen on TWS/Gateway 10.12.2p but I get it on 10.19 and 10.21. I don't have access
By @MattiasLindsjo · #50900 ·
Re: Running multiple algorithms in parallel
Lol, thanks Richard. IIRC trying to sidestep the problem by canceling the mkt data prior to exit actually didn't work (see [here](/g/twsapi/message/50034)). It doesn't matter to me
By buddy · #50899 ·
Re: Running multiple algorithms in parallel
buddy While you are absolutely correct that there is a bug here, there is also a very simple workaround. I described this in some detail in the thread where we discussed it back in September
By Richard L King · #50898 ·
Receive execDetailsEnd for new executions
Hi, When I start up my algo I request executions via reqExecutions and then IB sends as exepcted all execDetails, followed by the execDetailsEnd callback, once all individual execDetails were
By Simon Steiner · #50896 ·
Re: Running multiple algorithms in parallel
Theoretically this is true but beware there's a somewhat gross [bug](https://gist.github.com/ReliefCrew/1376d483abeb8e4641b038aa41e2424e) since 10.x that probably hasn't been fixed yet. It could cause
By buddy · #50895 ·
Re: Running multiple algorithms in parallel
The short answer is yes. Up to 32 of them as described in the TWS API Reference Guide section Connectivity. ( https://interactivebrokers.github.io/tws-api/connection.html#connect ) The different
By J¨¹rgen Reinold · #50894 ·
Running multiple algorithms in parallel
Hello all, Is it possible to run multiple strategies at once, provided that each instance of python has a different client id and requests the next valid order ID before each order? Thanks for the
By slyt33 · #50893 ·
Re: c++ requesting option chain and option data
Not to my knowledge. It even seems to me that TWS go through the same steps as it gives you the number of answers way before (~1 sec) it shows you all the data (~10 sec). The scanner seems a pretty
By Gordon Eldest · #50892 ·
Re: Stock Margin requirements
Excellent, thanks Bart. Sent: Monday, March 27, 2023 10:00 AM To: [email protected] Subject: Re: [TWS API] Stock Margin requirements Looking at the source code, it is the ¡®margin cushion¡¯
By David Walker · #50891 ·
Re: Stock Margin requirements
Looking at the source code, it is the ¡®margin cushion¡¯ I.e. the excess liquidity that remains on your account after the order would
By Bart D · #50890 ·
Re: Stock Margin requirements
Related, is anyone able to confirm if the Margin Condition object, added to orders for order conditioning, is referring to the instrument margin requirements, or margin cushion in the account ¨C I
By David Walker · #50889 ·
How NOT to get greeks with option reqMktData() request?
https://interactivebrokers.github.io/tws-api/option_computations.html#option_greeks From that page: Market data related to options The option greek values- delta, gamma, theta, vega- are returned by
By Crow · #50888 ·
Re: TWS API 10.20 c++ windows
This linker error looks like it cannot find the intel math library. Did you install the intelrdfmathlib with the correct triplet to compile with x64? Make sure you install
By David Armour · #50887 ·
Re: logout to run a new historical data request?
If this sample proves anything, than how not to write a script. If you are not married to python, try ib-ruby : ib-extensions has a `eod`method. It fetches eod-data. Other timeframes are possible,
By Hartmut Bischoff · #50886 ·
Re: TWS API 10.20 c++ windows
Hi David, I have installed VCPKG and "intelrdfmathlib" but still getting 2 (3) errors trying to compile to x64. Severity Code Description Project File Line Suppression State Error LNK2019 unresolved
By YubiVan · #50885 ·
Re: logout to run a new historical data request?
I don't think it's disconnecting gracefully after app.run() is called. I can't find anything in the docs [https://interactivebrokers.github.io/tws-api/connection.html] about disconnecting either. It
By tbrown122387@... · #50884 ·
logout to run a new historical data request?
I'm running a Python script I found on the internet (attached below) to pull some historical data from ib. It works well if I run it once. If I run it twice it doesn't receive anything. If I run it in
By tbrown122387@... · #50883 ·