☰
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.1K
All Categories
0
Incidents
157
Node JS client
41
Go client
798
.Net API client
385
Kite Publisher
537
.Net / VBA / Excel (3rd party)
463
Algorithms and Strategies
1K
Java client
1.1K
API clients
408
PHP client
4.1K
Python client
349
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.4K
General
In this Discussion
December 2017
rksingh
December 2017
sujith
Option Close data wrong
rksingh
December 2017
in
Python client
Hi,
Please see below 'close' data for NIFTY17DEC10300CE. Why its wrong.
How to get correct close data
kite.quote('NFO','NIFTY17DEC10300CE')['ohlc']
Out[53]: {'close': 142.6, 'high': 136.0, 'low': 112.2, 'open': 135.0}
sujith
December 2017
It seems fine. Can you let us know what is the issue here?
rksingh
December 2017
How can 'close' value high than 'high' value. Is this previous day's close value ? if yes, how to get current close value...When I ran this query, current close was 120
sujith
December 2017
This API call will return day's OHLC and not a minute or hour OHLC. Close price is the previous close price.
If you want close for a particular interval then you need to listen to ticks and generate candles at your end.
Sign In
or
Register
to comment.
If you want close for a particular interval then you need to listen to ticks and generate candles at your end.