Bid Vol, Ask Vol, and Bid/Ask Tick Count

Login or Register

Please login or register in order to view and post in the Forum.

2 posts / 0 new
Last post
Granit
Last seen: 2 months 6 days ago
Joined: 02/19/2015 - 13:21
Bid Vol, Ask Vol, and Bid/Ask Tick Count

As you probably know I am using IRT building market internals and trading a swedish index. I like to experiment and have a question about "Bid Tick Count" and "Ask Tick Count" that I found in custom column. This is not ordinary uptick/downtick?

Cheers and thanks for your help! :)

0
cpayne
Last seen: 1 year 1 month ago
Joined: 03/30/2009 - 00:00
Ask Tick Count works hand in

Ask Tick Count works hand in hand with Ask Volume.  While Ask Volume is the amount of volume that traded at or above the ask price....Ask Tick Count is simply the number of trades that traded at or above the ask price.  These "Ask Trades" are considered buying trades and contribute to buying volume.  And on the other end, bid trades are considered selling trades and contribute to selling volume.

Below is a table that explains the 5 tokens related to bid and ask volume as well as their corresponding quotepage columns.  These are system managed and are maintained for all symbols.  These allow the user to access this data in scans very efficiently.  By design, these tokens are all initialized to zero at the start of the session (IF Investor/RT is active at the time the session opens)

Users may also manually reset these tokens to zero at session open with the following scan...

SET(AVOL, 0) AND SET(BVOL, 0) AND SET(ATICK, 0) AND SET(BTICK, 0) AND SET(VDELTA, 0)

Token Quotepage Column Description
AVOL Ask Volume Volume traded at or above the ask price (buy volume)
BVOL Bid Volume Volume traded at or below the bid price (sell volume)
ATICK Ask Tick Count Number of trades at or above the ask price (buy trades)
BTICK Bid Tick Count Number of trades at or below the bid price (sell trades)
VDELTA Volume Delta Delta of volume. AVOL - BVOL.  Positive represents more buying while negative represents more selling.

Additional info on these data items can be found at Quotepage Column Tokens