alexgwoodruff 17 posts msg #44196 - Ignore alexgwoodruff |
5/26/2006 4:56:47 AM
I am playing with adding columns and drawing different variables. I have written the following filter which may or may not be any good, but the 'stoploss' and 'target' variables will not add to the columns or be drawn. the message I get when I debug is: No valid indicator or phrase found.
Please help.
set{crossover, macd fast line(12,26) - macd slow line(12,26)}
set{approach, macd fast line(12,26) / macd slow line(12,26)}
set{stoploss, close - 20%}
set{target, close + 20%}
set{uplim, 2 month high}
set{lolim, 2 month low}
show stocks where close is between 0.1 and 5
where CCI(14) has been increasing for 2 days
where crossover is between 0.01 and -0.01
where approach has been less than 1 for last 3 days
where rsi is between 30 and 70
where volume is more than 250000
add column stoploss
add column target
draw stoploss
draw target
draw uplim
draw lolim
|