Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Kase CD by Cynthia Kase for Metastock
kaiji
over 14 years ago
Metastock

Rating:
5 / 5 (Votes 1)
Tags:
metastock, histogram

The KaseCD is a sensitive, second derivative indicator, the derivative of the PeakOscillator. It is calculated in the same way as the MACD histogram is calculated from a moving average oscillator. That is, it is the difference between the PeakOscillator and the average of the PeakOscillator, where the MACD is the difference between an exponential moving average oscillator and its average. However, because its basis is statistical, it generates cleaner crossover signals and more reliable divergences.

Interpretation:

The KaseCD is used two ways.

Divergence — The KaseCD is used as a confirming divergence indicator. Its use is primarily to confirm, as it is more sensitive than the PeakOscillator and will generate divergences for minor turns and corrections.

Peak — The second use is to look for a KCDPeak. A KCDPeak occurs when the histogram breaks beyond 1.75 standard deviations of the average KXCD value over the last 55 bars. A KCDPeak will be labeled KCD on the chart.

At right: KCD divergences confirming PeakMins and PeakOscillator divergence

Source: http://trader.online.pl/MSZ/e-w-Kase_CD.html

Similar Indicators / Formulas

Ortalama fiyat degiskenligi gostergesi
Submitted by tasma about 12 years ago
Adaptive Wilders Smoothing
Submitted by aashish51 about 12 years ago
O.B.V. Good example of if() func
Submitted by karim.chakib over 10 years ago
Cycle Indicator by Bill Irwin
Submitted by roszyk about 13 years ago
Flat Market Indicator (FMI)
Submitted by chsmcp about 11 years ago
Price Action Indicator (PAIN)
Submitted by star123 over 13 years ago

Indicator / Formula

Copy & Paste Friendly
Per1:=Input("max length",1,100,8);
RWH:=(H-Ref(L,-Per1))/(ATR(Per1)*Sqrt(Per1));
RWL:=(Ref(H,-Per1)-L)/(ATR(Per1)*Sqrt(Per1));
Pk:=Mov(Mov((RWH-RWL),3,W),3,S);
KCD:=PK-Mov(PK,8,S);
MN:=Mov(KCD,Per1,S);
SD:=Stdev(KCD,Per1);
Val1:=If(MN+(1.33*SD)>2.08,MN+(1.33*SD),2.08);
Val2:=If(MN-(1.33*SD)<-1.92,MN-(1.33*SD),-1.92);
LN:=If(Ref(KCD,-1)>=0 AND KCD>0,Val1,If(Ref(KCD,-1)<=0 AND
KCD<0,Val2,0));
Red:=If(Ref(KCD,-1)>KCD,KCD,0);
Green:=If(KCD>Ref(KCD,-1),KCD,0);
Red;Green;LN;

0 comments

Leave Comment

Please login here to leave a comment.

Back