value = Range / Volume;
if (Value[0] = Lowest(Value, 20))
{
DrawArrowUp("MyArrowUp"+CurrentBar, 0, Low[0]-0.15, Color.Yellow);
}
I can do the then part, but the if statement is giving me trouble. I am trying to draw an arrow whenever the parameter Value is lower then it was in the last 20 bars.

Comment