Registered User Joined: 1/15/2011 Posts: 41
|
Can you please give help on writing this indicator in tc2000? - RSIMO9+RSI3
RSI is RSI Wilder
RSI3=AVERAGE(RSI(CLOSE,3),3)
It will be an AVG3 of RSI3
RSIMO9 = MOMENTUM(RSI(CLOSE,14),9)
The embedded 9-period Momentum is the comparison between the most recent 14-period RSI value to the RSI value from 9 periods earlier.
Thank you
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The three period simple moving average of a 3 period Wilder's smoothed RSI can be written as follows.
AVG(WRSI3, 3)
The 9 period net change in the 14 period Wilder's smoothed RSI can be written as follows.
WRSI14 - WRSI14.9
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 1/15/2011 Posts: 41
|
Thank you for your help
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|