cabogordon 88 posts msg #76703 - Ignore cabogordon |
7/21/2009 11:05:02 AM
this filter really works , unfortunalty it does not isolate or hint to what stock will continue to run. Is thier anyway we could inhance or isolate potentail ongoing runners.
______________________________________________________________________________
/* Range Contraction/Expansion Scan Filter for counting Doji's followed by a Breakout */
/* Doji (H/L Rng above .20 w/Candle Body less than 30% of H/L Rng) */
/* Vary the % below to determine the volatility of the Breakout */
Close > 2.9% above Close 10 day High 1 day ago
set{HiLoRng, High - Low}
set{ClOpRng, abs(Close minus Open)}
set{ClOp_HiLo_ratio, ClOpRng / HiLoRng}
set{Range, count(HiLoRng is above .20, 1)}
set{Body, count(ClOp_HiLo_ratio is less than .30, 1)}
set{doji, Range * Body}
set{sdoji,count(doji above .5,10)}
and average volume (40) above 300,000
and add column Average Volume (40)
/* NUMBER of Closes Over EMA8 */
set{close_up3, count(close above EMA(8),2)}
and add column close_up3 {^EMA8}
draw sdoji
sdoji above 2.5
and do not draw close 2 week high
add column sdoji
and add column beta
and add column high 10 day high 1 day ago
and add column Sector
and draw EMA(8)
draw EMA(20)
draw MA(50)
and institutional holder percent is above 50
and market is not otcbb
sort column 11 descending
chart-time is 4 months
and date offset 06/04/2009
|