rwgamer 17 posts msg #52316 - Ignore rwgamer | 
6/19/2007 3:01:35 PM
     I'm not sure how to post to the Public Filters section, so I'll just post here.  The theory with the 3 x 2 system is that if a stock has been up for two days followed by 3 down days, then you are likely to see 2 up days again.  It's a basic setup, but fairly reliable (about 33%, 285.41% ROI) in backtesting.  See what you guys think.
 
 /* 3 x 2 system */
 show stocks where close is above open
 and close is above 2.00
 and close 1 day ago was below open 1 day ago
 and close 2 days ago was below open 2 days ago
 and close 3 days ago was below open 3 days ago
 and close 4 days ago was above open 4 days ago
 and close 5 days ago was above open 5 days ago
 and RSI is less than RSI 1 day ago
 and ATR is less than 1
 and Average Volume(30) is above 500000 do not draw Average Volume(30)
 and draw MACD(12,26,9)
 and draw RSI(14)
 
 Rick
 
  |