| dmewbourne 15 posts
 msg #114396
 - Ignore dmewbourne
 | 7/10/2013 9:01:18 AM 
 Looks like a good filter. Thanks for posting it.
 
 Here's what I do to eliminate illiquid stocks:
 
 set{BuyQty,5000 / Close}  /* I want to buy $5000 worth to stock */
 set{reqVolume,BuyQty / 0.01}  /* set volume threshold at 1% */
 count(Volume above reqVolume,1) > 0 /* My holdings are less than 1% of volume today */
 and do not draw reqVolume
 
 set{reqVolume1,BuyQty / 0.1}
 count(Volume above reqVolume1,8) > 5 /* My holdings are less than 10% of volume for 6 out of last 8 days */
 and do not draw reqVolume1
 
 Show stocks where high reached a new 90 day high
 and close above upper bollinger band
 and volume 100% above average volume(90)
 and close is < 5
 draw aroon oscillator(20)
 
 
 | 
| duke56468 683 posts
 msg #114406
 - Ignore duke56468
 modified
 | 7/10/2013 1:52:02 PM 
 
 
 
 
 | 
| oldsmar52 104 posts
 msg #114408
 - Ignore oldsmar52
 | 7/10/2013 6:32:28 PM 
 Push, do I understand you correctly that when u see the line for the aroon oscillator go straight for a time, you buy?  What would u recommend from your past experience....a straight line for 2-3 days?  Or more than that?  Do u have a maximum # of shares you buy?  I'd be afraid I'd get stuck holding them & not able to sell.   Tks, Frank
 
 
 | 
| Mactheriverrat 3,173 posts
 msg #114413
 - Ignore Mactheriverrat
 | 7/11/2013 6:20:29 AM 
 CPST looks good to me for a trendline breakout.
 
 
 | 
| dmewbourne 15 posts
 msg #114493
 - Ignore dmewbourne
 | 7/16/2013 10:57:46 AM 
 Here it is with a count to catch stocks with 1 to 3 days of reaching new 90 day highs over the last 10 days.
 
 
 
 
 
 |