☰
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
14.1K
All Categories
0
Incidents
158
Node JS client
43
Go client
801
.Net API client
386
Kite Publisher
538
.Net / VBA / Excel (3rd party)
466
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
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.