I have these two lines of code in my strategy but they only print lines once each, I have no history of the previous lines. Is there a way to have it print all previous vertical lines?
Draw.VerticalLine(this, @"Long", 0, Brushes.White, DashStyleHelper.Solid, 2);
Draw.VerticalLine(this, @"Short", 0, Brushes.CornflowerBlue, DashStyleHelper.Solid, 2);
Thanks

Comment