StockFetcher Forums · Filter Exchange · Who really wants to find the next NTRI?<< 1 ... 20 21 22 23 24 ... 31 >>Post Follow-up
stocktrader
294 posts
msg #43019
Ignore stocktrader
4/17/2006 12:36:23 AM

RIGGS,

Produce a filter that makes better money than this one and I'll put $1,000 in your account.

I've not seen anything better than The Next NTRI filter.

There's been no begging or thread ransom, just willingness to give.

Can you improve the Next NTRI filter? (that's a challenge)


TheRumpledOne
6,407 posts
msg #43025
Ignore TheRumpledOne
4/17/2006 9:00:20 AM

Hey Avery, instead of BEGGING...just hold this thread and everyone in it for ransom! This way you get what you REALLY want. lol.....

- RIGGS -
===============================================================================

beg ( P ) Pronunciation Key (bg)
v. begged, beg·ging, begs
v. tr.
To ask for as charity: begged money while sitting in a doorway.
To ask earnestly for or of; entreat: begged me for help.

To evade; dodge: a speech that begged the real issues.
To take for granted without proof: beg the point in a dispute.

v. intr.
To solicit alms.
To make a humble or urgent plea.




TheRumpledOne
6,407 posts
msg #43024
Ignore TheRumpledOne
modified
4/17/2006 9:17:31 AM

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

/* 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


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

/* enter your Lower Limit criteria */
set{LowerLim, Low 17 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}

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
]



I think I discovered another "piece to the puzzle":

set{Double, UpperLim * .50 }

LowerLim below Double

This catches all stocks that have at least doubled in the time period within our price/volume selection criteria.

I was looking at Mark Crisp's list on www.prophet.net:

PEIX
ZOLT
RACK
HANS
TIE

to see if there was a pattern.

PEIX was $9.xx in December 2005 and hit $33 last week.

ZOLT was $9.xx in December 2005 and hit a high of $24.

RACK was $20.xx in December 2005 and hit a high of $56.

HANS was $77.xx in December 2005 and hit a high of $129.

TIE was $64.xx in December 2005, split 2 for 1 in Feb 2006 and hit a high of $54.

Even if we didn't get in until $18 in March, we would be looking at 66% profit or better!!

I don't think the next NTRI is going to escape us now!

MAY ALL YOUR FILLS BE COMPLETE.

P.S. Ok, Riggs, your turn, make it better or as you would say, "fix it"!!


kliebert
17 posts
msg #43041
Ignore kliebert
4/18/2006 2:07:36 PM

stocktrader, on 4/8 @ 11:36 you wrote "What I'm looking for on the t123 chart is for a crossing of tcross in a 3-step move.

Would you explain that please?

Thank you.


TheRumpledOne
6,407 posts
msg #43043
Ignore TheRumpledOne
4/18/2006 3:03:29 PM

I posted a screen shot of the MIDDLE indicator for the NEXT NTRI stocks here:

http://finance.groups.yahoo.com/group/therumpledOne/

Look in the photo section for the NEXT NTRI ALBUM.




TheRumpledOne
6,407 posts
msg #43050
Ignore TheRumpledOne
4/18/2006 8:08:10 PM

Has anyone checked out Double Version?

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


I see lots of green this week!


stocktrader
294 posts
msg #43051
Ignore stocktrader
4/18/2006 9:46:54 PM

kliebert,

The translation of this is that one is looking for stocks that are new to being a 111 trend. For example, run the filter you cited in your post, for today. Chart AOOR. This just made a 3 step move and crossed the tcross line on the chart. Also look at the volume for today. This is a stock that I'd want to watch for an entry and the continuing of an upwards trend. AOOR could pull back after today, but it seems to have some energy behind it. Again, look at volume. Volume is very significant for today as compared to recent history. Keep an eye on this one. I sure will be looking for entry providing volume is there to drive it up.

Could AOOR be another Next NTRI.........


stocktrader
294 posts
msg #43052
Ignore stocktrader
4/18/2006 10:00:39 PM

TRO

double version......love the green.

The market was amazing today (+195 DOW)




kliebert
17 posts
msg #43058
Ignore kliebert
4/19/2006 9:51:37 AM

stocktrader,

thanks for the insight.


woodsmen63
23 posts
msg #43061
Ignore woodsmen63
4/19/2006 12:01:43 PM

The milkman always rings twice!!!!!!!!!!!!Moooooooo




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