Using the Python (historical_data) api when I retrieve the OHLCV Data for ADANIENT for 2024-06-19 I get Date and Time : 19-06-2024 10:08 Open : 3261.25 High : 3314 Low: 3239 Close: 3262
But when I see the same data on the UI I am getting Open : 3261.25 High : 3263 Low: 3260 Close: 3262
@ssshama It might be cache, if you would have requested in the same minute interval of candle creation. Can you retry the request for the same interval now?
I am concerned about the incorrect data during trading hours. What can be done to avoid the same?
Date and Time : 19-06-2024 10:08 Open : 3261.25 High : 3314 Low: 3239 Close: 3262
But when I see the same data on the UI I am getting Open : 3261.25 High : 3263 Low: 3260 Close: 3262
Both the Kite web charts and the historical data API use the same chart backend. So, the difference in response can't arise. As stated above, discrepancies can only occur if you fetch data before or near the candle completion time. Historical data APIs are not meant to poll real-time data.
It might be cache, if you would have requested in the same minute interval of candle creation. Can you retry the request for the same interval now?
Subsequently called it after 10 mins to check. It was the same problem.