![]() |
| |||||||
| 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. |
![]() |
| | LinkBack | Thread Tools | Search this Thread | Display Modes |
| | #1 (permalink) |
| Member | 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 |
| | |
| Sponsored Links |
| | #5 (permalink) | |
| help me oh great one Join Date: Mar 2005
Posts: 45
![]() | Quote:
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 | |
| | |
| | #6 (permalink) |
| Member | 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 */ |
| | |
| | #7 (permalink) | |
| Member | Quote:
One day, I may get around to that. | |
| | |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |