| Registered User Joined: 11/30/2004
 Posts: 64
 
 | I am trying to write a condition that shows me which stocks in a watchlist are below their 200 SMA for the past 10 days. I can derive other time frames and SMA's from this one. And I can make combination conditions. TIA for your help. 
 Bruce
 | 
	
	|  
  Worden Trainer
 
 Joined: 10/7/2004
 Posts: 65,138
 
 | Just create a Condition for Price being below its 200-Period Simple Moving Average. You could do this with Drag and Drop or with RealCode: 
 Creating Conditions
 Writing Conditions in RealCode
 
 If Price.Last < Price.AVGC(200) Then Pass
 
 Then Edit the Condition and set it to be Passing 10 of the the Last 10 Bars.
 
 You can then use the result as a Scan or Filter.
 
 Scanning with Conditions
 Filtering Lists
 
 -Bruce
 Personal Criteria Formulas
 TC2000 Support Articles
 | 
	
	| Registered User Joined: 11/30/2004
 Posts: 64
 
 | Thanks Bruce | 
	
	|  
  Worden Trainer
 
 Joined: 10/7/2004
 Posts: 65,138
 
 | You're welcome. 
 -Bruce
 Personal Criteria Formulas
 TC2000 Support Articles
 |