no data recd from websockets

vishalbig
hi. here is my script. Its not returning any LTP from zerodha websocket .....Pls share what could be wrong ? .......................from kiteconnect import KiteTicker
import logging
import time

# Configure logging to print to console.
logging.basicConfig(level=logging.DEBUG,
format="%(asctime)s [%(levelname)s] %(message)s")

# Replace with your actual API key and Access Token.
api_key = "xyz"
access_token = "abc"

# Set the instrument token for the index (e.g., NIFTY BANK token).
index_token = 260105

def on_tick(ws, ticks):
# Loop through all ticks and print if it matches the index token.
for tick in ticks:
logging.debug("Tick received: %s", tick)
if tick["instrument_token"] == index_token:
logging.info("Index tick received: %s", tick)
else:
logging.debug("Other tick: %s", tick)

def on_connect(ws, response):
logging.info("WebSocket connected")
# Subscribe to the index token.
ws.subscribe([index_token])
# Set mode to 'ltp' to only receive the last traded price.
ws.set_mode(ws.MODE_LTP, [index_token])
logging.info("Subscribed to index token: %s in LTP mode", index_token)

def on_error(ws, error):
logging.error("WebSocket error: %s", error)

def on_close(ws, code, reason):
logging.info("WebSocket closed: code=%s, reason=%s", code, reason)

def on_reconnect(ws, attempt_count):
logging.info("WebSocket reconnect attempt: %s", attempt_count)

def on_noreconnect(ws):
logging.error("WebSocket reconnection failed")

if __name__ == "__main__":
kws = KiteTicker(api_key, access_token)
kws.on_tick = on_tick
kws.on_connect = on_connect
kws.on_error = on_error
kws.on_close = on_close
kws.on_reconnect = on_reconnect
kws.on_noreconnect = on_noreconnect

# Connect to the WebSocket in a threaded mode.
kws.connect(threaded=True)

# Keep the main thread alive.
while True:
time.sleep(1)
Sign In or Register to comment.