Hello All,
I created the following indicators based on Phil Town's book Rule #1. They work but give different results. The cross formula only gives about 2-3 buy signals where the <> formula gives a bunch. I'm pretty new to this so can someone tell me why they don't give the same indications? I would think if the <> formula is true the cross formula would also be true? But it's not so I know the flaw is in my understanding of it. I have been testing these on Ebay. Here is the formula:
3 signal buy}
macdv:=Mov(C,8,E)-Mov(C,17,E);
macdv>Mov(macdv,9,E) AND
Stoch(14,5)>Mov(Stoch(14,5),5,S) AND
C>Mov(C,10,S);
{Sell}
macdv < Mov(macdv,9,E) AND
Mov(Stoch(14,5),5,S)>Stoch(14,5) OR
macdv < Mov(macdv,9,E) AND
C<= Mov(C,10,S) OR
Mov(Stoch(14,5),5,S)>Stoch(14,5) AND
C<= Mov(C,10,S);
=============================
{3 signal buy}
macdv:=Mov(C,8,E)-Mov(C,17,E);
Cross(macdv,Mov(macdv,9,E)) AND
Cross(Stoch(14,5),Mov(Stoch(14,5),5,S)) AND
C>Mov(C,10,E);
{Sell}
Cross(Mov(macdv,9,E),macdv) AND
Cross(Mov(Stoch(14,5),5,S),Stoch(14,5)) OR
Cross(Mov(macdv,9,E),macdv) AND
C<= Mov(C,10,E) OR
Cross(Mov(Stoch(14,5),5,S),Stoch(14,5)) AND
C<= Mov(C,10,E);
============================
Any help or comments are much appreciated!