StockFetcher Forums · Filter Exchange · Who really wants to find the next NTRI?<< 1 ... 21 22 23 24 25 ... 31 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #43121
Ignore TheRumpledOne
4/21/2006 6:10:25 PM

Fetcher[
/* FINDING THE NEXT NTRI FILTER Double Version - for week of April 24, 2006 */


/* enter your Upper Limit criteria */
set{UpperLim, High 18 week High}

/* enter your Lower Limit criteria */
set{LowerLim, Low 18 week Low}

set{Double, UpperLim * .50 }

set{LimDiff, UpperLim minus LowerLim}
set{PPDiff, CLOSE minus LowerLim}
set{PPDiv, PPDiff / LimDiff}
set{BallOn, PPDiv * 100}

set{PCT, LimDiff / LowerLim}

/* inside bars filter display */

set{xTop, count(high < high 1 day ago , 1) }
set{xBot, count(low > low 1 day ago , 1) }
set{ibar, xTop + xBot}


/* ENHANCED TREND DISPLAY */

set{T10, count(10 day slope of the close above 0,1)}
set{T60, count(60 day slope of the close above 0,1)}
set{T200, count(200 day slope of the close above 0,1)}

Set{a1, T200 * 1}
Set{a2, T60 * 10}
Set{a3, T10 * 100}

Set{aa, a1 + a2}
Set{TREND, aa + a3}
set{T10a,days(10 day slope of the close below 0, 100)}
set{T60a,days(60 day slope of the close below 0, 100)}
set{T200a,days(200 day slope of the close below 0, 100)}

ADD COLUMN TREND
ADD COLUMN T10a
ADD COLUMN T60a
ADD COLUMN T200a


and add column ibar

draw T10a
draw T60a on plot t10a
draw T200a on plot t10a

set{HiOp,high - open}
set{OpLo, open - low}

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{ClxCl, CCa - CCb}
/*
set{HHb,days(High is above High 1 day ago,100)}
set{HHa,days(High is below High 1 day ago,100)}
set{HixHi, HHa - HHb}

set{LLb,days(Low is above Low 1 day ago,100)}
set{LLa,days(Low is below Low 1 day ago,100)}
set{LoxLo, LLa - LLb}
*/
set{VolUp, days(volume is below volume 1 day ago,100)}
set{VolDn, days(volume is above volume 1 day ago,100)}
set{VlXvl, VolUp - VolDn}

set{vck1, volume 1 day ago }
set{vck, volume / vck1 }
set{vdbl, days(vck < 2, 100)}

Set{Bullpower, high minus ema(13)}
Set{Bearpower, low minus ema(13)}

set{BLb,days(BullPower is above BullPower 1 day ago,100)}
set{BLa,days(BullPower is below BullPower 1 day ago,100)}
set{BLxBL, BLa - BLb}

set{BRb,days(BearPower is above BearPower 1 day ago,100)}
set{BRa,days(BearPower is below BearPower 1 day ago,100)}
set{BRxBR, BRa - BRb}

set{RChg, count( UpperLim equal UpperLim 1 day ago, 1 ) }
set{SChg, count( LowerLim equal LowerLim 1 day ago, 1 ) }

/* Volatility Direction Filter Display */

set{BBDiff, Upper Bollinger Band(20) - Lower Bollinger Band(20) }

set{BBDb,days(BBDiff is above BBDiff 1 day ago,100)}
set{BBDa,days(BBDiff is below BBDiff 1 day ago,100)}
set{BBTrend, BBDa - BBDb}

set{ATRb,days(ATR(14) is above ATR(14) 1 day ago,100)}
set{ATRa,days(ATR(14) is below ATR(14) 1 day ago,100)}
set{ATRTrend, ATRa - ATRb}

/* profit had you bought the open 5 days ago and sold at the high */

set{High5, High 5 day High}
set{Profit, High5 - open 5 days ago}

/* Narrow Channel Breakout Display */

set{ High20, high 20 day high}
set{ Low20, low 20 day low}

set{ New20High, count( high above High20 1 day ago , 1 ) }
set{ New20Low, count( low below Low20 1 day ago , 1 ) }

/* column display */

add column HiOp
add column OpLo
add column Profit

add column BallOn
add column UpperLim {Resist}
add column LowerLim {Support}

add column RChg
add column SChg

add column New20High
add column New20Low

AND ADD COLUMN BBTrend
AND ADD COLUMN ATRTrend

/* PLOTS */

draw UpperLim on plot price
draw LowerLim on plot price

/* NORMALIZE accumulation distribution */

set{adval, INDPOSITION(accumulation distribution, 60) * 100 }

/* NORMALIZE momentum(12) */

set{moval, INDPOSITION(momentum(12), 60) * 100}

/* NORMALIZE rsi(2) */

set{rsval, RSI(2) }

/* NORMALIZE williams %r(10) */

set{wrval, INDPOSITION(williams %r(10), 60) * 100 }

/* DRAW THE MP RSIWLR CHART */

and draw wrval
and draw adval on plot wrval
and draw moval on plot wrval
and draw rsval on plot wrval

add column wrval
add column adval
add column rsval
add column moval

and add column clxcl
and add column VlXvl
and add column Vdbl
/*
add column HixHi
add column LoxLo
*/
add column Bullpower
add column Bearpower
add column BLxBL
add column BRxBR

/* Selection Criteria */


LowerLim below Double

close above .50

avg vol(5) above 500000
avg vol(30) above 500000

add column industry

Sort column 5 descending
]




