Historical data Api Limit

deepmangukiya
Hello Team ,

I m not able to get 5_mnt interval data for 2013,2014. and below years.

is there any restriction to get historical data ? i m using same method for the above years and that provides me a complete data.

i use this method

List historical = kite.GetHistoricalData(
InstrumentToken: instrumentToken,
FromDate: new DateTime(dt.Date.Year, dt.Date.Month, dt.Date.Day, fromHour, fromMinute, 0),
ToDate: new DateTime(dt.Date.Year, dt.Date.Month, dt.Date.Day, toHour, toMinute, 0),
Interval: Constants.INTERVAL_5MINUTE,
Continuous: false
);
return historical;

Thanks.
Sign In or Register to comment.