Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Movers scan Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
Mully
Posted : Thursday, February 18, 2010 12:01:37 PM
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 
Bruce_L
Posted : Thursday, February 18, 2010 12:10:37 PM


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
Mully
Posted : Thursday, February 18, 2010 12:25:35 PM
Registered User
Joined: 10/7/2004
Posts: 91
that worked well, tnx much Bruce, this 5 is pretty sweet
Bruce_L
Posted : Thursday, February 18, 2010 12:26:05 PM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138
You're welcome.

-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Mully
Posted : Wednesday, June 16, 2010 7:23:40 AM
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
Bruce_L
Posted : Wednesday, June 16, 2010 7:25:43 AM


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
Users browsing this topic
Guest-1

Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.