Input:aa(1);
ArraysNarrow[10](False);
Range3D=MaxList(HighD(1),HighD(2),HighD(3), -MinList(Low(1),Low(2),Low(3));
Std=StdDev(close,20);
Narrow[1]=Range3D<0.01 * CLoseD(1);
Narrow[2]=std<Lowest(Std,30)[1];
if EntriesToday(Date)=0 and ExitsToday(Date) = then begin
If Narrow[aa] then begin
// Buy next bar at High stop;
// Sellshort next bar at Lowest(Low) stop;
Buy next bar at Highest(High,30) stop; #
Sellshort next bar at Lowest(Low,30) stop;
// Buy next bar at MaxList(HighD(1), HighD(2), HighD(3) ) stop; # ??????
// Sellshort next bar at Lowest(LowD(1), LowD(2), LowD(3)) stop;
End; //if Narror then begin
End;
-----------------