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: Alan_C who wrote (8708)2/21/1999 5:54:00 PM
From: Richard Estes  Respond to of 11149
 
CCI is to me more of a overbought/oversold indicator, not a measure of momentum. it is not the type indicator to concern the max or min of pivot points. ROC might give you a better picture.

In the futureI am sure Gary will include many additional features.



To: Alan_C who wrote (8708)2/21/1999 6:03:00 PM
From: Craig DeHaan  Read Replies (2) | Respond to of 11149
 
Alan,

Maybe Sean can speed shift this one into the 21st century;
something I was fumbling with last night to rig around a
nontoken status based on his Max/Min scan. Don't try running
this if you need results in < 6 hours. But we know Gary will
offer more than token solutions in future program incarnations.

Craig

// High CCI21 w/ Price Divergence
exchange = nyse, amex, nasdaq;
output = "CCImax.lst";

//input="250vol.lst";
// ProcessMS = "d:metav\hiCCI\",VMS;

daystoload = 2200;
daysrequired =30;

Integer numdays,i,minDate, maxDate, maxCCIDate;
float maxHi, maxCCI;

numdays:=((DaysLoaded-1)*-1);

set CCI = 21;
maxHi:= max(0, numdays, cl);

maxCCI := 0;
maxCCIDate :=0;
maxDate := 0;

for i=numdays to 0 step 1 do
if cci(i) > maxCCI then
maxCCI := cci(i);
maxCCIDate := i;
//i:=0;
endif;
next i;

for i=numdays to 0 step 1 do
if close(i) >= maxHi then
maxHi := close(i);
maxDate := i;
i:=0;
endif;
next i;

for i=-10 to 0 step 1 do
If CCI(i)>=MaxCCI and
close(MaxCCIDate)< close(maxDate)*.66 then

Println Symbol:-5,",","cl:0",",",close(0):6:2,",","Max",","
,close(maxDate):6:2,",MaxDate,",Date(maxDate),
"," ,"MaxCCI", "," ,CCI(MaxCCIDate):6:2, "," ,"Close"
, "," ,close(MaxCCIDate), "," ,Date(MaxCCIDate);

endif;
next i;



To: Alan_C who wrote (8708)2/22/1999 4:42:00 AM
From: Michael Quarne  Read Replies (1) | Respond to of 11149
 
HI Alan,

Not sure what you mean by Parabolic in this use?
Could you define that term more closely?

Mike