Navigation

    SmartAPI Forum
    • Register
    • Login
    • Search
    • Categories
    • Popular
    • Groups
    • FAQs
    • API Docs

    Open interest in websocket

    Python SDK
    10
    35
    505
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • A
      admin @nirav last edited by

      Hi @nirav we will update you on this.

      V 1 Reply Last reply Reply Quote 0
      • V
        Vypy1 @admin last edited by

        @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.

        A 1 Reply Last reply Reply Quote 0
        • A
          admin @Vypy1 last edited by

          Hi @Vypy1 Currently it is not the part of feed.

          A 1 Reply Last reply Reply Quote 0
          • A
            azkhan @admin last edited by

            @admin

            Any idea when the OI data will be available for web socket streaming ?

            A 1 Reply Last reply Reply Quote 0
            • A
              admin @azkhan last edited by

              Hi @azkhan we appreciate your patience we will provide you with the oi data soon.

              S A 2 Replies Last reply Reply Quote 0
              • S
                Surya 1 @admin last edited by

                @admin

                We are hearing this from December..

                tester12345 2 Replies Last reply Reply Quote 0
                • tester12345
                  tester12345 @Surya 1 last edited by

                  @rajanprabu lol. they are not even working on it I guess.

                  1 Reply Last reply Reply Quote 0
                  • tester12345
                    tester12345 @Surya 1 last edited by

                    @rajanprabu its jsut a waste of time. move to aliceblue

                    1 Reply Last reply Reply Quote 0
                    • A
                      admin @admin last edited by

                      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.

                      A 1 Reply Last reply Reply Quote 0
                      • A
                        azkhan @admin last edited by

                        @admin Can you provide any tentative dates when you guys are going to add OI data in web socket streaming.

                        A 1 Reply Last reply Reply Quote 0
                        • A
                          azkhan @azkhan last edited by

                          @admin when is the next major release of smart-API which include OI data ?

                          A 1 Reply Last reply Reply Quote 0
                          • A
                            admin @azkhan last edited by

                            HI @azkhan Yes it will be there in next release.We will soon let you know.

                            A punit 2 Replies Last reply Reply Quote 0
                            • A
                              azkhan @admin last edited by

                              @admin Thanks 🙂

                              S A 2 Replies Last reply Reply Quote 0
                              • S
                                Sukhwant280 @azkhan last edited by

                                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-python

                                Please 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

                                A 1 Reply Last reply Reply Quote 0
                                • A
                                  admin @Sukhwant280 last edited by

                                  Hi @Sukhwant280

                                  1. 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

                                  S 1 Reply Last reply Reply Quote 0
                                  • punit
                                    punit @admin last edited by

                                    @admin When is the next release planned ?

                                    A 1 Reply Last reply Reply Quote 0
                                    • A
                                      admin @punit last edited by

                                      HI @Ashok We will update you on this we appreciate your patience.

                                      punit 1 Reply Last reply Reply Quote 0
                                      • punit
                                        punit @admin last edited by

                                        @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.

                                        A 1 Reply Last reply Reply Quote 0
                                        • A
                                          admin @punit last edited by

                                          HI @Ashok We are working on this on priority and this will be provided in next release.

                                          1 Reply Last reply Reply Quote 0
                                          • S
                                            Sukhwant280 @admin last edited by

                                            @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)
                                            
                                            S 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post