Ed Mulroy Stock Screening Scans

Scans #1 For KCDick (edMulroy)

My scans change as I go and I do not remember what ones I posted here before so am posting most of what I look at now. Yahoo cut off the end of one of my previous messages so I'm breaking this up into several messages.

This is Long $3-$8. You can modify it for any price range. I do $3-$8, $8-$20 and >$20. This is NOT a GBS long scan.

Remember that the results of the scan are the START. You then must look at the charts and filter out what you don't like.

--------------------------

(C1 - C) * ((C >= 2) AND (C < 8) AND (V >= (1.5 * AVGV15.1)) AND (AVGV15.1 > 500) AND (C1 < MAXC30.1) AND (C >= MAXC30.1) AND (MINV21.1 >= 250))

--Report amount the stock rose today
--Price $2 to $7.99
--Volume at least 50% higher than monthly average
--Yesterday's close less than max 30 day price
--Today's close equal or higher than max 30 day price
--Minimum daily volume in last month 25,000 shares

--------------------------

Scans #2 for KCDick(edMulroy)

I use this as a GBS long

----------------

(C >= 20) AND (C > (C1 + 1)) AND (V >= (1.5 * AVGV50.1)) AND (V > V1) AND (C >= MAXC50.1) AND(AVGV50.1 >= 500)

--Price at least $20
--Rose at least $1
--Volume at least 50% higher than 50 day average
--Volume higher than yesterday
--Closed at or above 50 day high
--Average volume 50 days at least 50,000 shares

----------------

Scans #3 for KCDick(edMulroy)

Weinstein scan, evolved from what Stan Weinstein wrote in his book.

-------------------

((C >= 3) AND (RSI30.9 > RSI30.9.5) AND (C > AVGC30.1) AND (V >= (1.2 * AVGV42.1)) AND (AVGV42.1 >= 1000) AND (C > C1) AND (C2 < AVGC30.2) AND (C > MAXH14.3))

--Price at least $3
--Relative strength increasing
--Price greater than 30 day average
--Volume at least 20% above 2 month average
--Volume 2 month daily average at least 100,000
--Price day before yesterday was below 30 day average
--Price is a 14 day high

-------------------

Scans #4 for KCDick(edMulroy)

30 MA Breakout $2-$8 Reports rise for selected stocks, zero for others. The (C1 - C) part looks backwards. It is that way because of a quirk in how Visual Basic treats logical tests (TC/2000 is done with Visual Basic) This one is new and a little choppy. I am playing with it and you may want to also.

----------------

((C1 - C) * ((C >= 2) AND (C < 8) AND (V >= (1.5 * AVGV15.1)) AND (AVGV15.1 >= 500) AND (MAXC5.1 < C) AND (AVGC30.1 > C1) AND (AVGC31.1 < C) AND (MINV21.1 >= 250)))

--Price from $2 to $7.99
--Volume at least 50% greater than 15 day average
--15 day average daily volume at least 50,000
--Price is higher than last 5 days
--Yesterday's price is less than 30 day average
--Today's price is higher than 30 day average
--Minimum volume in last month is 25,000 shares

----------------

edMulroy-Scan#4 reworked(KCDick 98)

Ed: Here's a rework of your Scan#4. It spits out 6 candidates, ENDO looks the best.

Line1:15MA-V > 50K

2: 18MA > 40MA > 30W MA

3:30WMA increasing

4:C> 30WMA

5: C> high in last 5 days

6: Price= lo

7: Vol + 50% of 15MA

1) AVGV 15.2 > 500

2) (AVGC18>AVGC40) AND (AVGC18 > AVGC 18.3) AND (AVGC40 > AVGC40.3) AND
((AVGC18>AVGC150) OR (AVGC40 > AVGC 150))

3) AVGC150>AVGC150.3

4) C>AVGC150

5) C>MAXC5.1

6) C>1.25 AND C<7.5 --

7) V>(1.5*AVGV15.1)

Scans #5 for KCDick(edMulroy)

Volatility scan. Reports stocks that have a swing of at least $5 in a day (of interest for day trading). It turned out to essentially be a reporter of what Internet stocks are moving.

--------------------------

((AVGV21.1 >= 10000) AND (MINV22 >= 3000) AND (C >= 30) AND (C <= 120) AND ((H - L) >= 5) AND ((H1 - L1) >= 5) AND ((H2 - L2) >= 5) AND ((H3 - L3) >= 5) AND ((H4 - L4) >= 5) AND (MINV21.1 >= 250))

--Average daily volume in last month at least 1,000,000
--Minimum daily volume in last month at least 300,000
--Price from $30 to $120
--High - Low each of last 5 days at least $5

--------------------------

Scans #6 for KCDick(edMulroy)

GERN ENZN style surge.

Mimics the action that made me money when Geron and Enzon prices did "moon shots". Has proved interesting and useful but only by selecting a number of stocks that you then have to heavily filter.

----------------------

(C < 25) AND (C > O) AND ((2 * (C - O)) >= (H - L)) AND ((C >= (1.06 * C1)) AND (V >= 2000) AND (V >= (1.05 * V1)) AND (AVGV21.3 < 1000)) OR ((C >= (1.17 * C1)) AND (V >= 6240) AND (V >= (7.8 * V1)) AND (AVGV21.3 < 1000)))

----------------------

KCDick: re: your scan#4 comment(edMulroy)

When Visual Basic makes a logical test, the result is zero for FALSE or all 1's (0xFFFF or &HFFFF) for TRUE. Interpreted as a number the all 1's value becomes minus one and that is why I multiplied by a value which is minus that which you would logically think is correct. Mine does not return all stocks. Values of zero or of blank are those which were not selected by the scan.