Yes, the signals aren't always synchronized during good buying opportunities. I find I don't get enough signals because MACD and StochRSI don't always cross their thresholds together. I've been playing with the following formula (in Expert Advisor), but I find that it gives too many signals:
Fml("Dahl's Primary Trend")>0; Fml("Dahl's Primary Trend")>Ref(Fml("Dahl's Primary Trend"),-1); Fml("DNS")>=5; Fml("InSync Index")>50; Fml("InSync Index")<80; Fml("InSync Index")>Ref(Fml("InSync Index"),-1); Fml("StochRSI(8,5)")>30 AND Fml("StochRSI(8,5)")<70; Fml("MACD(8,17,9)")>0; Fml("MACD(8,17,9)")>Ref(Fml("MACD(8,17,9)"),-1); Fml("StochRSI(8,5)")>Ref(Fml("StochRSI(8,5)"),-1); Fml("StochRSI(14)")>Ref(Fml("StochRSI(14)"),-1); SRSI14:=Alert(Cross(Fml("StochRSI(14)"),30),3); SRSI14 It would be great to create a whole Expert Advisor system for Dave's template, with commentary and all. Perhaps this could be a goal for TAOTL.
Brooke |