Navigation

    SmartAPI Forum
    • Register
    • Login
    • Search
    • Categories
    • Popular
    • Groups
    • FAQs
    • API Docs
    1. Home
    2. pavank
    3. Topics
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 12
    • Best 0
    • Groups 0

    Topics created by pavank

    • P

      Websocket closing frequently
      Python SDK • • pavank

      2
      0
      Votes
      2
      Posts
      39
      Views

      A

      dear @pavank we are working on it we will update you on this.

    • P

      improper historical data
      Test • • pavank

      2
      0
      Votes
      2
      Posts
      36
      Views

      A

      Hi @pavank our team is working on this it will be fixed soon we will update you on this.

    • P

      historic data format issue
      Test • • pavank

      1
      0
      Votes
      1
      Posts
      18
      Views

      No one has replied

    • P

      token's validity period
      General Discussion • • pavank

      10
      0
      Votes
      10
      Posts
      166
      Views

      I

      @admin we are login using smartapi (userID, Password, TOTP). For a day it is working fine, but next day we are generating refresh token using previously login accessToken then it is not working API connection going failed. Please help when we can call refresh token to avoid stop API call. I don't want login everyday it should happen using api like KITE API.

    • P

      not receiving proper WebSocket data
      Test • • pavank

      23
      0
      Votes
      23
      Posts
      179
      Views

      J

      @admin facing same issue, only receving tm data

      [{"tvalue":"16/02/2023 11:35:12","name":"tm"}]
      [{"tvalue":"16/02/2023 11:35:13","name":"tm"}]
      [{"tvalue":"16/02/2023 11:35:14","name":"tm"}]
      [{"tvalue":"16/02/2023 11:35:15","name":"tm"}]

      Here is code :

      var ws =new websocket('', '',"nse_cm|2885", "mw");
      ws.connection().then(() => {
      ws.runScript("nse_cm|2885&nse_cm|1594&nse_cm|11536", "mw|sf|dp");
      setTimeout(function () {
      ws.close()
      }, 30000)
      });
      ws.on('tick', receiveTick);

      function receiveTick(data) { console.log(data); }