开云体育

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

Anyone has code to show all option chain names for a symbol?


 

Anyone has code to show all option chain names for a symbol?


 

Hey, I use these functions to get the options chain:
?
First, create a Contract for the underlying, as well as 2 vectors to capture options chain details (one of type std::string to retrieve expiry dates, and the other of type double to retrieve strike prices).
// Define a contract
Contract retContract = Contract();
// Define return data structures
std::vector< std::string > m_expiries;
std::vector< double > m_strikes;
?
First, get the underlying contract ID to retrieve the options.
// Set the underlying contract data
retContract.symbol = symbol; // "SPY"
retContract.secType = secType; // "STK"
retContract.currency = currency; // "USD"
retContract.exchange = exchange; // "SMART"
?
// Get the contract ID, for future use
m_pClient->reqContractDetails( ++m_requestId , retContract );
?
std::this_thread::sleep_for( std::chrono::seconds( SLEEP_SEC ) );
?
m_osSignal.waitForSignal();
errno =0;
m_pReader->processMsgs();
}
?
In the callback for reqContractDetails, we retrieve the contract ID and assign it to our underlying contract.
void Strategy::contractDetails( int reqId , const ContractDetails& contractDetails ) {
retContract.conId = contractDetails.contract.conId;
}
?
Once you have the conId, you can retrieve the options chain.
// Retrieve options chain
void Strategy::getOptionsChain() {
printf( ">> Getting options chain\n" );
printf( "\tContract Id: %d\n" , retContract.conId );
?
m_pClient->reqSecDefOptParams( ++m_requestId , retContract.symbol , "" , "STK" , retContract.conId );
?
// Returns in securityDefinitionOptionalParameter callback
std::this_thread::sleep_for( std::chrono::seconds( SLEEP_SEC ) );
?
m_osSignal.waitForSignal();
errno = 0;
m_pReader->processMsgs();
}
?
The response will be returned in the following callback:
// Callback for reqSecDefOptParams()
void Strategy::securityDefinitionOptionalParameter( int reqId , const std::string& exchange , int underlyingConId , const std::string& tradingClass , const std::string& multiplier , const std::set<std::string>& expirations , const std::set<double>& strikes ) {
?
m_expiries = std::vector< std::string >( expirations.begin() , expirations.end() );
m_strikes = std::vector< double >( strikes.begin() , strikes.end() );
}
?


 

This is a good stuff.. thank you.. now i got homework


 

On Sun, Mar 30, 2025 at 08:17 PM, <Alex@...> wrote:
retrieve the options chain.
Where do I find the Open Interest Field?


 

You're welcome :)
?
Regarding Open Interest, I don't use it but found this (very old) thread that mentions the tick types you could set in your reqMktData() call:
?
Basically, it says that you should add generic tick 101 to the reqMktData() function:
m_pClient->reqMktData( ++m_requestId , retContract, "101" , false , false , NULL );
?
This should return a value in the tickSize() callback.
//! [ticksize]
void TraderClient::tickSize( TickerId tickerId, TickType field, Decimal size) {
? ? //printf( "Tick Size. Ticker Id: %ld, Field: %d, Size: %s\n", tickerId, (int)field, decimalStringToDisplay(size).c_str());
}
//! [ticksize]
?
In the callback, just check the value of the field parameter and if it's field = 27, then the?size parameter will be the call open interest, and if field = 28 then it will be the put open interest.


 

Also, here's a list of the generic tick types in case you want to retrieve more data:
https://interactivebrokers.github.io/tws-api/tick_types.html


 

I think IB needs a callback to get OI. This is very slow and time consuming wow. IT should have been more of a spread sheet return.