Swing Down Watch
Swing Traders list of stocks in an down trend that have experienced three or more days of increasing daily low prices and shouldbe watched for sale or a shorting signal.
// The Swing Traders Down Trend Watch List
input="swingdown.lst";
output="swingdw.lst";
daystoload=30;
daysRequired=30;
Printhdrln "Symbol,Close,EPSRank,QRS,30adv,Vol,PE,IRLGroup,SharesFloat,Name,SharesShort,Short Siganl";
if Low(0) > Low(-1) and // Today's low is greater than than yesterday's low
Low (-1) > Low (-2) // Yesterday's low is greater than the day before's low
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,",",Low(0):7:4;
endif;