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

RIGGS, another poster suggested you grow up, did you read that post?


TheRumpledOne
6,407 posts
msg #43309
Ignore TheRumpledOne
modified
4/29/2006 12:26:25 PM

Fetcher[
/* FINDING THE NEXT NTRI FILTER - for week of May 1, 2006 */

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

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

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

UpperLim above 1
LowerLim below 1

close below 15

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

add column industry

Sort column 5 descending
]



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


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

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



I will update the very first post of this thread so you can find the current version of the filter quickly since some people have decided to clog this thread.





WALLSTREETGENIUS
983 posts
msg #43311
Ignore WALLSTREETGENIUS
4/29/2006 12:32:37 PM

"RIGGS, another poster suggested you grow up, did you read that post?"
________________________

If it was one of the "clowns," then no. They are ALL on "Ignore." But on the plip side, you know you can't "Ignore" THEMIGHTYRIGGS. And maybe YOU should take that same advice Avery.....

- RIGGS -




TheRumpledOne
6,407 posts
msg #43312
Ignore TheRumpledOne
4/29/2006 12:32:40 PM

www.stockscores.com says:

Symbol |.. Last .. |.Threshold.|. Change .| Signal | Sentiment ..|

AANI ..|.. $1.07 ..|.. $1.12 ..|.. n/a ..|.. 57 ..|.. 68 ..|..
ANO ..|.. $1.18 ..|.. $1.24 ..|.. 0.01 ..|.. 73 ..|.. 74 ..|..
AOOR ..|.. $0.95 ..|.. $0.99 ..|.. -0.03 ..|.. 65 ..|.. 74 ..|..
ATAR ..|.. $0.73 ..|.. $0.77 ..|.. -0.04 ..|.. 41 ..|.. 42 ..|..
AVNX ..|.. $2.29 ..|.. $2.40 ..|.. -0.04 ..|.. 56 ..|.. 55 ..|..
AXYX ..|.. $1.20 ..|.. $1.26 ..|.. 0.04 ..|.. 77 ..|.. 71 ..|..
BPUR ..|.. $1.24 ..|.. $1.30 ..|.. n/a ..|.. 63 ..|.. 66 ..|..
CAMH ..|.. $2.91 ..|.. $3.06 ..|.. 0.16 ..|.. 73 ..|.. 68 ..|..
CBAY ..|.. $0.19 ..|.. $0.20 ..|.. -0.01 ..|.. N/A ..|.. N/A ..|..
CHTR ..|.. $1.18 ..|.. $1.24 ..|.. n/a ..|.. 51 ..|.. 39 ..|..
CYTR ..|.. $1.69 ..|.. $1.77 ..|.. 0.03 ..|.. 64 ..|.. 62 ..|..
DCNAQ .|.. $1.95 ..|.. $2.05 ..|.. n/a ..|.. 40 ..|.. 40 ..|..
DPBM ..|.. $0.16 ..|.. $0.17 ..|.. 0.01 ..|.. N/A ..|.. N/A ..|..
DVW ..|.. $2.51 ..|.. $2.64 ..|.. -0.06 ..|.. N/A ..|.. N/A ..|..
DYMTF..|.. $1.55 ..|.. $1.63 ..|.. -0.03 ..|.. 73 ..|.. 66 ..|..
EZM ..|.. $2.28 ..|.. $2.39 ..|.. -0.03 ..|.. 58 ..|.. 65 ..|..
FMXIQ .|.. $3.28 ..|.. $3.44 ..|.. 0.91 ..|.. 2 ..|.. 10 ..|..
GNBT ..|.. $2.66 ..|.. $2.79 ..|.. -0.01 ..|.. 60 ..|.. 63 ..|..
GV ..|.. $1.83 ..|.. $1.92 ..|.. 0.04 ..|.. 71 ..|.. 73 ..|..
IDWD ..|.. $1.05 ..|.. $1.10 ..|.. 0.22 ..|.. N/A ..|.. N/A ..|..
IESRQ..|.. $1.35 ..|.. $1.42 ..|.. 0.04 ..|.. 90 ..|.. 77 ..|..
IIP ..|.. $1.31 ..|.. $1.38 ..|.. 0.01 ..|.. 71 ..|.. 73 ..|..
IVAN ..|.. $2.83 ..|.. $2.97 ..|.. 0.04 ..|.. 69 ..|.. 61 ..|..
MNEAF..|.. $1.16 ..|.. $1.22 ..|.. 0.05 ..|.. 86 ..|.. 67 ..|..
MZT ..|.. $1.33 ..|.. $1.40 ..|.. 0.11 ..|.. 86 ..|.. 72 ..|..
NSOL ..|.. $1.33 ..|.. $1.40 ..|.. 0.22 ..|.. 66 ..|.. 58 ..|..
NXXI ..|.. $2.56 ..|.. $2.69 ..|.. -0.03 ..|.. 70 ..|.. 70 ..|..
OTD . .|.. $1.87 ..|.. $1.96 ..|.. 0.05 ..|.. 59 ..|.. 53 ..|..
PPHM ..|.. $1.39 ..|.. $1.46 ..|.. -0.03 ..|.. 76 ..|.. 63 ..|..
PRTL ..|.. $0.82 ..|.. $0.86 ..|.. 0.11 ..|.. 50 ..|.. 33 ..|..
PTSC ..|.. $1.07 ..|.. $1.12 ..|.. -0.06 ..|.. 18 ..|.. 17 ..|..
STTK ..|.. $0.48 ..|.. $0.50 ..|.. 0.06 ..|.. 50 ..|.. 52 ..|..
SVVS ..|.. $1.87 ..|.. $1.96 ..|.. -0.05 ..|.. 71 ..|.. 72 ..|..
TGB ..|.. $3.40 ..|.. $3.57 ..|.. 0.17 ..|.. 68 ..|.. 68 ..|..
TGC ..|.. $1.77 ..|.. $1.86 ..|.. 0.18 ..|.. 70 ..|.. 72 ..|..
XSNX ..|.. $1.87 ..|.. $1.96 ..|.. 0.03 ..|.. 71 ..|.. 63 ..|..
ZENX ..|.. $1.55 ..|.. $1.63 ..|.. -0.04 ..|.. 55 ..|.. 66 ..|..
ZP ..|.. $1.99 ..|.. $2.09 ..|.. -0.04 ..|.. 58 ..|.. 55 ..|..




