When I query data of date 2015-01-01 for instrument token 2800641 through kitecharts api, it is giving me inconsistent data, there are multiple data for the same timestamps. The same is happening for many dates and for many instruments. Example: https://kitecharts.zerodha.com/api/chart/2800641/minute?.... "status": "success", "data": { "candles": [ [ "2015-01-01T09:15:00+0530", 865.43, 867.5, 865, 867.5, 242 ], [ "2015-01-01T09:16:00+0530", 866.63, 867.55, 866.13, 866.65, 716 ], [ "2015-01-01T09:16:00+0530", 867.5, 867.55, 866.13, 866.65, 716 ], [ "2015-01-01T09:17:00+0530", 867.15, 867.15, 865.68, 865.68, 230 ], [ "2015-01-01T09:18:00+0530", 865.65, 865.65, 864.8, 864.9, 432 ], [ "2015-01-01T09:18:00+0530", 865.68, 865.68, 864.8, 864.9, 432 ], [ "2015-01-01T09:19:00+0530", 864.05, 864.05, 863.5, 863.5, 20 ], [ "2015-01-01T09:19:00+0530", 864.9, 864.9, 863.5, 863.5, 20 ], [
Hi @sujith Quite often I am getting 0 length list of candles for NSE 200 stocks. For e.g response = requests.get("https://api.kite.trade/instruments/historical/" + instrumentId + "/minute?from=2017-01-01&to=2017-01-30&api_key=" +CONSTANTS.API_KEY + "&access_token=" + self.accessToken) gives success status but candles data is empty
@cisk, BANKBARODA-BE(1219329), BALAMINES-BE(3713281) are all the T2T segment instruments. You need to fetch data for its corresponding EQ series instruments.
@saanc, We have informed data team, they will look into this.
Thank you for reporting. We have asked data team to look into this.
Quite often I am getting 0 length list of candles for NSE 200 stocks. For e.g
response = requests.get("https://api.kite.trade/instruments/historical/" + instrumentId + "/minute?from=2017-01-01&to=2017-01-30&api_key=" +CONSTANTS.API_KEY + "&access_token=" + self.accessToken) gives success status but candles data is empty
Here is the json response
b'{"status": "success", "data": {"candles": []}}'
Process finished with exit code 0
Sample Code:
import requests
response = requests.get("https://api.kite.trade/instruments/historical/3813889/minute?from=2015-12-28&to=2016-01-01&api_key=vot80cytvmxpi7hm&access_token=fhiKFaNUk234aNY8LIfHlLPKKh8DZqXV")
print (response.content)
BANKBARODA-BE(1219329), BALAMINES-BE(3713281) are all the T2T segment instruments. You need to fetch data for its corresponding EQ series instruments.
@saanc,
We have informed data team, they will look into this.