When I try to get historical data for 25 days with an interval of one day, it doesn't give me all 25 days of data. I only get around 17-19 days of data. Is it expected or should I be getting data for all 25 days? By the way, I'm using Python SDK.
A
Aditya VK
@Aditya VK
1
Reputation
3
Posts
1
Profile views
0
Followers
0
Following
Best posts made by Aditya VK
-
Complete historical data not available
Latest posts made by Aditya VK
-
RE: Complete historical data not available
historicParam = { "exchange": "NSE", "symboltoken": "9480", "interval": "ONE_MINUTE", "fromdate": "2024-01-05 09:00", "todate": "2024-01-05 21:00" }
For these parameters, since it's 12hrs duration and the interval is 1 minute, I was expecting around 12 * 60 = 720 data points. But I got only 375 data points
-
RE: Complete historical data not available
historicParam = { "exchange": "NSE", "symboltoken": "9480", "interval": "ONE_MINUTE", "fromdate": "2024-01-05 09:00", "todate": "2024-01-05 21:00" }
For these parameters, since it's 12hrs duration and the interval is 1 minute, I was expecting around 12 * 60 = 720 data points. But I got only 375 data points
-
Complete historical data not available
When I try to get historical data for 25 days with an interval of one day, it doesn't give me all 25 days of data. I only get around 17-19 days of data. Is it expected or should I be getting data for all 25 days? By the way, I'm using Python SDK.