judgetrade 107 posts msg #42710 - Ignore judgetrade | 
4/2/2006 2:55:44 PM
  Hi,
 
 I have a question concerning the following filter, which I have adapted (original from the rumpled one, thank you TRO!):
 
 The filter is great, but I want to change it in a way that only stocks show
 up which have not been on the list for some time (lets say 4 weeks or so).
 I this possible? Thank you in advance!
 
 
 
 
 
 price above 15 
 
 show stocks where the relative strength(^IXIC,45) is above 1.25 
 stock is not optionable 
 
 
 
 /* STRONG TREND WITH EMA DISPLAY */ 
 
 /* ENHANCED TREND DISPLAY */ 
 
 set{T10, count(10 day slope of the close above 0,1)} 
 set{T40, count(40 day slope of the close above 0,1)} 
 set{T200, count(200 day slope of the close above 0,1)} 
 
 Set{a1, T200 * 1} 
 Set{a2, T40 * 10} 
 Set{a3, T10 * 100} 
 
 Set{aa, a1 + a2} 
 Set{TREND, aa + a3} 
 
 
 /* Selection Criteria */ 
 
 trend equal 111 
 
 WEEKLY RSI(10) increasing for 2 weeks 
 
 weekly ema(10) above weekly ema(40) 
 weekly ema(10) increasing for 2 weeks 
 weekly ema(40) increasing for 2 weeks 
 
 avg vol(5) above 300000 
 avg vol(30) above 300000 
 
 add column industry 
 
 
 
 
 
  |