I have a strategy running on a volume bar chart. Calculate on each tick. NOT tick replay.
I have added 10 second bars and I would like to get tick count for each of the 10 second bars.
Is there a way to surface that like I do volume below?
Print(
string.Format("{0} {1} || {2} {3}",
Times[1][ii],
Closes[1][ii],
Volumes[1][ii],
slATR(BarsArray[1],3)[ii]
));

Comment