TheRumpledOne 6,529 posts msg #39757 - Ignore TheRumpledOne | 
12/25/2005 10:33:05 AM
 
  	    
 
 This should find stocks that are consolidating.
 
 I will let you add all the bells and whistles.
 
 MAY ALL YOUR FILLS BE COMPLETE.
 
 
  | 
TheRumpledOne 6,529 posts msg #39758 - Ignore TheRumpledOne | 
12/25/2005 11:01:00 AM
    	    
 
 This gives you a little more control.
 
 MAY ALL YOUR FILLS BE COMPLETE.
 
 
  | 
BFreshour 139 posts msg #39790 - Ignore BFreshour | 
12/29/2005 5:35:17 PM
 
  	    
 
 Simply added a column for days consolodation which tells you have many days in the last 20 days where marked as consolodation.
 
 
  | 
JohnyYuma 60 posts msg #39851 - Ignore JohnyYuma | 
1/1/2006 4:25:53 PM
  BFreshour
 
 I am using your filter to find stocks which are consolidating - but I am trying to find stocks based on the closing price alone
 
 I modified your filter to derive the one below
 but
 it seems I have not done a good job 
 
 My understanding of the phrase "set{ccnt, count(cdiff < .01, 50)} " is that it will show the number of days in the last 50 days where the difference, between closing prices, is less than .01 
 but
 the results that I get do not confirm the above
 
 Additionally, is there a way that I can restrict my count to only consecutive (without a break) number of days?
 
 Can you help me correct the filter?
 
 Appreciate your help
 
 Thanks
 
 
 set{cdiffx, close - close 1 day ago )} 
 set{cdiff, abs(cdiffx )} 
 /* change the .10 to fit your criteria */ 
 set{ccnt, count(cdiff < .01, 50)} 
 /* your price volume critiria below this line */ 
 close above 10 
 average volume (90) above 500000 
 /* below for testing 
 add column cdiff 
 add column ccnt 
 above for tesing */ 
 add column count(ccnt equals 2,50) 
 and count(ccnt equals 2,50) is greater than 40 
 sort by column 5 descending 
 
 
  | 
JohnyYuma 60 posts msg #39875 - Ignore JohnyYuma | 
1/2/2006 8:19:58 PM
  Anyone ?
 
 Thanks
 
 
  | 
JohnyYuma 60 posts msg #39936 - Ignore JohnyYuma | 
1/4/2006 4:23:19 PM
  What happened to the wonderful sense of canraderie that we had on these boards?
 
 I guess because of certain bad apples, it's non-technical folks like myself who have to suffer
 
 Well, guess I gave it a shot
 
 Thanks
 
 
  |