Registered User Joined: 10/2/2008 Posts: 16 
	 | 
	
		Hi, 
 
I would like help creating a PCF for the following: 
-Price crosses up through the 26 simple moving average on a weekly chart.  
 
While running my scans at the end of each day on a weekly chart, I want to know when the price breaks the 26MA. 
 
Thanks, 
 
Au197
	 | 
	
	
		  Registered User Joined: 3/21/2006 Posts: 4,308 
	 | 
	
		The PCF for price crossing up over the 130 day sma (same as the 26 week sma). 
 
C > AVGC130 AND C1 < AVGC130.1 
	 | 
	
	
		 
   Worden Trainer
  Joined: 10/7/2004 Posts: 65,138 
	 | 
	
		Au197, 
Apsll's formula takes into account all of the days during the period. If you need the formula to match the Chart (which only uses one close out of every 5-Trading Days on a Weekly Chart), you may wish to try the following Personal Criteria Formula: 
 
25 * C > C5 + C10 + C15 + C20 + C25 + C30 + C35 + C40 + C45 + C50 + C55 + C60 + C65 + C70 + C75 + C80 + C85 + C90 + C95 + C100 + C105 + C110 + C115 + C120 + C125 AND 25 * C5 <= C10 + C15 + C20 + C25 + C30 + C35 + C40 + C45 + C50 + C55 + C60 + C65 + C70 + C75 + C80 + C85 + C90 + C95 + C100 + C105 + C110 + C115 + C120 + C125 + C130 
 
How to create a Personal Criteria Forumula (PCF) 
Moving Average PCF Templates 
Things to check if your moving averages don't "seem right" or "seem to match" 
PCF Formula Descriptions
  -Bruce Personal Criteria Formulas TC2000 Support Articles
	 |