output = "EDSGAP.lst";
daystoload=300;
DaysRequired=300;
Printhdrln "Symbol,Close,EPSRank,QRS,30adv,Vol,PE,IRLGroup,SharesFloat,SharesShort,Name,InstHold";
if Open(0) >high(-1)+(.05)*High(-1) and
Sharesfloat >=10 and
Vol(0)>=50000 and
Close(0)>=10
then
println Symbol,",",Close(0):7:2,",",EPSRank(0):3:0,",",QRS(0):3:0,",",avgvol(0,-29):8:0,",",vol(0):8:0,",",PE:5:0,",",IRLsymbol:12,",",Sharesfloat:5:2,",",Shortint:5:2,",",description:-15,",",InstHold:3:2;
endif;