Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 10/7/2004 Posts: 91
|
Hey Bruce, would it be possible to get a stockfinder 5 realcode scan for stocks priced betwen 1.25 and 12 that are up over 10% for the day with a 50 day vol avg over 70k and a 5 day vol avg over 200k
mully
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 4.9 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:Movers
'|******************************************************************
If 1.25 <= Price.Last AndAlso _
Price.Last <= 12 AndAlso _
Price.PercentChange > 10 AndAlso _
Volume.AVG(50) >= 700 AndAlso _
Volume.AVG(5) >= 2000 Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 10/7/2004 Posts: 91
|
that worked well, tnx much Bruce, this 5 is pretty sweet
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 10/7/2004 Posts: 91
|
what would be the best way to eliminate the 5 day over 200k vol avg, and replace it with todays vol up 150% over the 50 day avg..........tia
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 4.9 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:Movers Adjusted
'|******************************************************************
If 1.25 <= Price.Last AndAlso _
Price.Last <= 12 AndAlso _
Price.PercentChange > 10 AndAlso _
Volume.AVG(50) >= 700 AndAlso _
Volume.Value >= 2.5 * Volume.AVG(50) Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |