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 Clone _ V2 for Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
amibroker

I have worked out some issues that I found on the code posted by kajii, regarding the construction of the Kase CD Clone.
This shows better results compared with the original indicator.

regards.

Screenshots

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez almost 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn over 12 years ago
3_6Day GuaiLiLv
Submitted by motorfly over 12 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago
Horizontal Live Priceline Tool
Submitted by northstar over 12 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Kase CD Clone_V2");


SetChartOptions(0,chartShowArrows|chartShowDates);
SetChartBkColor(ParamColor("Outer Panel",colorPaleBlue)); 
SetChartBkGradientFill(ParamColor("Upper Chart",1),ParamColor("Lower Chart",1),ParamColor("Titleblock",colorLightGrey)); 

Xpo = 50 *(MA(RWIHi(8,65),3) - MA(RWILo(8,65),3));
KCD = Xpo - MA(Xpo,8);

Plot(KCD, "Kase CD Clone", IIf(KCD > 0,colorGreen,colorRed),styleHistogram);
Plot(KCD, "", colorGrey50,styleThick);

_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back