I wonder when to use the command(s) “crosses under/over”?
What is the difference between say:
breakoutlevel=1000
if close crosses under breakoutlevel then
...
and
if close< breakoutlevel then...
Is it the same or is there any difference?
Hi Despair!
if close crosses under breakoutlevel then, is only true once per crossing.
...
and
if close< breakoutlevel then... is Always true as long as close< breakoutlevel
Regards
Henrik