SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : TA-Quotes Plus -- Ignore unavailable to you. Want to Upgrade?


To: Craig DeHaan who wrote (8758)2/24/1999 4:03:00 AM
From: Doug R  Read Replies (3) | Respond to of 11149
 
FER CRYIN' OUT LOUD YOU GUYS!!!!!

I worked the darn CCI screaming intermediate term buy signal out on my own for the last 4 months!!!!!! I don't do it with all the confounded automation you guys use BUT I know it's a killer signal. Geez...

Doug R



To: Craig DeHaan who wrote (8758)2/24/1999 4:08:00 AM
From: Bob Jagow  Respond to of 11149
 
Craig,
As I said, this one is with tbar = 84 (4 months).
The only filters are minPr = 2, minVol = 25000, and maxCCI > 100.

One fatal flaw in your #s would be the inability to meet a margin call if a stock drops to zero before its big pop.
I am rerunning the scan with minpostCl/minGainBar added for your perusal.
Would be interesting to try a system test with an intraday SAR exit.
-buy at open?
-sell stop 5% below cost?

Bob
------------
if close(tbar) >= minPr and MovAvg(tbar, 30, vol) >= minVol then
maxCl := max(tbar, firstday, cl);
maxCCI := -999;
for i= tbar to tbar - 9 step -1 do
if cci(i) > maxCCI then
maxCCI := cci(i);
maxCCIbar := i;
endif;
next i;
printflag := 0;
if maxCCI > 100 and close(maxCCIbar) < .66*maxCl then