kliebert
17 posts
msg #43220
Ignore kliebert
4/26/2006 7:27:49 PM

pop to the top


stocktrader
294 posts
msg #43223
Ignore stocktrader
4/26/2006 9:27:27 PM

New t123 symbols to watch:

ZP
FMXIQ (this one needs a pull back before entry)


stocktrader
294 posts
msg #43221
Ignore stocktrader
modified
4/26/2006 9:49:14 PM

pop to the top.......good idea

AOOR is rockin'

46% in two days.



TheRumpledOne
6,407 posts
msg #43224
Ignore TheRumpledOne
4/26/2006 11:28:18 PM

Kind of funny... NTRI apprears on this filter. Did you see it pop?




stocktrader
294 posts
msg #43226
Ignore stocktrader
4/27/2006 12:12:33 AM

That is funny. 35% pop!

It's not on my tweaked NTRI filter, as I'm not updating the weeks.


TheRumpledOne
6,407 posts
msg #43235
Ignore TheRumpledOne
4/27/2006 11:11:31 AM

I update the filter every week so it always has the same starting point to keep all the stocks it has found to date.

Of course, you can add/change the selection criteria if you want to keep the number down, only look at TREND CHANGERS, etc...




WALLSTREETGENIUS
983 posts
msg #43291
Ignore WALLSTREETGENIUS
4/29/2006 12:39:32 AM

Here, since you like spewing your grafitti on my threads.....I'll just return the favor. Hey, that's like "paying it forward" huh?

Avery, you're averaging about 1 jealous post per page on my threads. So here you go Avery.....This is what you can expect from here on out buddy!


Fetcher[+DI(14)has been increasing the last 1-day
+DI(14)2 days ago had been decreasing
+DI(14)is above -DI(14)
Draw Williams %R(7) line at 0
average volume(90)is above 200000
sort column 8 ascending
close is above 2
offset 1-day

**** THE MIGHTY RIGGS ACCUMULATION WARM POP-80 ****

/* NORMALIZE accumulation distribution */

set{adval, INDPOSITION(accumulation distribution, 60) * 100 }

/* NORMALIZE RSI(7) */

set{rsval, INDPOSITION(RSI(7), 60) * 100}

/* NORMALIZE CCI(14) */

set{ccval, INDPOSITION(CCI(14), 60) * 100 }

/* NORMALIZE williams %r(10) */

set{wrval, INDPOSITION(williams %r(10), 60) * 100 }

* DRAW THE MP CCIWLR CHART */

and draw wrval
and draw adval on plot wrval
and draw rsval on plot wrval
and draw ccval on plot wrval


add column adval
add column ccval
add column rsval
add column wrval

wrval is between 0 and 75
adval is Above 80
]




