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 |

shorting list Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
rverm44820
Posted : Thursday, April 15, 2010 12:04:34 PM
Registered User
Joined: 10/4/2009
Posts: 66
can you help with the realcode? this comes from a telechart scan.
1.
CTODAYGT30DMACYBELOW(Bounce or near 30 dayaverage):
C>AVGC30AND((L1<AVGC30.1)OR(L<15+AVGC30))
2.
2010stoch10,4lt30past5days(dailystochastic10,4<30anytimeinpast5days):(STOC10.4<30)OR(STOC10.4.1<30)OR(STOC10.4.2<30)OR(STOC10.4.3 30)OR(STOC10.4.4<30)
3.
closetodaygtcloseyest(closeduptoday):C>C
Bruce_L
Posted : Thursday, April 15, 2010 12:18:40 PM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138
QUOTE (rverm44820)
CTODAYGT30DMACYBELOW(Bounce or near 30 dayaverage):
C>AVGC30AND((L1<AVGC30.1)OR(L<15+AVGC30)]

The following RealCode Condition will only work in StockFinder 5:

'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:CTODAYGT30DMACYBELOW(Bounce or near 30 dayaverage)
'|******************************************************************
If Price.Last > Price.AVGC(30) AndAlso _
    (Price.Low(1) < Price.AVGC(30, 1) OrElse _
    Price.Low < 15 + Price.AVGC(30)) Then Pass

QUOTE (rverm44820)
2010stoch10,4lt30past5days(dailystochastic10,4<30anytimeinpast5days):(STOC10.4<30)OR(STOC10.4.1<30)OR(STOC10.4.2<30)OR(STOC10.4.3 30)OR(STOC10.4.4<30)

The following RealCode Condition will only work in StockFinder 5:

'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:2010stoch10,4lt30past5days(dailystochastic10,4<30anytimeinpast5days)
'|******************************************************************
If Price.STOC(10, 4) < 30 OrElse _
    Price.STOC(10, 4, 1) < 30 OrElse _
    Price.STOC(10, 4, 2) < 30 OrElse _
    Price.STOC(10, 4, 3) < 30 OrElse _
    Price.STOC(10, 4, 4) < 30 Then Pass

QUOTE (rverm44820)
closetodaygtcloseyest(closeduptoday):C>C

The following RealCode Condition will work in both StockFinder 4 and StockFinder 5:

'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:closetodaygtcloseyest(closeduptoday)
'|******************************************************************
If Price.Last > Price.Last(1) Then Pass

StockFinder 5.0 READ THIS FIRST
How to Download the BETA!
StockFinder 5.0 Changes from 4.0 - UPDATED
StockFinder Version 5 beta Documentation

-Bruce
Personal Criteria Formulas
TC2000 Support Articles
rverm44820
Posted : Thursday, April 15, 2010 12:43:03 PM
Registered User
Joined: 10/4/2009
Posts: 66
whats the best way to do this ?
in a sequence to filter a bigger list into smaller list
or can this be done all at once and still come up with a small list of stocks?
Bruce_L
Posted : Thursday, April 15, 2010 12:51:10 PM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138
You can Drag and Drop the Conditions onto each other to create a Combo Condition. You could also combine them into a single RealCode Condition (which will only work in SF5):

'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 5.0 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:shorting list
'|******************************************************************
If Price.Last > Price.Last(1) AndAlso _
    Price.Last > Price.AVGC(30) AndAlso _
    (Price.Low(1) < Price.AVGC(30, 1) OrElse _
    Price.Low < 15 + Price.AVGC(30)) AndAlso _
    (Price.STOC(10, 4) < 30 OrElse _
    Price.STOC(10, 4, 1) < 30 OrElse _
    Price.STOC(10, 4, 2) < 30 OrElse _
    Price.STOC(10, 4, 3) < 30 OrElse _
    Price.STOC(10, 4, 4) < 30) Then Pass

-Bruce
Personal Criteria Formulas
TC2000 Support Articles
rverm44820
Posted : Thursday, April 15, 2010 2:26:23 PM
Registered User
Joined: 10/4/2009
Posts: 66
thanks it works
Bruce_L
Posted : Thursday, April 15, 2010 2:27:56 PM


Worden Trainer

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

-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.