Stock Hideout

Go Back   Stock Hideout > Stock Market School > Stock Market 101
Register Stock Contest FAQ Members List Stock News Calendar Search Today's Posts Mark Forums Read

Stock Market 101 All your questions will be answered here. Start your quest to financial freedom right here and now with the basic building blocks of trading.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old Sat, 04-30-2005, 12:15 PM   #1 (permalink)
therumpledone
Member
 
Join Date: Apr 2005
Posts: 43
therumpledone
Send a message via AIM to therumpledone Send a message via MSN to therumpledone Send a message via Yahoo to therumpledone
FILTER FOR SELECTING STOCKS TO TRADE FOR MIKEY'S METHOD

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

/* 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
therumpledone is offline   Reply With Quote
Sponsored Links
Old Sun, 05-01-2005, 07:03 PM   #2 (permalink)
hellabill
help me oh great one
 
Join Date: Mar 2005
Posts: 45
hellabill has disabled reputation
filters


ok how do i input these into qt??
via paintbar and how???
tia
hellabill is offline   Reply With Quote
Old Fri, 05-06-2005, 02:15 PM   #3 (permalink)
teamcanada
 
Join Date: Apr 2005
Posts: 2
teamcanada has disabled reputation
yea is this filter for SF or for QT?
thanks
teamcanada is offline   Reply With Quote
Old Sat, 05-07-2005, 05:44 AM   #4 (permalink)
mookie
 
mookie's Avatar
 
Join Date: Apr 2005
Posts: 3
mookie has disabled reputation
Send a message via Yahoo to mookie
It's a filter to use with StockFetcher, then the list that is created can be inserted into QT (or any other "watch list/portfolio" platform).
mookie is offline   Reply With Quote
Old Sun, 05-08-2005, 06:39 AM   #5 (permalink)
hellabill
help me oh great one
 
Join Date: Mar 2005
Posts: 45
hellabill has disabled reputation
Post therumpleone sf filters

Quote:
Originally Posted by mookie
It's a filter to use with StockFetcher, then the list that is created can be inserted into QT (or any other "watch list/portfolio" platform).
ok tx!!
was hoping that some of them could be used in the trade-ideas alert or
in the chart paintbar editor found under WINDOW in qt

Last edited by hellabill : Sun, 05-08-2005 at 06:42 AM. Reason: icon
hellabill is offline   Reply With Quote
Old Sun, 05-08-2005, 07:30 PM   #6 (permalink)
therumpledone
Member
 
Join Date: Apr 2005
Posts: 43
therumpledone
Send a message via AIM to therumpledone Send a message via MSN to therumpledone Send a message via Yahoo to therumpledone
FILTER FOR SELECTING MOMO STOCKS TO TRADE FOR MIKEY'S METHOD

/* 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 */
therumpledone is offline   Reply With Quote
Old Sun, 05-08-2005, 07:32 PM   #7 (permalink)
therumpledone
Member
 
Join Date: Apr 2005
Posts: 43
therumpledone
Send a message via AIM to therumpledone Send a message via MSN to therumpledone Send a message via Yahoo to therumpledone
Quote:
Originally Posted by hellabill
ok tx!!
was hoping that some of them could be used in the trade-ideas alert or
in the chart paintbar editor found under WINDOW in qt
You can use some of the ideas to give you real time alerts via paintbar in QT.

One day, I may get around to that.
therumpledone is offline   Reply With Quote
Old Mon, 05-16-2005, 06:30 PM   #8 (permalink)
morganfrmn
Member
 
Join Date: May 2005
Location: louisville kentucky
Posts: 29
morganfrmn has disabled reputation
where do you get StockFetcher

where and how do i get stock fetcher.....
morganfrmn is offline   Reply With Quote
Old Mon, 05-16-2005, 08:25 PM   #9 (permalink)
Muddy
Member
 
Join Date: Mar 2005
Posts: 17
Muddy has disabled reputation
www.stockfetcher.com
Muddy is offline   Reply With Quote
Old Fri, 05-20-2005, 10:34 AM   #10 (permalink)
morganfrmn
Member
 
Join Date: May 2005
Location: louisville kentucky
Posts: 29
morganfrmn has disabled reputation
ok i joined stock fetcher

i joined stockfetcher but i do not know how to use it.

i pasted your filter in and it did something.....


teach me oh greatone.
morganfrmn is offline   Reply With Quote
Reply



Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Add RSS   Add RSS2   Add to Google   Add to My Yahoo   My MSN RSS
All times are GMT -5. The time now is 03:35 AM.


vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0 RC5 © 2006, Crawlability, Inc.
Copyright © 2005, StockHideout.com, info@stockhideout.com
Clicky Web Analytics Clicky

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286