Registered User Joined: 10/7/2004 Posts: 91
|
Hey Bruce - would it be possible to get a scan for stocks priced between eight and 50 that have moved up 40% or more within 20 trading sessions, and then have retraced 20% or more within the most recent four sessions and has average 20 day trading vol of 100k +
mully
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Maybe a RealCode Condition similar to the following?
Writing Conditions in RealCode
'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:Retracement
'|******************************************************************
If 8 <= Price.Last AndAlso _
Price.Last <= 50 AndAlso _
Volume.AVG(20) >= 1000 AndAlso _
Price.Last <= .8 * Price.MaxHigh(4, 1) AndAlso _
Price.MaxHigh(4, 1) >= 1.4 * Price.MinLow(20, 5) Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|