Thanks very much for the offer. You guys are great. Here is what does not work:
DaysToLoad = 250; Output="myscan.lst"; ProcessMs = "e:\SCANS\myscan" ,vms; Exchange=NASDAQ;
if ( EMovAvg(0,9,cl) > EMovAvg(0,21,cl) ) and // Short term ema above the long term ( Close(0)>= 5 ) and // At least a 5 dollar stock ( Close(0)<= 100 ) and // And less than or equal to a 100 dollar stock ( AvgVol(0,-29)>= 200000 ) and // 200,000 shares average volume ( Close(-2 ) < Close( -3 ) ) and // down for 2 days ( Close(-1 ) < Close( -2 ) ) and ( Close( 0 ) > Close( -1 ) ) and // and then up ( Close(0) > close(-3)*.9 ) then //After 2 down days, close is greater than 90 % of the 3-day close. Print Symbol,",",Open(0):8:3; Println ",",High(0):8:3,",",Low(0):8:3," ",close(0):8:3,",",vol(0):8:3; Endif; |