StockFetcher Forums · Filter Exchange · FILTER FOR SELECTING STOCKS TO TRADE FOR MIKEY'S METHOD<< >>Post Follow-up
kanuk
32 posts
msg #41468
Ignore kanuk
2/21/2006 10:47:34 PM

TRO:
I must be dumber than a bag of hammers 'cause I can't figure out how to run these filters - do I have to enter values for R2,R1,PP etc


TheRumpledOne
6,407 posts
msg #35815
Ignore TheRumpledOne
modified
2/22/2006 1:04:44 AM

Here is a filter that selects stocks < $1 that have are either at RSI
(2) < 1 or the close just crossed above the EMA(5).

You can adjust the price and add your own volume criteria to suit
your specific trading needs.

This filter contains a few of my SF tricks.

One new trick is showing where the LOW, CLOSE and HIGH are in
comparison with the SUPPORT/RESISTANCE (s/r) lines. Since Mikey's
method uses these lines.

Of course, you can tweak the filter to select stocks above or below a
certain s/r line. For example, if you use CASR > 2, then the filter
will return stocks that closed above the Pivot Point. CASR > 4
returns stock closing above R2. CASR < 2 returns stocks closing
below S2. Pretty cool, huh?

For those of you with a watch list, use these displays and/or
selection criteria to help you narrow down your selections.

MAY ALL YOUR FILLS BE COMPLETE.

P.S. GM stands for GOLD MINE...LOL

Fetcher[
/* FILTER FOR SELECTING STOCKS TO TRADE FOR MIKEY'S METHOD */

/* CLOSE ABOVE SUPPORT/RESISTANCE (CASR) */

/* CASR = X, WHERE X =

5 = CLOSE CLOSED ABOVE R2
4 = CLOSE CLOSED ABOVE R1
3 = CLOSE CLOSED ABOVE PP
2 = CLOSE CLOSED ABOVE S1
1 = CLOSE CLOSED ABOVE S2
*/

set{AS2, count(close above s2,1)}
set{AS1, count(close above s1,1)}
set{AR2, count(close above r2,1)}
set{AR1, count(close above r1,1)}
set{APP, count(close above pp,1)}

Set{Paa, AR2 + AR1}
Set{Pab, Paa + APP}
Set{Pac, Pab + AS1}
Set{CASR, Pac + AS2}



/* LOW ABOVE SUPPORT/RESISTANCE (LASR) */

set{LAS2, count(LOW above s2,1)}
set{LAS1, count(LOW above s1,1)}
set{LAR2, count(LOW above r2,1)}
set{LAR1, count(LOW above r1,1)}
set{LAPP, count(LOW above pp,1)}

Set{LPaa, LAR2 + LAR1}
Set{LPab, LPaa + LAPP}
Set{LPac, LPab + LAS1}
Set{LASR, LPac + LAS2}



/* HIGH ABOVE SUPPORT/RESISTANCE (HASR) */

set{HAS2, count(HIGH above s2,1)}
set{HAS1, count(HIGH above s1,1)}
set{HAR2, count(HIGH above r2,1)}
set{HAR1, count(HIGH above r1,1)}
set{HAPP, count(HIGH above pp,1)}

Set{HPaa, HAR2 + HAR1}
Set{HPab, HPaa + HAPP}
Set{HPac, HPab + HAS1}
Set{HASR, HPac + HAS2}

and add column LASR
and add column CASR
and add column HASR


add column s2
add column s1
add column pp
add column r1
add column r2




/* STOCK SELECTION CRITERIA FOLLOWS BELOW */

/* RSI(2) < 1 STOCKS */
SET{RSI2,COUNT(RSI(2) BELOW 1, 1)}

/* CLOSE CROSSED ABOVE EMA(5) STOCKS */
SET{EMA51, EMA(5) 1 DAY AGO}
SET{close1, close 1 DAY AGO}
SET{EMA5A, COUNT(CLOSE ABOVE EMA(5),1)}
SET{EMA5B, COUNT(CLOSE1 BELOW EMA51,1)}
SET{EMA5, EMA5A * EMA5B}



/* USING BOOLEAN "OR" LOGIC TO SELECT STOCKS */
SET{GM, RSI2 + EMA5}
GM ABOVE 0


/* PICKING THE PENNY STOCKS */
CLOSE BELOW 1
]




I LOVE THE EDIT BUTTON!!


TheRumpledOne
6,407 posts
msg #35944
Ignore TheRumpledOne
modified
2/22/2006 1:05:05 AM

New and improved... using momentum to weed out...

