| gpatte 6 posts
 msg #66604
 - Ignore gpatte
 | 8/23/2008 8:35:02 PM 
 would like ideas or criticisms on filter. looking for pops. I tried backtesting, but don't really know what to look for and trying to add support and resistance, but still working on.
 
 set{boll_diff, Upper Bollinger Band(20,2) - Lower Bollinger Band(20,2)}
 set{A, count(Bollinger Difference(20,2) has reached new 65 days low within the last 5 days, 1)}
 set{B, count(boll_diff has reached new 65 days low within the last 5 days, 1)}
 set{OR1, A + B}
 set {breakout, Upper Bollinger Band(20,2)}
 set {breakdown, ma(20)}
 set {stopfalsebreak, ma(20) * .99}
 set {a1, breakout - close }
 set {a2, a1 / close}
 set {a3, a2 * 100}
 show stocks where OR1 is above 0
 and average volume(20) > 300000
 add column breakout
 add column breakdown
 add column stopfalsebreak
 and draw Bollinger Bands(20,2)
 and market is not otcbb
 and close > 1
 and close < 30
 and close < Upper Bollinger Band(20,2) 5 days ago * 1.10
 and close > Lower Bollinger Band(20,2) 5 days ago * .90
 and close < Upper Bollinger Band(20,2)
 and close > Lower Bollinger Band(20,2)
 add column separator
 add column a3
 add column separator
 add column shares outstanding
 Bollinger %b >= 0.5
 and Bollinger Difference(20,2) > Bollinger Difference(20,2) 1 day ago
 and boll_diff > boll_diff 1 day ago
 and sort column 8 ascending
 
 
 |