semovente 17 posts msg #92419 - Ignore semovente |
5/10/2010 1:05:18 PM
Something I have been playing with. Let me know what you think and where improvements can be made:
/* Price and Volume filter */
Close is between 2 and 20
and Average Volume(30) is above 500000
/* Use rsi(13) and its moving average (13) as a filter for rsi(2) */
and RSI(13) is greater than CMA(RSI(13),13)
and RSI(13) is greater than 35
and RSI(2) is less than RSI(2) 1 day ago
/* Filter with 2 of the Guppy MAs */
and ema(15) is above ema(60)
/* Draw Guppy MMAs to provide visual indication of trend */
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)
/* Sort by price */
sort column 2
|
moby 314 posts msg #92442 - Ignore moby |
5/10/2010 11:28:14 PM
|
semovente 17 posts msg #92459 - Ignore semovente |
5/11/2010 9:07:10 AM
Moby::
Thanks for making it clickable. Any thoughts on the approach?
.vp
|
moby 314 posts msg #92484 - Ignore moby |
5/11/2010 7:12:33 PM
hi semovente,
I like your filter very much. It shows stocks in an uptrend, with a rising 8ma.
I see nice pullbacks to the 8ma and can be bought there, as it bounces off the 8ma.
|