alf44
2,025 posts
msg #43502
Ignore alf44
modified
5/5/2006 3:24:29 PM

First, I must confess I haven't been following this thread closely...I also have not really spent much time examining the TRO filters included herein.

But, it occurs to me that...if someone "really wants to find the next NTRI"...as the thread name suggests...

...you need to consider the FLOAT !

Now...I realize we can't scan for "float" here at SF...but we can scan for "Shares Outstanding" which is at least a start.

If you look at a lot of these stocks that have had HUGE ongoing moves...stocks like...

... NTRI, HANS, CME, ICE, ISRG, TZOO, STLD, PEIX, FCL ...and some others...

...one thing they all have in common is a relatively small number of "Shares Outstanding" !

Like under 50 Million !

In fact, most all of those just named above are under 25 Million Shares Outstanding !

Just an observation...


Regards,

alf44



TheRumpledOne
6,407 posts
msg #43506
Ignore TheRumpledOne
5/5/2006 4:27:30 PM

You gave me an idea, alf:

set{InPlay, volume / shares outstanding}

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


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

/* enter your Lower Limit criteria */
set{LowerLim, Low 19 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{InPlayVol, volume / 10000 }
set{InPlayPct, InPlayVol / shares outstanding}

/* 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 InPlayPct
and add column shares outstanding

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
]




InPlayPct is the percentage of the shares outstanding traded.




alf44
2,025 posts
msg #43512
Ignore alf44
modified
5/6/2006 1:37:38 AM

...so...

...I "gave you an idea" huh ???

Well, if I can give you about a thousand MORE ideas...we might be close to even !

Keep up tha good work, Rumple !!!

Always pushing the "SF envelope"...as it were.



Regards,

alf44


PS. Don't underestimate the small "float" (ie. "shares outstanding"...sorta) in some of these stocks that have been on a tear !

It's simple "Supply and Demand" at work !!!



kliebert
17 posts
msg #43517
Ignore kliebert
5/6/2006 10:01:25 AM

Tro,

set{InPlayVol, volume / 10000 }
set{InPlayPct, InPlayVol / shares outstanding}

Why are you dividing by 10,000?




TheRumpledOne
6,407 posts
msg #43522
Ignore TheRumpledOne
5/6/2006 7:48:45 PM

kliebert
- Ignore kliebert 5/6/2006 10:01:25 AM

Tro,

set{InPlayVol, volume / 10000 }
set{InPlayPct, InPlayVol / shares outstanding}

Why are you dividing by 10,000?
==============================================

I wanted to calculate percentage.

Shares outstanding is expressed in millions.

So I would have to divide Volume by 1,000,000.

To get percentage, I would then have to multiply Volume/shares outstanding by 100.

So, to save a step, I divided 1,000,000 by 100 which results in 10,000:

A = volume / 1000000
B = shares outstanding
C = A/B
Pct = C * 100

So Pct = A/B * 100 = (( volume / 1000000 ) / shares outstanding) * 100

HTH.




kliebert
17 posts
msg #43524
Ignore kliebert
5/6/2006 7:55:29 PM

Thanks TRO


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