Registered User Joined: 1/21/2014 Posts: 15
|
Looking for a pattern formula where the RSI13 is less than 26 and 20 days later the price of the stock increases over 4%
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If it the Wilder's RSI with Wilder's smoothing.
C > 1.04 * C20 AND WRSI13.20 < 26
If it is the plain RSI without Wilder's smoothing.
C > 1.04 * C20 AND RSI13.1.20 < 26
Note the extra .1 in the plain RSI version. This is there because the syntax for the indicator in the PCF language includes a simple moving average parameter which is not part of the Wilder's smoothed version.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 1/21/2014 Posts: 15
|
thank you
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|