StockFetcher Forums · Filter Exchange · Who really wants to find the next NTRI?<< 1 ... 15 16 17 18 19 ... 31 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #42798
Ignore TheRumpledOne
4/6/2006 11:22:09 PM

kanuk
- Ignore kanuk 4/6/2006 8:15:16 PM

TRO:
In your comments from your entry on 3/20/2006 1:52:38 PM you recommend looking to buy UPTRENDING stocks that have bottomed in the WARM display. Do you have a fixed value, say 10 or 20, for the 4 indicators that make up WARM. If so, rather than adding the 4 columns that make up WARM, the coding could be modified to display the WARM value - that would say it all.
=============================================================================

Fixed value? NO.

WARM:

W - Williams %R(10)

A - Accumulation/Distribution A/D

R - RSI(2)

M - Momentum(12)

These values are normalized so they all will be on a scale of 0 - 100.

There is more than one way to use the filter display.

If you see all four WARM components at/near 0 then the stock is bottoming.

Also if either Momentum OR A/D is bottoming and the other indicators are heading north, that's a good entry too.

RIGGS likes A/D > 70 and the other three < 30.

The WARM FILTER is NOT a filter per se, it's a way of displaying the data so you can use it in comparisons.

And the WARM FILTER DISPLAY produced the ZOOM LENS where you can compare/display the same indicator from different periods.

HTH.


as214
184 posts
msg #42835
Ignore as214
4/8/2006 6:16:08 PM

I doubt most short term traders would have the patience to hold HANS, or NTRI, or TIE.. Vector Vest got me into TIE at 11, it is excellent for low priced longer term holds.


stocktrader
294 posts
msg #42837
Ignore stocktrader
4/8/2006 7:31:40 PM

Question: What is the best filter on the SF site?

Answer: The Next NTRI filter!

In 4 weeks I've made some $16,000 from this filter.

This was accomplished by TRADING, as TRO says.
I think TRO may be right.....NXXI may be the next NTRI

I've traded NXXI several times.

Here is a zip/pdf of my trading platform showing NXXI.
I closed all 3 positions shown in this pdf right after the screen shot, making for a very nice weekend and a fresh start for Monday.

http://www.loombo.com/dl/6119

Many thanks again to TRO for his incredible insight into trading and filters!
I can not say enough good things about TRO. An incredible asset to the trading community.


stocktrader
294 posts
msg #42841
Ignore stocktrader
4/8/2006 11:36:15 PM

Here's the filter I've been using.

It's pretty hacked up.....hoping TRO won't scold me...

One of the things I'm looking for on the t123 chart is for a crossing of tcross in a 3-step move. This is the signal to watch for the stock to start in an upwards thrust.....oh, and let's not forget volume.

