PureBytes Links
Trading Reference Links
|
. A simple moving average oscillator and a couple of rules: trade directional turns in the indicator...go long if the indicator turns up below zero, reverse and go short if the indicator turns down above zero.
I don't know if it is intentional but the way the system is written it will miss a turn up from negative territory that immediately crosses the zero line. I modified the long signal and also used a 13 day oscillator as follows: (Mov(C,13,S)-Ref(Mov(C,13,S),-13))>Ref(Mov(C,13,S)-Ref(Mov(C,13,S),-13),-1) AND (Mov(C,13,S)-Ref(Mov(C,13,S),-13))<0 OR Cross((Mov(C,13,S)-Ref(Mov(C,13,S),-13)) , 0)
Regards,
Pete Greco
|