¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date
Re: Option Chain (Strike/Bid/Ask) into Panda
"contractDetails does not respond with a specific field/callback for "strike" but instead the strike information is contained in the callback contractDetails" -correct "I am having trouble parsing
By Mischa Bertrand-Chetty <mischabchetty@...> · #45996 ·
Re: Option Chain (Strike/Bid/Ask) into Panda
All perfectly reasonable questions. And questions that I am quite frankly embarassed to have to address, due to my complete lack of knowledge on the subject. But below is my honest best-efforts
By ajohnnd@... · #45995 ·
Python reqMktData blocking?
Group - I fire up gateway and issue a few method calls: def connectAck(self): print(f"somestuff") self.reqCurrentTime() # triggers callback currentTime() self.build_portfolio() # i have
By bunbun tigery · #45994 ·
Re: Option Chain (Strike/Bid/Ask) into Panda
It would help if you show what you've tried, what you have so far. Have you managed to get the data you want yet? What part of storing the data are you having trouble with? etc.
By Mischa Bertrand-Chetty <mischabchetty@...> · #45993 ·
Option Chain (Strike/Bid/Ask) into Panda
Good afternoon, You'll have to excuse my complete ignorance when it comes to matters of the TWS API; I am a rank beginner looking to learn. I have gone through the series of short videos posted by IB
By ajohnnd@... · #45992 ·
Re: News Rank
I'm just guessing but it looks like it's encoded in the `extraData` argument passed to
By @lbilli · #45991 ·
News Rank
Hello, when subscribing to news feed via API, is it possible to receive the rank?? If yes, how? Thanks.
By Vadim Cherkasov · #45989 ·
Re: TWS API | Options market data request issue.
Thank you, J G. Calling cancelMktData(<ticker_id>) before calling disconnect() fixed the issue, both with live and paper trading. I'll keep monitoring for error 10197 on the live trading account to
By rtx · #45988 ·
Re: TWS API | Options market data request issue.
Your message contains an 8 step overview. I would like to emphasize that step #5 must contain two activities: 5a. cancel market data subscription for the tickerID: cancelMktData(1) 5b. disconnect
By J G · #45987 ·
Re: Symbol in API Market Data Callbacks
The id is an integer, you can check the exact type for your language by looking at the function definition. It just has to be unique for each active request type. So you can use 101 in reqMktData and
By Nick <news1000@...> · #45986 ·
Re: TWS API | Options market data request issue.
IB support suggests checking that I don't run several user sessions on one computer and don't fall under these cases https://ibkr.info/article/1719
By Mikhail Ershov · #45985 ·
Re: Symbol in API Market Data Callbacks
Thanks, Nick. Is this id limited by size or type at all? Since it's a request id and not a contract id (or whatever), do they need to increment / be unique, and over what timeframe (per login)?
By bunbun tigery · #45984 ·
Re: Symbol in API Market Data Callbacks
Using the reqid is the only way. In a simple case of a stock the symbol alone may have meaning. But IB has many financial instruments, identified by what they call a contract, and it would be
By Nick <news1000@...> · #45983 ·
Symbol in API Market Data Callbacks
I've been toying with the tws api. When I request a quote, I call req.MktData with a reqId. This appears to be something of magic number, but I can find no other way to see what the actual SYMBOL is
By bunbun tigery · #45982 ·
Re: TWS API | Options market data request issue.
How much time do you have to wait to get back again good data ? I will hypothesis that this is not related to connection issue but to some delay that IB introduce to pace down subscriptions. Some of
By Gordon Eldest · #45981 ·
Need sample for Mosic Market scanner
I need sample for read Mosic Market scanner with customize some columns (like : volume > 1000)
By moshe.peled@... · #45980 ·
Re: TWS API | Options market data request issue.
Seeing the same error when requesting option prices with the following steps: 1. Connect to TWS with a paper account on port 7497 2.?app.reqMarketDataType(4) 3.?app.reqMktData(1, contract, "",
By rtx · #45979 ·
Re: Get the latest ask/bid
I have no proof of that but never thought that I need a new tick to get a previous one. Always seems to me to arrive really ASAP. hence faster than reqMktData. If you want deeper control you can look
By Gordon Eldest · #45978 ·
Re: About Tradingview and IB API
Seem fun so I look at it and generate more question that it will give you answers. I hyopthesis a lot hereafter Not sure I understand what you want to achieve or had achieved. Tradingview (unknown
By Gordon Eldest · #45977 ·
Re: reqMatchingSymbols issue resolved
I can confirm for C++ it works.
By Gordon Eldest · #45976 ·