To: Carlton G Glenn who wrote (5952 ) 1/31/1998 5:50:00 PM From: Galirayo Read Replies (1) | Respond to of 9262
[ Chat ] Did you think I wouldn't?? <Big GGGGGrin>> I've been using Q+ for a while now. If you want to Speed it up use that Fast Scan I gave you. // List Reducer FAST by Ray Cunningham // Save it as 111Fast.scn // Remove or add the "//" to add or Rem out the line // Change it to suit your needs // Add the line ... // input = "111Fast.lst" // to your next Scan exchange nyse,amex,nasdaq //Set STOCHASTIC =<%K Value>,<%D Value> //Set Stochastic = 16,14 PE>-100 PE<100 /// Between a 1.00 & 15 dollar stock Close(0) >=1.00 Close(0) <=15 // And 30,000 shares average volume AvgVol(0,-29) >= 300 // Volume today is greater than the Avg Vol last 29 Days AvgVol(-1,-29) < Vol(0) //HasOptions = True // K% Fast Line is Flat or Increasing //StochasticPctK (0) >= StochasticPctK(-1) Then your next scan should look like. Make sure you add this line to all of your other Scans. [ Input = "111fast.lst" ] // Jan 97 // Bozu Candles //Ray Cunningham Input = "111fast.lst" AllGroup // This Loop is for Back Testing //Loop (-10,-12) // FIRST CANDLE must be Black Close(-1) < Open(-1) // First candle must be large (ie 2% or more) chng *1% Close(-1) < .99*Open(-1) // Gap of Bozu is optional //Open (0) > Close(-1) // SECOND CANDLE // Second candle is white Open (0) = Low(0) Close (0) = High(0) Close(0) > Open(0) // Must be large (2% or more) Was ** 1.05 // Carl after I looked again ... may be better to have a Small Bozu // but I didn't' change it. Close(0) > 1.01*Open(0) Stochastic(0)>Stochastic(-1) //MovAvg(0,24,cl) >= MovAvg(-1,24,cl) // 24 DMA is increasing // OTHER Println Symbol,""," Bulley ",close(0):7:3, movavg (0,50,cl):7:2, PE:5:0, QRS(0):5:0,RSI(0):4:0, date(0):12, MoneyFlow(0):9:0 // 20d Average volume > 4,000 shares / Hr //AvgVol(0,-19) >= 200 ///Some of these Remarks are incorrect because I changed it around some since.