I was thinking this: AddPlot(new Stroke(Brushes.SeaGreen, DashStyleHelper.Dash, 2), PlotStyle.Square, (High[0] == (High[1] + (2 * TickSize)) ));
Added it to the exit order and couldn't get it to work.
if (High[0] == (High[1] + (2 * TickSize)) )
{
ExitShort();
AddPlot(new Stroke(Brushes.SeaGreen, DashStyleHelper.Dash, 2), PlotStyle.Square, (High[0] == (High[1] + (2 * TickSize)) ));
}
Guess there is a little more to it than I thought. A little help please!

Comment