| stockfetcher101 6 posts
 msg #90818
 - Ignore stockfetcher101
 | 4/5/2010 5:06:09 PM 
 set{3&5, EMA(3) + EMA(5)}
 set{8&10, EMA(8) + EMA(10)}
 set{12&15, EMA(12) + EMA(15)}
 set{3&10, 3&5 + 8&10}
 set{ma_st, 3&10 + 12&15}
 
 set{30&35, EMA(30) + EMA(35)}
 set{40&45, EMA(40) + EMA(45)}
 set{50&60, EMA(50) + EMA(60)}
 set{30&45, 30&35 + 40&45}
 set{ma_lt, 30&45 + 50&60}
 
 set{ma_d, ma_st - ma_lt}
 set{ma_dp, ma_d/ma_lt}
 set{ma_delta, ma_dp * 100}
 
 draw ema(3) draw ema(5) draw ema(8) draw ema(10) draw ema(12) draw ema(15)
 draw ema(30) draw ema(35) draw ema(40) draw ema(45) draw ema(50) draw ema(60)
 
 show stocks where ma_st crossed above ma_lt within the last 3 days
 and ma_delta has been increasing for 3 days
 and Average Volume(60) above 1000000
 and Volume above 1000000
 and volume gained 50%
 and Close above 5
 and not otcbb
 add column ma_delta
 
 
 
 
 
 
 
 
 
 
 
 
 |