PureBytes Links
Trading Reference Links
|
In a message dated 9/23/98 9:03:22 AM Pacific Daylight Time,
jdewilder@xxxxxxxxxxxxxxx writes:
> I tried your volume scan and receive a syntax error that states:
>Beyond area boundary....13 days loaded, need at least 34 days to
>calculate
Sorry about that. Try adding these two lines to the scan, under the output
line:
daystoload=250;
daysrequired=200;
So the scan would now be:
output="volvol.lst";
daystoload=250;
daysrequired=200;
if close(0) >= 10 then
if avgvol(0,-33) > 250000 then
Println Symbol,",",Close(0):8:3;
endif; endif;
Brooke
|