Not receiving the circuit limits in the full quote API

gkaranam
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])


kws.on_ticks = on_ticks
kws.on_connect = on_connect
kws.connect()

Output:
{'tradable': True, 'mode': 'full', 'instrument_token': 758529, 'last_price': 37.3, 'last_quantity': 559, 'average_price': 37.24, 'volume': 21330417, 'buy_quantity': 4779660, 'sell_quantity': 7724351, 'ohlc': {'open': 37.0, 'high': 37.7, 'low': 36.7, 'close': 36.75}, 'change': 1.4965986394557746, 'last_trade_time': datetime.datetime(2020, 8, 6, 11, 9, 41), 'oi': 0, 'oi_day_high': 0, 'oi_day_low': 0, 'timestamp': datetime.datetime(2020, 8, 6, 11, 9, 42), 'depth': {'buy': [{'quantity': 44042, 'price': 37.3, 'orders': 11}, {'quantity': 182432, 'price': 37.25, 'orders': 40}, {'quantity': 244399, 'price': 37.2, 'orders': 47}, {'quantity': 171608, 'price': 37.15, 'orders': 67}, {'quantity': 166513, 'price': 37.1, 'orders': 96}], 'sell': [{'quantity': 30163, 'price': 37.35, 'orders': 54}, {'quantity': 190618, 'price': 37.4, 'orders': 77}, {'quantity': 242664, 'price': 37.45, 'orders': 131}, {'quantity': 534909, 'price': 37.5, 'orders': 555}, {'quantity': 109532, 'price': 37.55, 'orders': 119}]}}

@rakeshr @sujith
This discussion has been closed.