if I add
Draw.Dot(this, "ShortStopDz"+CurrentBar, false, 0, trapGoLongLevel, Brushes.GreenYellow) then it adds dot on all of the bars that are High0 < high1 and I want it only to plot once the very last occurence.
How can i do this?
else if (isShortEntry)
{
trapGoLongLevel = Math.Max(High[0], High[1])+(StopPlacement*TickSize);
if(High[0] < High[1])
{
Draw.Dot(this, "ShortStopDz", false, 0, trapGoLongLevel, Brushes.GreenYellow);
}

Comment