Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
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
|
|
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
|
|
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?
|
|
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
|
|
Registered User Joined: 10/4/2009 Posts: 66
|
thanks it works
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |