Registered User Joined: 3/6/2005 Posts: 16
|
I am using stock finder. I would like to make a scan that will find stocks that have closed 3 average true ranges above the stock's 52 week low.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If you Drag and Drop your Average True Range Indicator into the Code tab of the RealCode Editor, it should create something similar to the first line of the following RealCode Rule:
'# ATR = chart.AverageTrueRange
If Price.Last > Price.MinLow(252) + 3 * ATR.Value Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|