☰
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
13.8K
All Categories
0
Incidents
153
Node JS client
40
Go client
793
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
993
Java client
1.1K
API clients
403
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
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.