StockFetcher Forums · Filter Exchange · Who really wants to find the next NTRI?<< 1 2 3 4 5 ... 31 >>Post Follow-up
TheRumpledOne
6,529 posts
msg #41347
Ignore TheRumpledOne
modified
2/18/2006 11:00:32 PM

Fetcher[
/* Dollar stocks Dynamic Support/Resistance with TRADE PLANNER DISPLAY */

/* PRICE POSITION PERCENT DISPLAY */

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

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

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}

/* column display */

add column HiOp
add column OpLo

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

/* PLOTS */

draw UpperLim on plot price
draw LowerLim on plot price

/* Trade Planner Filter Display - Simple */

set{ iAccountSize , 25000 }
set{ iPercentRisk, .02}
set{ iMarginMult , 1}
set{ iMaxDrawDownPct, .05}
set{ iEntryPrice , close}

set{ iShares, 0 }
set{ iProtectiveStop , 0}

set{ iTargetPrice , 0}
set{ iRewardRatio , 2}

set{ xMaxDollars, iAccountSize * iMarginMult }

set{ xTradeRisk, xMaxDollars * iPercentRisk }

set{ xShares , xMaxDollars / iEntryPrice }

set{ xShareRisk , xTradeRisk / xShares }

set{ xStop , iEntryPrice - xShareRisk }

set{ xtp, xShareRisk * iRewardRatio }
set{ xTarget , xtp + iEntryPrice }

add column xShares
add column xStop
add column xTarget
add column xTradeRisk

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 5

avg vol(5) above 1000000
avg vol(30) above 1000000

add column industry

Sort column 7 ascending
]



Changed the 8 to 9 in the following lines:

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

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

Will increment each week.

I added the BULLPOWER and BEARPOWER columns.

BLxBL column shows days BULLPOWER has increasing/decreasing.

BRxBR column shows days BEARPOWER has increasing/decreasing.

MAY ALL YOUR FILLS BE COMPLETE.





TheRumpledOne
6,529 posts
msg #41351
Ignore TheRumpledOne
2/18/2006 11:18:24 PM

Fetcher[
/* Dollar stocks Dynamic Support/Resistance with TRADE PLANNER DISPLAY */

/* PRICE POSITION PERCENT DISPLAY */

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

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

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}

/* column display */

add column HiOp
add column OpLo

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

/* PLOTS */

draw UpperLim on plot price
draw LowerLim on plot price

/* Trade Planner Filter Display - Simple */

set{ iAccountSize , 25000 }
set{ iPercentRisk, .02}
set{ iMarginMult , 1}
set{ iMaxDrawDownPct, .05}
set{ iEntryPrice , close}

set{ iShares, 0 }
set{ iProtectiveStop , 0}

set{ iTargetPrice , 0}
set{ iRewardRatio , 2}

set{ xMaxDollars, iAccountSize * iMarginMult }

set{ xTradeRisk, xMaxDollars * iPercentRisk }

set{ xShares , xMaxDollars / iEntryPrice }

set{ xShareRisk , xTradeRisk / xShares }

set{ xStop , iEntryPrice - xShareRisk }

set{ xtp, xShareRisk * iRewardRatio }
set{ xTarget , xtp + iEntryPrice }

add column xShares
add column xStop
add column xTarget
add column xTradeRisk

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 4
LowerLim below 2

close below 5

avg vol(5) above 1000000
avg vol(30) above 1000000

add column industry

Sort column 7 ascending
]



Variation:

UpperLim above 4
LowerLim below 2





TheRumpledOne
6,529 posts
msg #41433
Ignore TheRumpledOne
2/20/2006 8:45:43 PM

Got this in my inbox today:


02/20/06
An energizing opportunity

As the editor of two popular financial newsletters, BreakAway Investor and Volume Spike Alert, I’m on the phone a lot. More often than not, the calls are trivial and mundane. Let’s face it, corporate finance is not the most exciting stuff. But I have to do what it takes to get to the bottom of the story and uncover the true profit potential.

Every once in a while, I make a call that stands far beyond the rest. One of my most remarkable calls occurred just the other day when I had a nice long chat with the CEO of a very innovative and industry-changing company.

Few people strike me as having true genius-level status. Without a doubt this guy does. He’s in charge of a small, US$140 million company that is about to set a hundred-billion dollar industry on fire.

In fact, this CEO is so smart that the product he developed recently won the 2005 World Technology Award. To the average person, that may sound like some ordinary feat. To savvy investors, it’s the sound of a cash register ringing up huge profits.

This CEO knows it. And after our conversation, I know it. You see, the previous winners of this award – companies like IBM, Apple Computer, and Qualcomm – have gone on to huge things. In fact, most of the previous winners have gone on to earn their shareholders gains of over 1,000%. No, that’s not a typo.

To say the least, the man I chatted with is more than excited. In just a few months, when this company’s shares start soaring, he’s going to be much richer. Just like past winners of the World Technology Award, his company is going to become a household name.

So, what does this company do? In a nutshell, its saves companies huge amounts of money. How does it do it? By drastically cutting their energy bills.

The same guy that I spent a good chunk of my day talking to invented a clear film that can be invisibly installed on regular, run-of-the-mill windows and instantly turn them into highly-efficient solar panels. Imagine every window in an office building, quietly and efficiently producing electricity.

