Registered User Joined: 8/27/2014 Posts: 22
|
hello, I want to add a condition for a stock that has a tight price movement over a 3 week period. I would like the scan to pick up stocks that have not moved more than 2 or 3 % over a 3 week period. Could you suggest a formula thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The following condition formula is an example checking for the entire range of price to be less than 3% over 15 bars (about 3 weeks in a daily time frame).
MAXH15 <= 1.03 * MINL15
The following condition formula checks for the closing prices to be in a 2% range over 15 bars.
MAXC15 <= 1.02 * MINC15
-Bruce Personal Criteria Formulas TC2000 Support Articles
|