Type : Signal, Name : Breakout System
Input:
BLen(20),
XLen(10);
IF CurrentBar > 1 and Close > Highest(High,BLen)[1]
Then Buy on Close;
IF CurrentBar > 1 and Close < Lowest(Low,XLen)[1]
Then ExitLong;
Type : Signal, Name : Breakout System
Input:
BLen(20),
XLen(10);
IF CurrentBar > 1 and Close > Highest(High,BLen)[1]
Then Buy on Close;
IF CurrentBar > 1 and Close < Lowest(Low,XLen)[1]
Then ExitLong;