AfricaFund 18 posts msg #41705 - Ignore AfricaFund | 
3/3/2006 1:43:50 AM
  Okay, I'm almost there. This is a very solid filter at this point. The picks are good but you should use the DMAs for confirmation - the daily DMA should be converging with the weekly.... I still think I'm screening out more than I want to. On the "days since", I really just want to show stocks that had those criteria yesterday - not necessarily stocks that don't have them today, which is what seems to be coming up....would have more flexibility that way.....
 
 set{T10, count(10 day slope of the close above 0,1)} 
 set{T60, count(60 day slope of the close above 0,1)} 
 set{T200, count(200 day slope of the close above 0,1)} 
 
 Set{u1, T200 * 1} 
 Set{u2, T60 * 10} 
 Set{u3, T10 * 100} 
 
 Set{uu, u1 + u2} 
 Set{TREND, uu + u3} 
 
 
 
 draw trend 
 draw rsi(2) 
 draw stochrsi(2,2) 
 draw weekly stochrsi(2,2) 
 draw DMA(28,-14) 
 draw weekly DMA(28,-14) 
 trend is below 50 
 weekly bollinger oscillator(20) is below -50 
 DMA(28,-14) is below weekly DMA(28,-14) 
 days(stochrsi(2) equals 0,2) equals 1 
 days(rsi(2) is below 5,2) equals 1 
 days(weekly stochrsi(2) equals 0,2) equals 1 
 
 
  |