TICK_COUNT

Syntax

FundamentalType.TICK_COUNT

Description

Used with the Fundamental function to return the number of trades corresponding to an intraday bar.

Example

declare lower;

declare zerobase;
plot Trades = Fundamental(FundamentalType.TICK_COUNT);
Trades.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);

On an intraday chart, this script plots a histogram that represents the number of trades for each bar.