RocketFetcher 59 posts msg #35628 - Ignore RocketFetcher | 
4/16/2005 7:48:45 PM
  I would like to add a column to a filter; that displays the % change in the closing price over the last 30 days. Have been through the manual, but I'm sure it's there, but haven't found it.
 Anyone have a moment to reply on this?
 Thanks!!
 
 
  | 
txtrapper 548 posts msg #35629 - Ignore txtrapper | 
4/16/2005 8:29:59 PM
  Rocketfetcher try this;
 
 /* CC is the number of consecutive days close below previous close, 
 in other words the LOSING STREAK */ 
 
 set{CC,days(close is above close 1 day ago,100)}
 
 
 Thanks goes to Avery for this one!
 
 
 TxTrapper
 ------------- 
 
 
 
 
 
  | 
txtrapper 548 posts msg #35630 - Ignore txtrapper | 
4/16/2005 8:45:14 PM
  Rocketfetcher you will also need "and add column cc" in your syntax;
 
 ---------------------------------------
 
 /* CC is the number of consecutive days close below previous close, 
 in other words the LOSING STREAK */ 
 
 set{CC,days(close is above close 1 day ago,100)} 
 show stock where close is above .50
 and volume is above 100000
 and add column cc
 
 ---------------------------------------
 
 Change the parameters to fit your trading style. 
 
 
 TxTrapper
 
 
 
  | 
TheRumpledOne 6,529 posts msg #35631 - Ignore TheRumpledOne | 
4/16/2005 9:21:10 PM
  Use the following in your filters:
 
  	    
 
 Of course, use your own close, volume and other selection criteria.
 
 MAY ALL YOUR FILLS BE COMPLETE.
 
 
 
  |