Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 3/7/2005 Posts: 1
|
Hello Worden
Julia Ormond on the webinair on Jan 19 gave a search condition that I am trying to load on to my stockfinder page.
Could you send me the code so I could enter it into my stockfinder watchlist?
She had a thing she called condition:vigorous ma cross
Please let me know how to load it
Thanks Dan Anderson
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Julia's Layout from the Moving Average Crossover Techniques Webinar is a StockFinder 5 Layout. You will need to have StockFinder 5 for it to load correctly. The RealCode in the Condition is (but it will not work as written in StockFinder 4 - although you could Drag and Drop the Moving Averages into the RealCode Editor and rename them to MAs, MAi and MAl to replace those three lines in the RealCode):
'|*****************************************************************|
'|*** StockFinder RealCode Condition - Version 4.9 www.worden.com
'|*** Copy and paste this header and code into StockFinder *********
'|*** Condition:vigorous ma cross
'|******************************************************************
'# MAs = chart.MovingAverage
'# MAi = chart.MovingAverage.2
'# MAl = chart.MovingAverage.3
If price.Open < mas.value And price.open < mai.value And price.Open < mal.value AndAlso _
price.Last > mas.value And price.Last > mai.value And price.Last > mal.value AndAlso _
mas.value(1) < mai.value(1) And mas.value(1) < mal.value(1) AndAlso _
mas.value > mai.value And mas.value > mai.value AndAlso _
mas.value(1) < mal.value(1) And mas.value > mal.value Then pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 6/10/2009 Posts: 8
|
Would like to build a TC scan to emulate the jan 19 MA crossover scan by Julia
Doug
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
dnpjr,
Please try using the following Personal Criteria Formula as an EasyScan Condition:
O < XAVGC10 AND O < XAVGC25 AND O < XAVGC40 AND C > XAVGC10 AND C > XAVGC25 AND C > XAVGC40 AND XAVGC10.1 < XAVGC25.1 AND XAVGC10.1 < XAVGC40.1 AND XAVGC10 > XAVGC25 AND XAVGC10 > XAVGC25 AND XAVGC10.1 < XAVGC40.1 AND XAVGC10 > XAVGC40
How to create a Personal Criteria Forumula (PCF)
Using EasyScan to find stocks that meet your own criteria
Moving Average PCF Templates
Things to check if your moving averages don't "seem right" or "seem to match"
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |