25 Day New High Filtered List
Filtered Screen of 25 Day new high stocks for those institutions are buying.
output = "25DHiF.lst";
daystoload=150;
DaysRequired=150;
Printhdrln "Symbol,Close,EPSRank,QRS,30adv,Vol,PE,IRLGroup,SharesFloat,Name,SharesShort";
if ( Close(0) > max(-1,-24,cl) )and
Close(0)>=10 and
Sharesfloat >=10 and
Vol(0)>=50000 and
InstHold \< 50
then
println Symbol,",",Close(0):7:2,",",EPSRank(0):3:0,",",QRS(0):3:0,",",avgvol(0,-29)/1000:8:0,",",vol(0):8:3,",",PE:5:0,",",IRLsymbol:12,",",Sharesfloat:5:1,",",description:-15,",",Shortint:5:3;
endif;