Which official kite connect lib client are you using? As raw historical data request fetches TZ info. [ "2021-06-11T09:15:00+0530", 1575, 1610.5, 1572, 1608.75, 2179 ], [ "2021-06-11T09:16:00+0530", 1610, 1615.1, 1575, 1610, 3962 ],
@Ronit The format you expect is what comes in the JSON response. Client library parses it into DateTime object that you can work with. What you are looking at is the normal ToString() version of the DateTime object. If you want the time zone info in it then you have to pass the format to ToString.
We don't know what TZ the data is in and just want to know the same
As raw historical data request fetches TZ info.
[
"2021-06-11T09:15:00+0530",
1575,
1610.5,
1572,
1608.75,
2179
],
[
"2021-06-11T09:16:00+0530",
1610,
1615.1,
1575,
1610,
3962
],
.ToString("MM/dd/yyyy HH:mm:sszzz")