Phase and MACD EDS

ChartMan

Legendary member
Messages
5,580
Likes
47
!Phase was going down then turns up
Ph if Val([Phase],2)> Val([phase],1) and Val([Phase],1)< [Phase].
mac if Val([macd osc],1)< [macd osc].
Vol if [volume]>400 and [close]>20 and [rsi wilder]>25.

!Positive Phase value with 3 day slope of phase > 0
CCI if slope([cci],12) > 0 and slope([tci],12)>0 and slope([svma],12)>0 and slope([velocity],5)>0.
mf if [mf rsi]>20 and [macd osc]>0.




Buy if ph and mac and vol and cci and mf.

Phasedown if Val([Phase],2)< Val([phase],1) and Val([Phase],1)> [Phase].
mcd if Val([macd osc],1)> [macd osc].
sell if Phasedown and mcd.
 
Top