Platinum Customer
  Joined: 10/7/2004 Posts: 14 
	 | 
	
		I AM TRYING TO SCAN FOR A STOCASTIC 12-3-3 CR0SSOVER ABOVE 80 TODAY AND WROTE IT AS FOLLOWS; STOC12.3>80 AND STOC12.3.1<80 THE STOCK CHARTS THAT COME UP DON'T REFLECT THIS CROSSOVER TODAY. PLEASE HELP 
	 | 
	
	
		 
   Worden Trainer
  Joined: 10/7/2004 Posts: 65,138 
	 | 
	
		Your Personal Criteria Formula would be correct for the SK line of a Stochastic with the following settings on a daily chart:
  Period: 12 SK Period: 3 SD Period: 3 Average Type: Simple
  The same for for the Simple Stochastic (12,3,3) SD Line would be:
  AVG(STOC12.3,3) > 80 AND AVG(STOC12.3.1,3) <= 80
  If you have the following settings:
  Period: 12 SK Period: 3 SD Period: 3 Average Type: Exponential
  You may wish to try the following:
  Exponential (12,3) SK xUp 80:
  XAVG(STOC12,3) > 80 AND XAVG(STOC12.1.1,3) <= 80
  Exponential (12,3,3) SD xUp 80:
  .500488758553275 * (XAVG(STOC12,3) + .5 * (XAVG(STOC12.1.1,3) + .5 * (XAVG(STOC12.1.2,3) + .5 * (XAVG(STOC12.1.3,3) + .5 * (XAVG(STOC12.1.4,3) + .5 * (XAVG(STOC12.1.5,3) + .5 * (XAVG(STOC12.1.6,3) + .5 * (XAVG(STOC12.1.7,3) + .5 * (XAVG(STOC12.1.8,3) + .5 * (XAVG(STOC12.1.9,3))))))))))) > 80 AND .500488758553275 * (XAVG(STOC12.1.1,3) + .5 * (XAVG(STOC12.1.2,3) + .5 * (XAVG(STOC12.1.3,3) + .5 * (XAVG(STOC12.1.4,3) + .5 * (XAVG(STOC12.1.5,3) + .5 * (XAVG(STOC12.1.6,3) + .5 * (XAVG(STOC12.1.7,3) + .5 * (XAVG(STOC12.1.8,3) + .5 * (XAVG(STOC12.1.9,3) + .5 * (XAVG(STOC12.1.10,3))))))))))) <= 80
  You may wish to review the following:
  Understanding Stochastics How to create a Personal Criteria Forumula (PCF) Handy PCF example formulas to help you learn the syntax of PCFs! Cascades of Moving Averages
  -Bruce Personal Criteria Formulas TC2000 Support Articles
	 |