|
RSI AIQ falls from above to below 70
! RSI AIQ falls from above to below 70
RSIAIQdnCUT70 if val([RSI AIQ],1)>70 and [RSI AIQ]<70.
!!!Example stock CTB on 06/01/2001
Return to Top of Page
RSI AIQ in oversold territory
! RSI AIQ in oversold territory
RSIAIQunder30 if [RSI AIQ]<30.
!!!Example stock CARS on 08/06/2001
Return to Top of Page
RSI AIQ is in overbought territory
! RSI AIQ is in overbought territory
RSIAIQover70 if [RSI AIQ]>70.
!!!Example stock A on 08/06/2001
Return to Top of Page
RSI AIQ rises from below to above 30
! RSI AIQ rises from below to above 30
RSIAIQupCUT30 if VAL([RSI AIQ],1)<30 and [RSI AIQ]>30.
!!!Example stock MDT on 08/06/2001
Return to Top of Page
RSI AIQ slope is down while price slope is up
! RSI AIQ slope is down while price slope is up
RSIAIQdnPRICEup if Slope([RSI AIQ],21)<0 and Slope([Close],21)>0.
!!!Example stock BLL on 08/06/2001
Return to Top of Page
|