Registered User Joined: 10/7/2004 Posts: 91
|
Could I please get a scan for stocks that are within 3% of their 52 week high (but not over) with a price range between 25-80 ..................tia
mully
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
One option would be to use the following RealCode Condition or something similar as a Scan or Filter.
Writing Conditions in RealCode
Scanning with Conditions
Filtering Lists
'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:Near Highs
'|******************************************************************
If 25 <= Price.Last AndAlso Price.Last <= 80 AndAlso _
Price.Last >= .97 * Price.MaxHigh(252) Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|