Crisp - Shorting Stocks SFT
Shorting Stocks search from StressFreeTrading.com converted to QP2 scan by The UnRuly Dog @ http://ww.unrulydog.com
output = "ShrotStks.lst";
daystoload=150;
Exchange=NYSE,AMEX,NASDAQ;
DaysRequired=150;
Printhdrln "Symbol,Close,EPSRank,QRS,30adv,Vol,PE,IRLGroup,SharesFloat,SharesShort,Name,InstHold";
if Low52week>0 and
HasOptions=True then
if Close(0)>40 and
MarketCap>2000 and
Vol (0)>250000 and
High52week/low52week>=2 and
PE>40 and
Close (0)>=high52week*.8 or
Close (0)>=High5Year
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:0,",",Shortint:5:0,",",description:-15,",",InstHold:3:2;
endif;
endif;