four 5,087 posts msg #85899 - Ignore four | 
1/10/2010 11:46:51 AM
  Request
 
 Statistics for the pattern:
 
         red candle 1 day ago and 
         white candle today
 
 ------------ Here is the start ---------------
 
 set{daily_dwn, close 1 day ago - open 1 day ago}
 show stocks where daily_dwn has been below 0 for the last 1 days and 
 /*open has been decreasing for 1 days*/
    
 
 set{daily_up, close - open}
 show stocks where daily_up has been above 0 for the last 1 days and 
 /*open has been increasing for 1 days*/
 
 average volume (2) > 100000
 close between 1 and 20
 
 
 
  | 
chetron 2,817 posts msg #85904 - Ignore chetron modified | 
1/10/2010 1:13:05 PM
  MAYBE...
 
 
  	    
 
  | 
four 5,087 posts msg #85906 - Ignore four | 
1/10/2010 1:55:22 PM
  Thanks...
 
 How do I count the occurrences of this "2-day pattern" over 50 days ?
 
  | 
Kevin_in_GA 4,599 posts msg #85909 - Ignore Kevin_in_GA | 
1/10/2010 3:08:11 PM
  set{trigger, count(var5 above 0.5,50)}
 add column trigger
 
  | 
four 5,087 posts msg #85911 - Ignore four | 
1/10/2010 3:21:28 PM
  Thank you
 
  |