Navigation

    SmartAPI Forum
    • Register
    • Login
    • Search
    • Categories
    • Popular
    • Groups
    • FAQs
    • API Docs
    1. Home
    2. GaryR
    3. Posts
    G
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Groups 0

    Posts made by GaryR

    • RE: Comparing static price with websocket LTP

      sharing this if someone needs it.

      "Code to store live websocket data in dynamic dictionary"
      ....................................................................................................................

      from smartapi import SmartConnect
      from smartapi import SmartWebSocket

      subscribetoken = "nse_cm|2031&nse_cm|212&nse_cm|3045"
      live_data = {}

      def websocketstreaming ():
      FEED_TOKEN = feedToken
      CLIENT_CODE = credentials.USER_NAME

          token = subscribetoken
          task = "mw"
      
          ss = SmartWebSocket(FEED_TOKEN, CLIENT_CODE)
      
          def on_message(ws, message):
              for i in message:
                  for j, k in i.items():
                          if j == 'ltp':
                              t = i.get('tk')  #token
                              l = i.get('ltp')  #ltp
                              #print(t, k)         
                              live_data[t] = k  #storing token:ltp in dictionary 
                              print(live_data)
                          else:
                              pass
      
          def on_open(ws):
              print("on open")
              ss.subscribe(task, token)
      
          def on_error(ws, error):
              print(error)
      
          def on_close(ws):
              print("Close")
      
      posted in Python SDK
      G
      GaryR
    • Threaded websocket code not given on GitHub

      Hi,
      Please update code on GitHub to brief threading websocket. Thanks.

      posted in Python SDK
      G
      GaryR
    • RE: Comparing static price with websocket LTP

      @admin Sir/Madam, I just need format of function which is not available on website. If it is available, then pls share link.

      posted in Python SDK
      G
      GaryR
    • Comparing static price with websocket LTP

      I have excel file with predefined buy/sell price. I want to execute order when ltp will be in the range.

      I have successfully connected websocket and fetching live data of all stocks.

      "How can I fetch specific stock's LTP from websocket?" Which further I have to compare with excel file and execute orders.

      I have tried these calls to get only ltp of specific tokens but did not get success.
      print("Ticks: {}".format(message.ltp))
      print("Ticks: {}".format(message).ltp)
      print("Ticks: {}".format(message [2])
      print("Ticks: {}".format(message){2})

      Please guide.

      posted in Python SDK
      G
      GaryR
    • RE: Must required fields are missing from Position Book API

      @admin how to fetch day's profit & loss amount? if possible, pls share details with one example. Thanks.

      posted in General Discussion
      G
      GaryR