Instrument Lot Size Wrong Future

anilbhatt
I'm using python 3.0 and seems instrument have wrong lot size.

data = kite.instruments(kite.EXCHANGE_NFO)
See below output , lot size for both Future and option instruments is wrong.. It fixed 1 for all.

'tradingsymbol': 'ICICIPRULI18JUN390PE', 'lot_size': 1, 'instrument_token': 21071362, 'strike': 390.0, 'segment': 'NFO-OPT', 'exchange_token': '82310'}, {'instrument_type': 'PE', 'tick_size': 0.05, 'name': '', 'exchange': 'NFO', 'last_price': 0.0, 'expiry': datetime.date(2018, 6, 28), 'tradingsymbol': 'ICICIPRULI18JUN350PE', 'lot_size': 1, 'instrument_token': 21069314, 'strike': 350.0, 'segment': 'NFO-OPT', 'exchange_token': '82302'}, {'instrument_type': 'CE', 'tick_size': 0.05, 'name': '', 'exchange': 'NFO', 'last_price': 0.0, 'expiry': datetime.date(2018, 6, 28), 'tradingsymbol': 'ICICIPRULI18JUN390CE', 'lot_size': 1, 'instrument_token': 21071106, 'strike': 390.0, 'segment': 'NFO-OPT', 'exchange_token': '82309'}, {'instrument_type': 'CE', 'tick_size': 0.05, 'name': '', 'exchange': 'NFO', 'last_price': 0.0, 'expiry': datetime.date(2018, 6, 28), 'tradingsymbol': 'ICICIPRULI18JUN560CE', 'lot_size': 1, 'instrument_token': 9570818, 'strike': 560.0, 'segment': 'NFO-OPT', 'exchange_token': '37386'}, {'instrument_type': 'PE', 'tick_size': 0.05, 'name': '', 'exchange': 'NFO', 'last_price': 0.0, 'expiry': datetime.date(2018, 6, 28), 'tradingsymbol': 'ICICIPRULI18JUN470PE', 'lot_size': 1, 'instrument_token': 21075458, 'strike': 470.0, 'segment': 'NFO-OPT', 'exchange_token': '82326'}, {'instrument_type': 'CE', 'tick_size': 0.05, 'name': '', 'exchange': 'NFO', 'last_price': 0.0, 'expiry': datetime.date(2018, 6, 28), 'tradingsymbol': 'ICICIPRULI18JUN430CE', 'lot_size': 1, 'instrument_token': 21073154, 'strike': 430.0, 'segment': 'NFO-OPT', 'exchange_token': '82317'}, {'instrument_type': 'CE', 'tick_size': 0.05, 'name': '', 'exchange': 'NFO', 'last_price': 0.0, 'expiry': datetime.date(2018, 6, 28), 'tradingsymbol': 'ICICIPRULI18JUN470CE', 'lot_size': 1, 'instrument_token': 21075202, 'strike': 470.0, 'segment': 'NFO-OPT', 'exchange_token': '82325'},

  • sujith
    This was a caching issue. We had cleared it earlier. It should be fine now.
  • anilbhatt
    Thanks Sujith, but this doesn't seems logical answer. Cache can't change value to 1. It could be possible latest data is not available in case of cache but changing lot_size value to 1 won't be possible.

    Anyways Thanks.
Sign In or Register to comment.