Open interest in websocket
-
Hi @nirav we will update you on this.
-
@admin Is the OI and TOI made a part of the feed. Although I don't see it in the feed yet. Not sure if its made a part of the feed.
-
Hi @Vypy1 Currently it is not the part of feed.
-
Any idea when the OI data will be available for web socket streaming ?
-
Hi @azkhan we appreciate your patience we will provide you with the oi data soon.
-
We are hearing this from December..
-
@rajanprabu lol. they are not even working on it I guess.
-
@rajanprabu its jsut a waste of time. move to aliceblue
-
HI @admin said in Open interest in websocket:
Hi @azkhan we appreciate your patience we will provide you with the oi data soon.
We have taken the latest update from the team.
-
@admin Can you provide any tentative dates when you guys are going to add OI data in web socket streaming.
-
@admin when is the next major release of smart-API which include OI data ?
-
HI @azkhan Yes it will be there in next release.We will soon let you know.
-
@admin Thanks
-
HI All,
i want to get Bid/Ask of NSE Options for particular stocks in python.
i got this for starters:
https://github.com/angelbroking-github/smartapi-pythonPlease help sharing the code or a link to get Bid/Ask or High/Low/Open/Close for list of Option tickers. Also Code on how to find out Option Tickers
thanks a lot in advance
Sukhwant -
Hi @Sukhwant280
- link for getting options tickers:
https://margincalculator.angelbroking.com/OpenAPI_File/files/OpenAPIScripMaster.json
HI @Sukhwant280 said in Open interest in websocket:
HI All,
i want to get Bid/Ask of NSE Options for particular stocks in python.
https://smartapi.angelbroking.com/docs/WebSocketStreaming - link for getting options tickers:
-
@admin When is the next release planned ?
-
HI @Ashok We will update you on this we appreciate your patience.
-
@admin, thanks for getting back. We do appreciate that the team is working on it. But on a broader note, A product roadmap will help us to plan our work. For Eg: I am waiting for oi/toi for 7 months without any end date.
-
HI @Ashok We are working on this on priority and this will be provided in next release.
-
@admin thanks a lot it is just the exhaustive list of tickers in NFO, NSE and other exchanges.
Can we get Bid and Ask of tickers via api or only open/high/low/close from the below link/Code:
Setting the access to get Open, high, Low, Close of options
smartApi =SmartConnect(api_key="YourAPIKEY") login = smartApi.generateSession('YourClientID', 'YourPassword') refreshToken = login['data']['refreshToken'] feedToken = smartApi.getfeedToken() smartApi.getProfile(refreshToken) smartApi.generateToken(refreshToken) prices_df = pd.DataFrame() # ------------------------------------ get Open, high, Low, Close of the Option Tickers for index,row in tickerdf.iterrows(): exchange = row['exch_seg'] tradingsymbol = row['symbol'] symboltoken = int(row['token']) data = smartApi.ltpData(exchange, tradingsymbol, symboltoken) prices = pd.json_normalize(data['data'],errors='ignore') prices['BussDate'] = vdate prices_df = prices_df.append(prices).reset_index(drop=True)