开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

reqContractDetails() does not get a callback if secType = "OPT"


 

I had some old code I haven't run for a few years, which used to successfully retrieve an option chain.? I've been trying to update it but for the life of me I can't get hold of an option chain through reqContractDetails() with code which used to work.
?
I've updated to IB Gateway 10.33 and also a python client implementing API 10.30.01.
?
I can call reqContractDetails
?
contract = Contract()
contract.symbol = "AAPL"
contract.secType = "STK"
contract.currency = "USD"
contract.exchange = "SMART"
reqContractDetails(1, contract)
?
This works perfectly and I retrieve the details just fine.
?
If however I then do:
optContract = Contract()
optContract.symbol = "AAPL"
optContract.currency = "USD"
optContract.exchange = "SMART"
optContract.secType = "OPT"
optContract.multiplier = ""
optContract.conId = 0
reqContractDetails(2, optContract)
?
Then the contractDetails() callback never gets called, or at least within my 60 second timeout.? I have tried with "" for exchange and multiplier - no dice.
?
I can see how if I'm not properly defining a request for the option then it won't find it - but then I'd expect a "security not found" type message - whereas this is more like as soon as the contract type is set to OPT the callback never takes place.
?
Any ideas?? Is it possible that I'm doing this on a Sunday and it will work during regular trading hours?
?
Thanks in advance,
S.?

Join [email protected] to automatically receive all group messages.