¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date
Re: did something change on 9/21/22 getting 366 on a feed that "WAS" working well.
What do you mean ? "I" or "it" ? You should submit herewith your request in full. You have an issue which is pretty unique and unusual. It maybe that it was luck that make it working before
By Gordon Eldest · #51749 ·
Re: Bad Ticks
Which data feed do you observe, IBApi::EClient::reqTickByTickData ( https://interactivebrokers.github.io/tws-api/classIBApi_1_1EClient.html#a3ab310450f1261accd706f69766b2263 ) or
By J¨¹rgen Reinold · #51748 ·
Bad Ticks
Anybody else get a bunch of bad ticks in CL today?? I had 10+ bad ticks from 30->150 x min tick, I checked ES(ok) HO(ok) NG(1 bad). What's the real time algo for dealing with these?? ?The hardest
By btw · #51747 ·
TWS api multiple similar orders submission delays
I have a IBGateway TWS solution which sends multiple, i.e 10 orders on the same security, but with different limit prices, for instance Option BUY order with: - Quantity=6, LMT price= 14.50 -
By @tomaszk · #51746 ·
Re: receiving quotes from funded account, trading on paper account
There had been an issue a couple weeks ago as discussed in this topic ( /g/twsapi/topic/101345227 ) , but for us and others who commented in the topic, data sharing between a live
By J¨¹rgen Reinold · #51745 ·
receiving quotes from funded account, trading on paper account
Now The IB does not let you have real time quotes on both real account and paper account.? I am thinking if it is possible to receive the quotes from the real account, while trading on the paper
By zlzhao22@... · #51744 ·
did something change on 9/21/22 getting 366 on a feed that "WAS" working well.
been using a standard call to historical data for years but suddenly (9/21/22) I am getting ``` Error 366, reqId 4: No historical data query found for ticker id:4, contract: Stock(symbol='AAPL',
By comicpilsen · #51743 ·
Re: APIPending status?
Hi Uncle, I managed to place a market MKT and LMT order by completing some fields in the PlaceOrder message buffer. Check it out
By Franco Chiesa Docampo <fchiesadoc@...> · #51742 ·
Error 504 when trying to start trade after testing.
When I run my program everyday, first I connect to ib. Then I use this logic app.isConnected() to check if its connected using a python script. I run it twice, because sometimes it does not connect
By omgwtfsalty@... · #51741 ·
Re: reqPositions not returning all positions
Thanks buddy, this is very helpful!
By Chris · #51740 ·
Re: IB's own SAMPLE Excel files still refer to de-supported order attributes so they don't work at all -- how do I bypass / fix??
Ok, I¡¯ve looked into this a bit more, including stepping through the VBA with the debugger, and unfortunately I can see that the suggestions I made are not going to work, and the code change I
By Richard L King · #51739 ·
Re: IB's own SAMPLE Excel files still refer to de-supported order attributes so they don't work at all -- how do I bypass / fix??
Thank you both for your replies. @joanmarcel119 - yes, as I wrote in my OP, I went looking through all the VBA, did a ctrl-F search through every Object and Module looking for text string "NBBO", but
By grooooper · #51738 ·
Re: reqPositions not returning all positions
It's not much different. Search for _positionEnd_ in the sample code provided w/ the API (_IBJts/samples/Python/Testbed/Program.py_) and you'll see how to add it to your program. At the same time
By buddy · #51737 ·
Re: IB's own SAMPLE Excel files still refer to de-supported order attributes so they don't work at all -- how do I bypass / fix??
As far as the legacy version goes, it should be as simple as removing the relevant rows (for example row 39 for NBBO Price Cap) from the Extended Order Attributes page, and the corresponding columns
By Richard L King · #51736 ·
Re: ReqHistoricalTicks() & Futures Data Limitations, Rolling Expiring Contracts
Set the IncludeExpired field in the Contract object to true, as described in the Contract class documentation ( https://interactivebrokers.github.io/tws-api/classIBApi_1_1Contract.html ).
By J¨¹rgen Reinold · #51735 ·
Re: ReqHistoricalTicks() & Futures Data Limitations, Rolling Expiring Contracts
hello, I've tried reqContractDetails with NQ future, and here is below the contract list returned in contractDetails. As you can see, there are *only non-expired* contracts. So is there anything to do
By FrenchFlorent · #51734 ·
Re: reqPositions not returning all positions
thanks, not sure how to do that....
By Chris · #51733 ·
Re: IB's own SAMPLE Excel files still refer to de-supported order attributes so they don't work at all -- how do I bypass / fix??
Hi there, you can try to modify the code by commenting the line which sets the deprecated attribute. Just place ' on the line and you could also contact IB (so they can later fix it and help other
By joanmarcel119 · #51732 ·
IB's own SAMPLE Excel files still refer to de-supported order attributes so they don't work at all -- how do I bypass / fix??
I still use the Legacy DDE API to submit orders from Excel to TWS. But a TWS update about a year ago completely broke order submission for me, which I've been pulling my hair out troubleshooting, but
By grooooper · #51731 ·
Re: reqPositions not returning all positions
Have you tried waiting for the [positionEnd](https://interactivebrokers.github.io/tws-api/interfaceIBApi_1_1EWrapper.html#acf1bebfc1b29cbeff32da7d53aec0971) call back instead of sleeping?
By buddy · #51730 ·