That leaves this for the entry signal:
Fml("StochRSI(14)")>30 AND Fml("StochRSI(14)")<50 AND Fml("StochRSI(14)")>Ref(Fml("StochRSI(14)"),-1) AND Fml("StochRSI(8,5)")>20 AND Fml("StochRSI(8,5)")>Ref(Fml("StochRSI(8,5)"),-1) AND Fml("MACD(8,17,9)")>0 AND Fml("MACD(8,17,9)")>Ref(Fml("MACD(8,17,9)"),-1) AND Fml("MACD(13,34,89)")>Ref(Fml("MACD(13,34,89)"),-1) AND Fml("InSync Index")>40 AND Fml("InSync Index")>Ref(Fml("InSync Index"),-1) AND Fml("Dahl's Primary Trend")>Ref(Fml("Dahl's Primary Trend"),-1) AND SAR(.02,.2)<C AND OBV()>Mov(OBV(),40,S) AND Fml("DNS")>=3 AND Fml("DNS")>Ref(Fml("DNS"),-1);
The signals are generally good, but few and far between (perhaps that's good, too).
As for the exit, I tried this:
(Fml("MACD(8,17,9)")<0 AND Ref(Fml("MACD(8,17,9)"),-1)>0) OR (Fml("StochRSI(14)")<70 AND Ref(Fml("StochRSI(14)"),-1)>70)
But that may be too simplistic or literal-minded, not allowing for 99% of the decisions you make. The formula above doesn't give the best sell signals.
Brooke |