Hi Sujith,
I want to fetch latest minute candle data for 500 symbols per minute...what's per second rate limit to get minute data ? If small then are u planning to increase it in near future ?
Hi, Historical data API is limited to three requests per second. As of now, we don't have any plans for increasing the rate limit. For the above use case, I would suggest generating candles at your end using the live market data provided using Kite ticker.
We have backfilled data using multiple sources. I am not sure about the exact dates for each instrument but we have intra-day candles data for only three to four years.
There is no bulk fetch APIs for historical data.
You can fetch data of a particular interval within a day like this.
I want to fetch latest minute candle data for 500 symbols per minute...what's per second rate limit to get minute data ? If small then are u planning to increase it in near future ?
Thanks and regards
Sameer
Historical data API is limited to three requests per second. As of now, we don't have any plans for increasing the rate limit.
For the above use case, I would suggest generating candles at your end using the live market data provided using Kite ticker.
kite.historical_data(instrument_id=dh.get_icode_from_ticker("RELIANCE"),
start_date="2015-01-02", end_date="2015-01-07",
window="minute")
returns [] for this period or any period before it.