Paul: Here's another attempt to formulate Dave's system as an Expert Advisor system. Buy signals are a little sparse, though:
Buy:
Fml("StochRSI(14)")>30 AND Fml("StochRSI(14)")<50 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("InSync Index")>50 AND Fml("Dahl's primary trend")>0 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")>=5;
Brooke |