Fetcher[/* FINDING THE NEXT NTRI FILTER */

/* TREND DISPLAY */

set{T03, count(3 day slope of the close above 0,1)}
set{T05, count(5 day slope of the close above 0,1)}
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{V10, count(average volume(3) below volume,1)}
set{V60, count(average volume(15) below volume,1)}
set{V200, count(average volume(30) below volume,1)}

Set{av1, V200 * 1}
Set{av2, V60 * 10}
Set{av3, V10 * 100}

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

Set{et1, T10 * 1}
Set{et2, T05 * 10}
Set{et3, T03 * 100}
Set{etzenith,50}

Set{t1, T200 * 100}
Set{t2, T60 * 100}
Set{t3, T10 * 100}
Set{t12, t1 + t2}
Set{t123,t12 + t3}

Set{v1, V200 * 100}
Set{v2, V60 * 100}
Set{v3, V10 * 100}
Set{v12, v1 + v2}
Set{v123,v12 + v3}

Set{aa, a1 + a2}
Set{TREND, aa + a3}

Set{aav, av1 + av2}
Set{TRENDV, aav + av3}

Set{et, et1 + et2}
Set{TRENDE, et + et3}
set{T03a,days(3 day slope of the close below 0, 100)}
set{T05a,days(5 day slope of the close below 0, 100)}
set{T10a,days(10 day slope of the close below 0, 100)}

Draw Chaikin's Money Flow(8)

draw T03a
draw T05a on plot T03a
draw T10a on plot T03a
draw etzenith on plot T03a

/* dvpct - percentage dollar volume increased(+)/decreased(-) */

set{dv1, close 1 day ago * volume 1 day ago }
set{dv, close * volume }
set{netdvchg, dv - dv1}
set{dvpc, netdvchg / dv1 }
set{dvpct, dvpc * 100}

/* valchg - percentage value increased(+)/decreased(-) */

set{netchg, close - close 1 day ago}
set{CCC, netchg / close 1 day ago}
set{VVV, volume / volume 1 day ago}
set{CCCVVV, CCC * VVV}
set{valchg, CCCVVV * 100 }

Set{tcross,250}
Set{tzenith,400}
Set{tnadir,-100}

Set{vcross,250}
Set{vzenith,400}
Set{vnadir,-100}

add column average volume(90)
ADD COLUMN TREND
add column TRENDV
add column TRENDE
add column dvpct
add column valchg

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

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

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

set{PPDiffH, UpperLim - Close}
set{PPDivH, PPDiffH / Close}
set{BallOnH, PPDivH * 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 BallOnH
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 */

and draw UpperLim on plot price
and draw LowerLim on plot price

and draw t123
and draw tcross on plot t123
and draw tzenith on plot t123
and draw tnadir on plot t123

and draw v123
and draw vcross on plot v123
and draw vzenith on plot v123
and draw vnadir on plot v123

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

and ADD COLUMN T03a
and ADD COLUMN T05a
and ADD COLUMN T10a

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

and add column clxcl
and add column VlXvl
and add column Vdbl

and add column HixHi
and add column LoxLo

and add column Bullpower
and add column Bearpower
and add column BLxBL
and add column BRxBR

/* Selection Criteria */

and do not draw trend
and do not draw trendv

and market is not OTCBB

and UpperLim above .5
and LowerLim below 1.5

and close is between 0.5 and 4

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

add column industry

and Sort column 6 descending

and chart-length is 5 months
]




TheRumpledOne
6,407 posts
msg #42845
Ignore TheRumpledOne
4/9/2006 1:12:48 PM

stocktrader
- Ignore stocktrader 4/8/2006 11:36:15 PM

Here's the filter I've been using.

It's pretty hacked up.....hoping TRO won't scold me...

One of the things I'm looking for on the t123 chart is for a crossing of tcross in a 3-step move. This is the signal to watch for the stock to start in an upwards thrust.....oh, and let's not forget volume.
===============================================================================

You're making money.

Why would I scold you?

Even if I did, why would you care?

YOU'RE MAKING MONEY!

That't the whole point of trading.

Nice work!!



stocks1984
4 posts
msg #42848
Ignore stocks1984
4/9/2006 2:22:03 PM

my question for you rumple is that with the sub penny filter, what exactly do you look for regarding the data you provided with return results, when buying a stock based on your Sub penny filter? I am new to stockfetcher and have read many of your posts over filters that you have created. They seem to be well organized to the tee and when the results pull up i noticed many stocks that i have been following are on this scan. Now that im playing the sub penny broads. I am using your sub penny filter scan. If you get this message before Mondays trading close please look at the results for April 7th. If you have time could you please explain which indicators of the scans that you provided in your sub penny filter, which you look at for potential profit results. Thank and good luck to you all in your trading!


stocks1984
4 posts
msg #42849
Ignore stocks1984
4/9/2006 2:39:24 PM

Or do you have another sub penny filter that you know of that gives you results for the short term or a potential breakout for the week? just curious thanks again


kanuk
32 posts
msg #42850
Ignore kanuk
4/9/2006 4:59:39 PM

TRO:
What is the reason you use a 3,5 and 10 day trend for the DIME version of NTRI and a 10,60 and 200 day trend for the 'regular' version of NTRI. I suspect it's because of the volatility of dime stocks. Am I correct?


stocktrader
294 posts
msg #42851
Ignore stocktrader
4/9/2006 7:37:50 PM

TheRumpledOne 4/9/2006 1:12:48 PM
You're making money.
Why would I scold you?
Even if I did, why would you care?
YOU'RE MAKING MONEY!
That't the whole point of trading.
Nice work!!

----------

lol! :)
Thanks.



stocktrader
294 posts
msg #42852
Ignore stocktrader
4/9/2006 7:47:39 PM

It also should be noted (if it has not been already) that the Next NTRI is a nice SHORT filter.
I used it once for SHORTing and had nice results (CASH). Just watch that WARM display.


StockFetcher Forums · Filter Exchange · Who really wants to find the next NTRI?<< 1 ... 15 16 17 18 19 ... 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.