Gold Customer
Joined: 11/30/2004 Posts: 64
|
In V18 how does one write conditions to incorporate into an easy scan that find stocks whose price is greater than $10 but less than $100 and where the 40D SMA is below price and has been for 40D and above the 200D SMA for 100D? Thanks.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following condition formula.
10 < C AND C < 100 AND TrueInRow(AVGC40 < C, 40) = 40 AND TrueInRow(AVGC200 < AVGC40, 100) = 100
-Bruce Personal Criteria Formulas TC2000 Support Articles
|