could anybody please explain.
I have the following code and my expected behavior would be to see black line on all price changes (because I use range to 1 tick) and it works in most cases except when data is coming very fast.
I have this code inside OnBarUpdate:
protected override void OnBarUpdate()
{
Draw.VerticalLine(this, "vline" + CurrentBar, Time[0], Brushes.Black);
}
Thanks

Comment