I got this from the Forum
I believe the Formula for the second system is :
{Enter Long}
HiVal:=Mo(H,10);
LoVal:=Mo(L,10);
RnVal:=Mo(H-L,6);
BC:=Cross(Min(HiVal,LoVal),RnVal);
SC:=Cross(RnVal,Max(HiVal,LoVal));
BC AND BarsSince(Ref(BC,-1))>BarsSince(Ref(SC,-1))
{Enter Short}
HiVal:=Mo(H,10);
LoVal:=Mo(L,10);
RnVal:=Mo(H-L,6);
BC:=Cross(Min(HiVal,LoVal),RnVal);
SC:=Cross(RnVal,Max(HiVal,LoVal));
SC AND BarsSince(Ref(BC,-1))<BarsSince(Ref(SC,-1))
They also use a trailing stop at 10%
This is the first system I have seen that all of the returned stocks have a profit. It is something I need to see what it is doing and how. The lowest net profit is only $161 but this probably has a higher percentage of winning trades even if the profit is smaller on some - it is probably safer.