ilcaa 15 posts msg #50335 - Ignore ilcaa | 
3/1/2007 1:21:59 PM
  i am trying to to find stocks that over the last 20 days more than 60% of days closed lower.
 
 set{daycl,close<close 1day ago} 
 set{numdays,count(dayscl,20)}
 
 show stocks where numdays/20 > .59
 
 doesnt seem to return the proper stocks....any help?
 thanks.
 
 
 
  | 
TheRumpledOne 6,529 posts msg #50351 - Ignore TheRumpledOne modified | 
3/1/2007 5:41:41 PM
 
  	    
 
 numdays is the number of days out of the last 20 the stock closed below the previous close.
 
 HTH.
 
 
  | 
TheRumpledOne 6,529 posts msg #50352 - Ignore TheRumpledOne | 
3/1/2007 5:43:28 PM
 
  	    
 
 This version is for stocks having up days.
 
 
  | 
ilcaa 15 posts msg #50362 - Ignore ilcaa | 
3/2/2007 11:16:10 AM
  exactly what i needed, thanks
 
 
  |