AfricaFund 18 posts msg #41668 - Ignore AfricaFund |
3/2/2006 2:46:14 AM
This is a filter I've been working on - largely a mod of both TRO and Rigg's filters - many thanks to both of you! Having a tough time getting some of the kinks worked out though. Weekly stochrsi(2) not being recognized and slope of DMA problems..... Any ideas??? Thanks! (this is a sell side, simply reverse criteria for buy side.)
set{T10, count(10 day slope of the close above 0,1)}
set{T60, count(60 day slope of the close above 0,1)}
set{T200, count(200 day slope of the close above 0,1)}
Set{u1, T200 * 1}
Set{u2, T60 * 10}
Set{u3, T10 * 100}
Set{uu, u1 + u2}
Set{TREND, uu + u3}
draw trend
draw rsi(2)
draw stochrsi(2,2)
draw weekly stochrsi(2,2)
draw DMA(28,-14)
draw weekly DMA(28,-14)
trend is above 50
weekly bollinger oscillator(20) is above 50
DMA(28,-14) is above weekly DMA(28,-14)
stochrsi(2,2) equals 1
rsi(2) is above 95
weekly stochrsi(2,2)} equals 1
set{slp,8 day slope of DMA(28,-14)}
slp is less than 0.025
slp is greater than -0.025
|