Fetcher[
/* FILTER FOR SELECTING MOMO STOCKS TO TRADE FOR MIKEY'S METHOD */

/* CLOSE ABOVE SUPPORT/RESISTANCE (CASR) */

/* CASR = X, WHERE X =

5 = CLOSE CLOSED ABOVE R2
4 = CLOSE CLOSED ABOVE R1
3 = CLOSE CLOSED ABOVE PP
2 = CLOSE CLOSED ABOVE S1
1 = CLOSE CLOSED ABOVE S2
*/




set{AS2, count(close above s2,1)}
set{AS1, count(close above s1,1)}
set{AR2, count(close above r2,1)}
set{AR1, count(close above r1,1)}
set{APP, count(close above pp,1)}

Set{Paa, AR2 + AR1}
Set{Pab, Paa + APP}
Set{Pac, Pab + AS1}
Set{CASR, Pac + AS2}



/* LOW ABOVE SUPPORT/RESISTANCE (LASR) */

set{LAS2, count(LOW above s2,1)}
set{LAS1, count(LOW above s1,1)}
set{LAR2, count(LOW above r2,1)}
set{LAR1, count(LOW above r1,1)}
set{LAPP, count(LOW above pp,1)}

Set{LPaa, LAR2 + LAR1}
Set{LPab, LPaa + LAPP}
Set{LPac, LPab + LAS1}
Set{LASR, LPac + LAS2}



/* HIGH ABOVE SUPPORT/RESISTANCE (HASR) */

set{HAS2, count(HIGH above s2,1)}
set{HAS1, count(HIGH above s1,1)}
set{HAR2, count(HIGH above r2,1)}
set{HAR1, count(HIGH above r1,1)}
set{HAPP, count(HIGH above pp,1)}

Set{HPaa, HAR2 + HAR1}
Set{HPab, HPaa + HAPP}
Set{HPac, HPab + HAS1}
Set{HASR, HPac + HAS2}


/* Momentum CrossOver */

set{MxMa, count(momentum(25) crossed above momentum(20), 1) - count(momentum(25) crossed BELOW momentum(20),1)}

set{MxMb, count(momentum(25) above momentum(20), 1) - count(momentum(25) BELOW momentum(20),1)}

set{MxM, MxMa + MxMb}

and add column MxM
and add column momentum(25) {MOMO25}
and add column momentum(20) {MOMO20}


and add column LASR
and add column CASR
and add column HASR


add column s2
add column s1
add column pp
add column r1
add column r2




/* STOCK SELECTION CRITERIA FOLLOWS BELOW */

/* RSI(2) < 1 STOCKS */
SET{RSI2,COUNT(RSI(2) BELOW 1, 1)}

/* CLOSE CROSSED ABOVE EMA(5) STOCKS */
SET{EMA51, EMA(5) 1 DAY AGO}
SET{close1, close 1 DAY AGO}
SET{EMA5A, COUNT(CLOSE ABOVE EMA(5),1)}
SET{EMA5B, COUNT(CLOSE1 BELOW EMA51,1)}
SET{EMA5, EMA5A * EMA5B}

/* WHITE CANDLE PIERCING UPPER BOLLINGER BAND STOCKS */
SET{BBW, COUNT(bollinger Width(20,2) reached a new 6 month low within the last 5 days , 1)}
SET{CAO, COUNT(close above open ,1)}
SET{CAUBB, COUNT( close above the upper bollinger band (20),1)}
SET{OBUBB, COUNT( open below the upper bollinger band (20),1)}

SET{WCPBA, BBW * CAO}
SET{WCPBB, OBUBB * CAUBB}
SET{WCPBC, WCPBA * WCPBB}


/* MUDDY ZONE STOCK*/

set{uBBx, count(HIGH crossed above the upper bollinger band (20),5)}
SET{UBBC, COUNT(UBBx ABOVE 0,1)}
SET{LBE, COUNT(low below ema(13),1) * COUNT(close above ma(20),1)}
set{MZS, UBBC * LBE}


/* USING BOOLEAN "OR" LOGIC TO SELECT STOCKS */

SET{GM1, RSI2 + EMA5}
SET{GM2, MZS + WCPBC}
SET{GM, GM2 + GM1}

GM ABOVE 0

/* Momentum Selection - picking stocks with momentum heading up */

and MxM above 0
and momentum(25) above momentum(25) 1 day ago
and momentum(20) above momentum(20) 1 day ago

/* PICKING THE PENNY STOCKS */

CLOSE BELOW 1

/* SORT */

SORT COLUMN 5 DESCENDING

/* end filter */
]



MAY ALL YOUR FILLS BE COMPLETE.



TheRumpledOne
6,407 posts
msg #41475
Ignore TheRumpledOne
2/22/2006 1:06:29 AM

I edited the above filter so you can just click on the MAGNIFYING GLASS ICON and the filters will run.

I have ADVANCED SF, so I don't know if it will work on basic or not.

NO, you don't have to enter anything.

But you can change the price/volume criteria.

MAY ALL YOUR FILLS BE COMPLETE.


kanuk
32 posts
msg #41513
Ignore kanuk
2/22/2006 8:59:39 PM

TRO:
It runs on the basic version of SF

many thanks


StockFetcher Forums · Filter Exchange · FILTER FOR SELECTING STOCKS TO TRADE FOR MIKEY'S METHOD<< >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.