SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : TA-Quotes Plus -- Ignore unavailable to you. Want to Upgrade?


To: Craig DeHaan who wrote (3089)1/15/1998 9:54:00 PM
From: TechTrader42  Respond to of 11149
 
Craig: Thanks for posting that great scan by Richard.
Here it is newly decked out in semicolons for QP2:

//Breakout scan by Richard Estes, translated from TC2000
//and revised by Doug from Silicon Investor Discussion Group

Output="breakout.lst";

DaysToLoad = 250;

If Close(0)<=30 and //price < $30
Close(0)>movavg(0,34,cl) and //price > avg price last 34 days
(Max(-4,-25,hi)/(0.01+Min(-4,-25,lo)))<1.2 and //prev month max high no more than 20% greater than max low
Vol(0) > AvgVol(0,-180) and //Average volume over the last 30 days is at least 30,000
Vol(0) >= 30000 and //Volume today greater than 30000
AvgVol(0,-30 )>=30000 and //Average volume over the last 30 days is at least 30,000
QRS(0)>=80 and //Relative Strength is greater than 80 percent
(Close(0)/(0.01+movavg(-1,3,cl)))>1.02 and //price > avg price prev 3 days by at least 2.0%
(Close(0)/(0.01+movavg(-1,3,cl)))<1.06 then //But not more than 6.0%
println symbol:-6," BUY: Close: ", close(0):-6:3, ",", " Up: ", close(0)-close(-1):4:3, ","," Volume: ", vol(0):-10, ",", " QRS: ", QRS(0):2, ","," Sharesfloat: ", Sharesfloat:6:3, ", ",Description:-12;
endif;