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)