@Tradehull_Imran , sir
@RahulDeshpande , sir
Hi Team -
Need code for change Future open interest , like option chain data.
Also need help code for 9.20 candle ATM strike CE, PE names in SENSEX.
Algo will run after 10.15 A.M.
Already I started this algo to put manually CE, PE names in watchlist. If I get this code to automate fill watchlist ATM strikes names of specific candle then it will very helpful to me.
Thank You
Hi @Somnath_Mondal ,
You can fetch OI data for any instrument using the below code:
name = 'NIFTY 03 APR 23200 CALL'
quote_data = tsl.get_quote_data(name)
call_oi_data = quote_data[name]['oi']