LazyBear

Indicators: KaseCD & Kase Peak Oscillator

I have included ports of 2 indicators from MT4 (not from the original commercial source). I couldn't cross check if these matched their commercial equivalents (you need to assume they don't!). If you own any of these in other platforms, appreciate if you could publish some comparison results here.

Kase Peak Oscillator is the difference between two trend measurements, one for rising markets and the other for falling markets. KCD is the PeakOsc minus its own average. So, KPO takes the place of a traditional oscillator and the KCD takes place of the traditional MACD.

Ms.Kase claims KCD is far more accurate than MACD.

More info:
- www.kaseco.com/suppo...aces_of_Momentum.pdf
- beathespread.com/file/download/15086

Let me know if you have experience with the original indicators and are willing to help improve these clones. Thanks.

List of my free indicators: bit.ly/1LQaPK8
List of my indicators at Appstore: blog.tradingview.com/?p=970
Skrip sumber terbuka

Dalam semangat TradingView yang sebenar, penulis skrip ini telah menerbitkannya dengan menggunakan sumber terbuka supaya pedagang-pedagang dapat memahami dan mengesahkannya. Sorakan kepada penulis! Anda dapat menggunakannya secara percuma tetapi penggunaan semula kod ini dalam penerbitan adalah dikawalselia oleh Peraturan Dalaman. Anda boleh menyukainya untuk menggunakannya pada carta.

Penafian

Maklumat dan penerbitan adalah tidak dimaksudkan untuk menjadi, dan tidak membentuk, nasihat untuk kewangan, pelaburan, perdagangan dan jenis-jenis lain atau cadangan yang dibekalkan atau disahkan oleh TradingView. Baca dengan lebih lanjut di Terma Penggunaan.

Ingin menggunakan skrip ini pada carta?
//
// @author LazyBear
// If you use this code, in its original or modified form, appreciate if you could
// drop me a note. Thx. 
// 
study(title="Kase Peak Oscillator [LazyBear]", shorttitle="KPO_LB")
length=input(30, title="Length")
rwh=(high-low[length])/(atr(length)*sqrt(length))
rwl=(high[length]-low)/(atr(length)*sqrt(length))
pk=wma((rwh-rwl),3)
mn=sma(pk,length)
sd=stdev(pk,length)
v1=iff(mn+(1.33*sd)>2.08,mn+(1.33*sd),2.08)
v2=iff(mn-(1.33*sd)<-1.92,mn-(1.33*sd),-1.92)
ln=iff(pk[1]>=0 and pk>0,v1,iff(pk[1]<=0 and pk<0,v2,0))
rbars=iff(pk[1]>pk,pk,0)
gbars=iff(pk>pk[1],pk,0)
plot(rbars, style=histogram, color=red)
plot(gbars, style=histogram, color=green)
plot(ln, color=yellow, linewidth=1)