@keshav_ You can access volume and last traded price by subscribing in full mode .Check documentation here. Example to get volume and ltp data:
def on_ticks(ws, ticks): #Get volume and ltp for all 1000 scrip one by one for tick_data in ticks: logging.debug("volume: {} - ltp:{}".format(tick_data['volume'],tick_data['last_price']))
You can access volume and last traded price by subscribing in full mode .Check documentation here.
Example to get volume and ltp data: