costner 31 posts msg #36527 - Ignore costner |
6/27/2005 6:44:54 PM
Can someone help me with syntax ...do you see any problems with syntax here?
set{a,100-close}
set{x,a + 3.0}
set{y,close - 3.0}
set{b,y * 0.1}
set{c,b + x}
set{z,c * 0.01}
set{d,x * z}
set{e,d * 0.01}
set{f,e * 5,1}
and Close gained more than f percent over the last 1 day
and average volume(90)is above 50000
and close is between 3 and 250
|
TheRumpledOne 6,411 posts msg #36528 - Ignore TheRumpledOne |
6/27/2005 7:20:45 PM
Can someone help me with syntax ...do you see any problems with syntax here?
set{a,100-close}
set{x,a + 3.0}
set{y,close - 3.0}
set{b,y * 0.1}
set{c,b + x}
set{z,c * 0.01}
set{d,x * z}
set{e,d * 0.01}
set{f,e * 5,1} <<< here's your problem
and Close gained more than f percent over the last 1 day <<< can't say f percent
and average volume(90)is above 50000
and close is between 3 and 250
|