With prices soaring, everybody who has ever paid an outrageous energy bill is going to be pushing and shoving to get their hands on this technology. This technology is having such an impact on the industry that experts are now saying this kind of power generation could be a true competitor for natural gas-fired electric generation in the next few years.

That’s huge. And for this company, it spells big things. It’s time to get in on this rare investment.

Fortunately, if I ever need to chat with the CEO of this company again, I’ve got his cell phone number at the top of my address book. He’s going to be a great connection as this company grows to be a national leader.

I’ve got a lot more important details about this revolutionary company and its ingenious CEO, so I’ve written a full report on my findings. It’s just about finished, but I’m awaiting confirmation of a few more details.

Once I get what I want, and am positive this is the absolute best time to get in on this company, I will make sure Fear and Greed readers get their shot at this once-in-a-lifetime opportunity. Look for it later this week. Then you’ll be able to brag to your friends that you heard about this company first, before it was big and expensive.

Enjoy your President’s Day.


Andrew Snyder

Editor, BreakAway Investor



TheRumpledOne
6,529 posts
msg #41457
Ignore TheRumpledOne
2/21/2006 2:06:36 PM

www.stockscores.com


Symbol Last Threshold Change Signal Sentiment Delete
ATAR $0.90 $0.93 0.04 39 32
AVNX $1.27 $1.34 -0.05 59 68
CWPC $4.70 $4.94 0.13 53 57
DEZ $4.32 $4.54 0.16 67 62
DOIG $2.40 $2.25 0.06 71 62
DVW $1.24 $1.30 n/a N/A N/A
GNBT $1.80 $1.61 0.18 98 81
IVAN $2.72 $2.56 0.28 98 69
OWENQ $1.90 $2.00 -0.03 56 61
PPHM $1.47 $1.46 0.01 73 68
PRTL $0.88 $0.99 0.01 65 53
TGB $1.97 $1.89 0.06 74 69
XSNX $1.35 $1.20 0.09 55 56







oldsmar52
104 posts
msg #41465
Ignore oldsmar52
2/21/2006 7:34:48 PM

I'll help if you want to assign me something to do once a week or however often it needs to be done.
Frank


TheRumpledOne
6,529 posts
msg #41478
Ignore TheRumpledOne
2/22/2006 1:20:04 AM

If anyone wants to help, then simply post anything you feel would be helpful about the stocks that the filter selects.

Information like insider trades, lawsuits, FDA approvals, earnings, news, institutional activity, etc...

I think the best way to "find" the next NTRI is to get "free" shares of each one the stocks listed and just trade them in/out with compounding and not missing a move.

Of course, I'll be using RSI(2) and the WARM DISPLAY to time the selling of my free shares.

MAY ALL YOUR FILLS BE COMPLETE.




TheRumpledOne
6,529 posts
msg #41480
Ignore TheRumpledOne
modified
2/22/2006 1:28:07 AM

SUWN was added to the list today... Dang, should of found that one at .30!!

Sunwin International Neutraceuticals, Inc. (www.sunwin.biz), headquartered in Qufu, in the Shandong Province of the People's Republic of China, is a diversified nutraceutical company engaged in the development, manufacturing and international sale of a variety of health products for humans and animals. The Company's agricultural processing expertise and convenient access to raw materials in select Chinese farmlands result in high-quality and cost-effective natural products that straddle the healthcare industry and the food & beverage marketplace. Products offered by the Company include a powerful low-calorie natural sweetener called stevioside, numerous herbal extracts rooted in traditional Chinese medicine (TCM), as well as a variety of veterinary medicines and feed supplements. Their innovative nature has in recent years earned state-level recognition and several industry awards for the Company. For the fiscal year ended April 30, 2005, the Company's revenues rose 11.3% to $12.1 million, and the net income increased 78% to $829,114, or $.02 per share. In the first six months of fiscal 2006 ended October 31, 2005, total revenues climbed 11.8% to $7,223,971, from $6,458,285 in comparable period in the previous year. Last September, the Company completed an upgrade and expansion of most of its manufacturing facilities, which not only increased stevioside production capacity to 300 tons per year, or a double-digit percentage share of the global demand, but also fulfilled GMP requirements mandated since the beginning of 2006 by the central government on producers of Chinese herb and veterinary medicines. Trading on the OTC Bulletin Board under the symbol SUWN, the Company is well positioned to immediately capitalize on the temporary competitive advantage resulting from the GMP certification and benefit from the overall growing health concerns among consumers globally, increasing popularity of organic foods and medicines, and the strong condition of the Chinese economy.


TheRumpledOne
6,529 posts
msg #41488
Ignore TheRumpledOne
2/22/2006 8:54:07 AM

UDSG did NOT come off the filter but Holy Cow last month was .50 now $4.00!!




TheRumpledOne
6,529 posts
msg #41510
Ignore TheRumpledOne
2/22/2006 8:03:54 PM

Picked up some more "free" shares of XSNX today when they dumped it this morning.

Is anyone else trading this method?


TheRumpledOne
6,529 posts
msg #41531
Ignore TheRumpledOne
2/23/2006 8:23:46 PM

I am really liking the way these stocks behave when the BALLON column is low!!




StockFetcher Forums · Filter Exchange · Who really wants to find the next NTRI?<< 1 2 3 4 5 ... 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.