Registered User Joined: 10/7/2004 Posts: 24
|
I would like to write an easy scan to find stocks that have a closing price within 3% each day for 15 days. I am trying to find stocks that are consolidating within a tight range for a certain period of time. How do I write this scan?
Thank You
Tristram
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
A Condition Formula to check for the closing prices over the most recent 15-bars to be within 3% of each other could be written as:
MAXC15 <= 1.03 * MINC15
PCF Formula Descriptions
-Bruce Personal Criteria Formulas TC2000 Support Articles
|