| Registered User Joined: 9/7/2005
 Posts: 133
 
 | Hi, I have the following indicator, (V-minv20)/(maxv20-minv20+.001) plotted with a smoothing average of 6. I am trying to put this into a PCF, but can't seem to get smoothing average to work properly. I have tried different configurations, but TC doesn't seem to like how I'm doing the average and I'm wondering how to do this?
 
 Thank you,
 Winfield
 | 
	
	|  
  Worden Trainer
 
 Joined: 10/7/2004
 Posts: 65,138
 
 | If the Smoothing is Simple: 
 ((V - MINV20) / (MAXV20 - MINV20 + .001) + (V1 - MINV20.1) / (MAXV20.1 - MINV20.1 + .001) + (V2 - MINV20.2) / (MAXV20.2 - MINV20.2 + .001) + (V3 - MINV20.3) / (MAXV20.3 - MINV20.3 + .001) + (V4 - MINV20.4) / (MAXV20.4 - MINV20.4 + .001) + (V5 - MINV20.5) / (MAXV20.5 - MINV20.5 + .001)) / 6
 
 -Bruce
 Personal Criteria Formulas
 TC2000 Support Articles
 | 
	
	| Registered User Joined: 9/7/2005
 Posts: 133
 
 | Ah, Thank You. | 
	
	|  
  Worden Trainer
 
 Joined: 10/7/2004
 Posts: 65,138
 
 | You're welcome. 
 -Bruce
 Personal Criteria Formulas
 TC2000 Support Articles
 |