I want to draw a dot when the low of the current bar is lower than the previous bar low :
if (Low[0] < Low[1])
{
DrawDot("My dot" + CurrentBar, false, 0, Low[0], Color.LimeGreen);
}
I tested everything and I'm sure the problem is here :
if (Low[0] < Low[1])
Thx
J.

Comment