I have the following Bloomberg BDS excel-formula: (";" is substituted with "," due to different settings in excel)
=@BSD(”TSLA US Equity”;”CHAIN_TICKERS”;”CHAIN_EXP_DT_OVRD=20210917”;”CHAIN_PUT_CALL_TYPE_OVRD=CALL”;”CHAIN_POINTS_OVRD=1000”)
In this instance, from this I get a list of all call option tickers for tickers, with expiration on 17/09/2021 (DDMMYYYY) for TSLA.
When trying to translate it to the XBBG API for Bloomberg, I have done the following (based on earlier helpful advice from SO'er):
import xbbg as blp
df = blp.bds(['TSLA US Equity'],
['CHAIN_TICKERS'],
CHAIN_EXP_DT_OVRD='CHAIN_EXP_DT_OVRD=20210917',
CHAIN_PUT_CALL_TYPE_OVRD='CHAIN_PUT_CALL_TYPE_OVRD=CALL',
CHAIN_POINTS_OVRD='CHAIN_POINTS_OVRD=1000')
But I only get a single data point returned, not the entire list.
What am I doing wrong?