|
Price crosses from above to below the Upper ESA
! Price crosses from above to below the Upper ESA
ESAupperDN if VAL([Upper ESA],1) < VAL([close],1)and [Upper ESA] > [close].
!!!Example stock AW on 01/18/2001
Return to Top of Page
Price crosses from below to above the Lower ESA
! Price crosses from below to above the Lower ESA
ESAlowerUP if VAL([Lower ESA],1)>VAL([close],1) and [Lower ESA]<[close].
!!!Example stock SANM on 04/11/2001
Return to Top of Page
ST ESA Crossover IT ESA to the downside
! ST ESA Crossover IT ESA to the downside
EsaCrossDown if ([st esa] < [it esa]) and (val([st esa],1) > val([it
esa],1)).
!!!Example stock SANM on 06/01/2001
Return to Top of Page
ST ESA Crossover IT ESA to the upside
! ST ESA Crossover IT ESA to the upside
EsaCrossUp if ([st esa] > [it esa]) and (val([st esa],1) < val([it
esa],1)).
!!!Example stock BGG on 07/20/2001
Return to Top of Page
|