reeseman 30 posts msg #100465 - Ignore reeseman |
4/29/2011 7:30:06 AM
This what i have came up with but i cannot get any result from this filter, does anyone have a better ideal to find cycle lows or a better way to enter to a position.
set{v, avgvol(10) * 5}
volume > v
add column v
and the Stochastic %K(5,3,2) is below 45
and the Stochastic %K(5,3,2) has been increasing for 1 day
and the Stochastic %K(5,3,2) 1 day ago was below the Stochastic %K(5,3,2) two days ago
and the Stochastic %K(5,3,2) 1 day ago was below 30
and the MACD fast line(5,20) has been increasing for 1 day
and the weekly Stochastic %K(3,1,3) has been increasing for 1 day
and the weekly Stochastic %D(3,1,3) has been increasing for 1 day
and the weekly MACD fast line(3,10) has been increasing for 1 day
close is between 1 and 15
volume is above 300000
sort column 4 descending
chart-time 90-days
Draw MA(10)
Draw MA(30)
and add column rr
set{F000,count(Fibonacci Up(120,20) is near 0.000,1)}
set{F240,count(Fibonacci Up(120,20) is near 0.240,1)}
set{F382,count(Fibonacci Up(120,20) is near 0.382,1)}
set{F500,count(Fibonacci Up(120,20) is near 0.500,1)}
set{F618,count(Fibonacci Up(120,20) is near 0.618,1)}
set{F786,count(Fibonacci Up(120,20) is near 0.786,1)}
set{F1000,count(Fibonacci Up(120,20) is near 1.000,1)}
SET{VAR1,F000 + F240}
SET{VAR2,VAR1+ F382}
SET{VAR3,VAR2 + F500}
SET{VAR4,VAR3+ F618}
SET{VAR5,VAR4 + F786}
SET{VAR6,VAR5 + F1000}
set{F000D,count(Fibonacci DOWN(120,20) is near 0.000,1)}
set{F240D,count(Fibonacci DOWN(120,20) is near 0.240,1)}
set{F382D,count(Fibonacci DOWN(120,20) is near 0.382,1)}
set{F500D,count(Fibonacci DOWN(120,20) is near 0.500,1)}
set{F618D,count(Fibonacci DOWN(120,20) is near 0.618,1)}
set{F786D,count(Fibonacci DOWN(120,20) is near 0.786,1)}
set{F1000D,count(Fibonacci DOWN(120,20) is near 1.000,1)}
SET{VAR11,F000D + F240D}
SET{VAR12,VAR11+ F382D}
SET{VAR13,VAR12 + F500D}
SET{VAR14,VAR13+ F618D}
SET{VAR15,VAR14 + F786D}
SET{VAR16,VAR15 + F1000D}
SET{VAR26,VAR6 + VAR16}
DRAW FIBONACCI DOWN(120,20)
DRAW FIBONACCI UP(120,20)
add column weekly roc(1,1) {1 week % gain}
add column weekly roc(2,1) {2 week % gain}
add column weekly roc(3,1) {3 week % gain}
add column weekly roc(4,1) {4 week % gain}
|