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 V2batu for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
trading system, amibroker

There is a lot of KASE CD indicator but this is improved by me little bit according to original Kase CD, this formula also Show you with blue bar if there is a peak out >stdev 1.75

Screenshots

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 over 9 years ago
Ichimoku
Submitted by prashantrdx over 9 years ago
buy and sell two EMAS
Submitted by mundo0007 almost 12 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 13 years ago
Pride System Modified
Submitted by niladri about 12 years ago

Indicator / Formula

Copy & Paste Friendly
Per1=Param("Max Length",55,2,300,1);
Per2=Param("Min Length",13,2,300,1);
RWH= RWIHi(Per2,Per1); 
RWL=RWILo(Per2,Per1); 
Pk=MA(WMA((RWH-RWL),3),3); 
KCD=Pk-MA(Pk,8); 
MN=MA(KCD,per1); 
SD=StDev(KCD,Per1); 
Val1=Max(MN+(1.75*SD),1.75*SD); 
Val2=Min(MN-(1.75*SD),-1.75*SD);  
ln3=IIf(KCD>0,Val1,Val2); 
Red=IIf(Ref(KCD,-1)>KCD,KCD,0); 
Green=IIf(KCD>Ref(KCD,-1),KCD,0); 

WriteIf( Val2>=KCD, "Writing here", "Writing here" );


Buy= IIf(KCD<Val2,Val2>=KCD-0.01,Val2>=KCD); 
Sell= IIf(KCD>Val1,KCD+0.01>=Val1,KCD>=Val1);
Plot(Red,"Red CD max"+per1+"-min"+per2,IIf(Buy,colorBlue,colorRed),styleHistogram|styleThick,Null,Null,0,1);
Plot(Green,"Green CD",IIf(Sell,colorBlue,colorGreen),styleHistogram|styleThick,Null,Null,0,1);

2 comments

1. eldertop

i must contact you for info, please provide your email in the formula or one forum nik
thanks

2. batu1453

Leave Comment

Please login here to leave a comment.

Back