display number of trades in custom column


Category:
0
0

i have a script here that shows the total amount of *trades being transacted on the ticker per candle.  I need to have this on a watchlist that shows the amount of trades.  Thanks

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

Marked as spam
Posted by (Questions: 12, Answers: 4)
Asked on March 5, 2019 9:06 am
185 views
0
Private answer

I had to update the question title. “Trades” was just to vague and didn’t do anything to assist other viewers to search for a find this solution.

For your answer, I simply give you back the code you already provided:

plot Trades = Fundamental(FundamentalType.TICK_COUNT);

Marked as spam
Posted by (Questions: 37, Answers: 4084)
Answered on April 5, 2019 8:38 am