☰
Login
Signup
Home
›
General
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
404
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
General
In this Discussion
August 2022
SRIJAN
Is the live traded value of option contract provided?
vaibhavsharma13
August 2022
in
General
Hi, is the live traded value of the options contracts provided by Zerodha API during market hours?
Tagged:
OPTIONS
SRIJAN
August 2022
edited August 2022
No,turnover is not provided directly by KiteConnect APIs.
People keep asking for turnover, change in open interest,data which is derived from the other basic data.
Look, KiteConnect APIs,just provide the tick data from the exchange.
Tick data doesn't include turnover, change in open interest etc. It just has the basic resources required to calculate the other complex data.
In case of options,traded value is the premium turnover, which is volume*price.
You get both volume and average_price, in the tick data from the exchange,which is relayed to you by the KiteConnect APIs.
https://kite.trade/docs/connect/v3/websocket/#quote-packet-structure
So, just write the code to multiply volume by average_price ,and you will get the turnover i.e,traded value.
Sign In
or
Register
to comment.
People keep asking for turnover, change in open interest,data which is derived from the other basic data.
Look, KiteConnect APIs,just provide the tick data from the exchange.
Tick data doesn't include turnover, change in open interest etc. It just has the basic resources required to calculate the other complex data.
In case of options,traded value is the premium turnover, which is volume*price.
You get both volume and average_price, in the tick data from the exchange,which is relayed to you by the KiteConnect APIs.
https://kite.trade/docs/connect/v3/websocket/#quote-packet-structure
So, just write the code to multiply volume by average_price ,and you will get the turnover i.e,traded value.