The 4 prices are
4400
4300
4200
4100
The strategy would take a long position when price crosses the level. What's an easier way to write this out in Ninjascript instead of
(CrossBelow(Close, 4400, 1) || (CrossBelow(Close, 4300, 1) || (CrossBelow(Close, 4200, 1) || (CrossBelow(Close, 4100, 1)

Comment