PureBytes Links
Trading Reference Links
|
In a message dated 9/22/98 8:44:54 PM Pacific Daylight Time,
lissen@xxxxxxxxxxxxxxxx writes:
> How to I build this volvol.lst?
>
> Lionel
You can substitute your own input file, or use this scan for volume:
output="volvol.lst";
if close(0) >= 10 then
if avgvol(0,-33) > 250000 then
Println Symbol,",",Close(0):8:3;
endif; endif;
|