☰
Login
Signup
Home
›
Python client
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
14.4K
All Categories
0
Incidents
167
Node JS client
46
Go client
812
.Net API client
391
Kite Publisher
539
.Net / VBA / Excel (3rd party)
474
Algorithms and Strategies
1K
Java client
1.1K
API clients
408
PHP client
4.1K
Python client
355
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.5K
General
In this Discussion
May 19
ANL
5 minute OHLC data - candle end time
Raja2908
May 19
in
Python client
What should be the end time format to fetch 5 minute OHLC data as per kite.historical_data()? For example, "2025-05-19 11:50:00" or "2025-05-19 11:49:59" ?
Tagged:
historical API
historical data
ANL
May 19
edited May 19
To get a 5 minute candle, call exactly 11:50:00, not 11:49:59.
from_date="2025-05-19 11:45:00"
to_date="2025-05-19 11:50:00",
interval="5minute" ,
continuous=False,
check docs:
Historical candle data
Sign In
or
Register
to comment.
from_date="2025-05-19 11:45:00"
to_date="2025-05-19 11:50:00",
interval="5minute" ,
continuous=False,
check docs: Historical candle data