Mike, (since the weekend I upgraded the hunter, RJ)-
You need to segment conditions of dissimilar output value; i.e. you can't use Mov(C,3,e) to compare values w/ a forecast oscillator which is a different animal from price mavg. Use Mov(ForecastOsc(c,21),3,e) for the moving average trigger instead. Then add the value crossover criteria as an AND condition. Try this setup:
Enter long: Cross(ForecastOsc(C,21),Mov(ForecastOsc(C,21),3,E)) AND Cross(ForecastOsc(C,21),0)
Exit long: Cross(Mov(ForecastOsc(C,21),3,E),ForecastOsc(C,21)) AND Cross(6,ForecastOsc(C,21))
[aside] You can use alert() function on either if you don't require both conditions to fire on the same day.
good luck, CP |