SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : Metastock 6.0 for Window -- Ignore unavailable to you. Want to Upgrade?


To: Paul Beattie who wrote (1797)3/29/1998 8:29:00 PM
From: TechTrader42  Read Replies (2) | Respond to of 4056
 
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