|
SVMA buy signal moves from negative to positive
! SVMA buy signal moves from negative to positive
SVMAbuy if VAL([SVMA],1)<0 and [SVMA]>0.
!!!Example stock IBM on 08/16/2001
Return to Top of Page
SVMA sell signal moves from positive to negative
! SVMA sell signal moves from positive to negative
SVMAsell if VAL([SVMA],1)>0 and [SVMA]<0.
!!!Example stock LTR on 08/16/2001
Return to Top of Page
SVMA slope is down while price slope is up
! SVMA slope is down while price slope is up
SVMAdivDN if Slope([SVMA],15)<0 and Slope([close],15)>0.
!!!Example stock ABS on 08/16/2001
Return to Top of Page
SVMA slope is up while price slope is down
! SVMA slope is up while price slope is down
SVMAdivUP if Slope([SVMA],15)>0 and Slope([close],15)<0.
!!!Example stock FE on 08/16/2001
|