Come on !! if i am not giving you any specific values that means it's not working for any valid values for those variables, you can substitute it with any valid values and it's returning empty data for it For example const resp = await k.getHistoricalData( "256265", "5minute", 2022-06-11T09:15:00.000Z, 2022-06-11T09:20:00.000Z, 0, 1 );
Yeah good catch, i was doing it for 10th june then changed unknowingly to 11th june , for 10th june only 9:15-9:20 is returning empty array for other time slots it's working fine Thank you for pointing it out
instrument_token,
TIME_FRAME,
dateFrom,
dateTo,
0,
1
);
This was working for a long time, from yesterday i am getting empty array for this call
Paste the exact parameters.
For example
const resp = await k.getHistoricalData(
"256265",
"5minute",
2022-06-11T09:15:00.000Z,
2022-06-11T09:20:00.000Z,
0,
1
);
Thank you for pointing it out