|
RSI Wilder falls from above to below 70
! RSI Wilder falls from above to below 70
RSIWilderdnCUT70 if VAL([RSI Wilder],1)>70 and [RSI Wilder]<70.
!!!Example stock ANDW on 08/06/2001
Return to Top of Page
RSI Wilder in oversold territory
! RSI Wilder in oversold territory
RSIWilderunder30 if [RSI Wilder]<30.
!!!Example stock TOY on 08/06/2001
Return to Top of Page
RSI Wilder is in overbought territory
! RSI Wilder is in overbought territory
RSIWilderover70 if [RSI Wilder]>70.
!!!Example stock ABS on 08/06/2001
Return to Top of Page
RSI Wilder rises from below to above 30
! RSI Wilder rises from below to above 30
RSIWilderupCUT30 if VAL([RSI Wilder],1)<30 and [RSI Wilder]>30.
!!!Example stock ADP on 08/06/2001
Return to Top of Page
RSI Wilder slope is down while price slope is up
! RSI Wilder slope is down while price slope is
up
RSIWilderdnPRICEup if Slope([RSI Wilder],21)<0 and Slope([Close],21)>0.
!!!Example stock RBK on 08/06/2001
Return to Top of Page
RSI Wilder slope is up while price slope is down
! RSI Wilder slope is up while price slope is down
RSIWilderupPRICEdn if Slope([RSI Wilder],21)>0 and Slope([Close],21)<0.
!!!Example stock KSE on 08/06/2001
Return to Top of Page
|