☰
Login
Signup
Home
›
Market data (WebSockets)
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
154
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
November 2021
rb99
November 2021
sujith
Where can we find the official (mathematical) definitions for the keys in the websocket ticks?
rb99
November 2021
in
Market data (WebSockets)
How is average_price defined? Is it for that snapshot, or average through the day till that point?
Scouting around, I found this code snippet which helps how "
change
" is defined:
https://gist.github.com/ajinasokan/b36d17da1a58af62782978c16bca309a#file-ticker-js-L530
tick.change = (tick.last_price - tick.ohlc.close) * 100 / tick.ohlc.close
Can
buy_quantity
/
sell_quantity
decrease? (would depend on how it is computed)
The definitions
https://kite.trade/docs/connect/v3/websocket/#quote-packet-structure
are a bit confusing since some of the params are clearly snapshots (measured at that instant), and some others are across that day (till that tick). A few are ambiguous.
It would help if is there a place where authoritative info about how it is computed/ calculated, is made available about the definitions.
Tagged:
WebSocket
tick data
average price
sujith
November 2021
You can check out API documentation
here
.
All the params are for the day. It is average traded price of the day. The total buy quantity is the sum of all the buy orders quantity currently pending at the exchange.
rb99
November 2021
Thank you
@sujith
for the clarification. That helps
Sign In
or
Register
to comment.
All the params are for the day. It is average traded price of the day. The total buy quantity is the sum of all the buy orders quantity currently pending at the exchange.