- TheMightyRiggs -


WALLSTREETGENIUS
983 posts
msg #43292
Ignore WALLSTREETGENIUS
4/29/2006 12:46:45 AM

Oops...I forgot about the one that will make you all forget about the "next NRTI." Here it is guys....

Fetcher[close is above 40
Set{Bullpower, high minus ema(13)}
Set{Bearpower, low minus ema(13)}
set{BLb,days(BullPower is above BullPower 1 day ago,100)}
set{BLa,days(BullPower is below BullPower 1 day ago,100)}
set{BLxBL, BLa - BLb}
set{BRb,days(BearPower is above BearPower 1 day ago,100)}
set{BRa,days(BearPower is below BearPower 1 day ago,100)}
set{BRxBR, BRa - BRb}
Draw Bullpower
Draw Bearpower
add column BLxBL
add column BRxBR
Draw Bullpower
Draw Bearpower
average volume(90)is above 200000
offset 0-days

/* MP CCIWLR ANALYZER DISPLAY */

/* NORMALIZE accumulation distribution */

set{adval, INDPOSITION(accumulation distribution, 60) * 100 }

/* NORMALIZE RSI(7) */

set{rsval, INDPOSITION(RSI(7), 60) * 100}

/* NORMALIZE CCI(14) */

set{ccval, INDPOSITION(CCI(14), 60) * 100 }

/* NORMALIZE williams %r(10) */

set{wrval, INDPOSITION(williams %r(10), 60) * 100 }


/* DRAW THE MP CCIWLR CHART */

and draw wrval
and draw adval on plot wrval
and draw rsval on plot wrval
and draw ccval on plot wrval

add column adval
add column ccval
add column rsval
add column wrval

adval is above 75
wrval is below 50

ccval has been increasing 1-day
rsval has been increasing 1-day
wrval has been increasing 1-day
]




- TheMightyRiggs -


WALLSTREETGENIUS
983 posts
msg #43294
Ignore WALLSTREETGENIUS
4/29/2006 12:57:16 AM

Hey Avery -

Since you like RSI(2)and divergence so much, I made a filter just for you pal!

Fetcher[RSI(2)is decreasing 1-day
RSI(2)is below 50
close is below close 2 days ago
RSI(2)is above RSI(2)2 days ago
60-day slope of close is above 0
close is above 2
Set{Bullpower, high minus ema(13)}
Set{Bearpower, low minus ema(13)}
set{BLb,days(BullPower is above BullPower 1 day ago,100)}
set{BLa,days(BullPower is below BullPower 1 day ago,100)}
set{BLxBL, BLa - BLb}
set{BRb,days(BearPower is above BearPower 1 day ago,100)}
set{BRa,days(BearPower is below BearPower 1 day ago,100)}
set{BRxBR, BRa - BRb}
Draw Bullpower
Draw Bearpower
add column BLxBL
add column BRxBR
Draw Bullpower
Draw Bearpower

average volume(90)is above 200000
sort column 2 descending
offset 1-day

**** THE MIGHTY RIGGS ACCUMULATION WARM POP-80 ****

/* NORMALIZE accumulation distribution */

set{adval, INDPOSITION(accumulation distribution, 60) * 100 }

/* NORMALIZE RSI(7) */

set{rsval, INDPOSITION(RSI(7), 60) * 100}

/* NORMALIZE CCI(14) */

set{ccval, INDPOSITION(CCI(14), 60) * 100 }

/* NORMALIZE williams %r(10) */

set{wrval, INDPOSITION(williams %r(10), 60) * 100 }

* DRAW THE MP CCIWLR CHART */

and draw wrval
and draw adval on plot wrval
and draw rsval on plot wrval
and draw ccval on plot wrval


add column adval
add column ccval
add column rsval
add column wrval

adval is Above 80
]




Alway's glad to help.

- TheMightyOne -


StockFetcher Forums · Filter Exchange · Who really wants to find the next NTRI?<< 1 ... 21 22 23 24 25 ... 31 >>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.