@sujith, I am using kite 3.0, already running a strategy for more than a month in kite 3.0 and its performance is very good and latency got reduced considerably, thank you for this upgrade. Only thing that is being missed - improvement in websocket on_order_update(for BO type).
Coming to the topic of discussion below are the params I passed to get EOD premium data for SBIN17MAY300CE 23/05/17
from_date = 2017-05-23 to_date = 2017-05-23 instrument_token='22709762' #ins_token of SBIN18MAY300CE interval = day continuous = True
below is the data I got, [{'volume': 83127000, 'high': 296.1, 'low': 287.7, 'date': datetime.datetime(2017, 5, 23, 9, 15, tzinfo=tzoffset(None, 19800)), 'close': 289.2, 'open': 295}]
Hi @Guhan, Glad to hear that from the users . BO order_updates has changed. We made some changes this weekend. Now users will receive second leg order details also in the order updates. @botany02, I think this was the feature you were waiting for.
We don't have historical data for expired options instruments. We only have continuous data for futures instruments. I think data returned was empty json when I tried with the above params. Are you sure you received the above data?
@prmramit, Yes, we do provide historical data of live options instruments.
PS: Please create a new thread. Don't hijack other threads as the discussion gets hidden and some other person who is looking for the same will not be visible.
Coming to the topic of discussion below are the params I passed to get EOD premium data for SBIN17MAY300CE 23/05/17
from_date = 2017-05-23
to_date = 2017-05-23
instrument_token='22709762' #ins_token of SBIN18MAY300CE
interval = day
continuous = True
below is the data I got,
[{'volume': 83127000, 'high': 296.1, 'low': 287.7, 'date': datetime.datetime(2017, 5, 23, 9, 15, tzinfo=tzoffset(None, 19800)), 'close': 289.2, 'open': 295}]
I think the data I got is EOD equities OHLC.
Glad to hear that from the users . BO order_updates has changed. We made some changes this weekend. Now users will receive second leg order details also in the order updates.
@botany02, I think this was the feature you were waiting for.
We don't have historical data for expired options instruments. We only have continuous data for futures instruments. I think data returned was empty json when I tried with the above params. Are you sure you received the above data?
@sujith, below is the code that I used, also I have attached a screen shot
print kite.historical_data(instrument_token='22709762',from_date='2017-05-23',
to_date='2017-05-23',interval='day',continuous=True)
output:
[{'volume': 83127000, 'high': 296.1, 'low': 287.7, 'date': datetime.datetime(2017, 5, 23, 9, 15, tzinfo=tzoffset(None, 19800)), 'close': 289.2, 'open': 295}]
Yes, we do provide historical data of live options instruments.
PS: Please create a new thread. Don't hijack other threads as the discussion gets hidden and some other person who is looking for the same will not be visible.