I am not receiving the upper and lower circuit limits in the QUOTE API even after subscribing for FULL QUOTE. Below is my quote and the response i receive.
def on_ticks(ws, ticks): # retrieve continuous ticks in JSON format try: for company_data in ticks: print(company_data) except Exception as e: print(e)
def on_connect(ws, response): ws.subscribe([x for x in trd_portfolio]) ws.set_mode(ws.MODE_FULL, [x for x in trd_portfolio])
@rakeshr @sujith @zerodha