Registered User Joined: 10/7/2004 Posts: 16
|
The standard adx in stockfinder 4 can be unchanged for several periods, due to Wilders rounding calculations. Can you write a rule that indicates if adx today is = to adx yesterday?
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
In StockFinder 4, you can add ADX to the chart and then Drag and Drop it into the Code tab of the RealCode Editor of a RealCode Rule to create something similar to the first line of the following RealCode Rule (the exact details of the line might differ):
'# AL = indicator.ADXLine.2
If AL.Value = AL.Value(1) Then Pass
Writing Condtions in RealCode
-Bruce Personal Criteria Formulas TC2000 Support Articles
|