jhar3 23 posts msg #45271 - Ignore jhar3 |
6/25/2006 6:44:30 PM
in dave landry book, swing trading, he trades using the above method. how would i write a filter so that i would have the 10 day moving avg. over the 20 day over the 30, but with a upward slope? not just crossing. i would be using this method for investing not just trading.
|
lastjohnny 6 posts msg #45273 - Ignore lastjohnny |
6/25/2006 11:39:21 PM
try:
ema(10) > ema(20)
ema(20 > ema(30)
and 60 day slope of the close > 0
and close between 1 and 400
and average volume(50) > 100,000
|
jhar3 23 posts msg #45298 - Ignore jhar3 |
6/26/2006 7:50:02 PM
i would to thank you for your filter. what i was trying for is what dave landry calls a bow tie. when the 1o crosses the 20 and the 20 crosses the 30 on a slope, which on a chart look like a bow tie. the idea is a new uptrend is starting. when all the moving avg. roll over thanks. for swing trades dave landrys book is very good, since you know how to program filters you may want to pick a copy, shows diffrent chart setups and how to trade them.
|