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

Ichimoku Cronex Taichi Indicator for Amibroker (AFL)
rainking
almost 5 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 2)
Tags:
amibroker, ichimoku, taichi

The Cronex Taichi Indicator is a modified version of the Ichimoku system.

Screenshots

Indicator / Formula

Copy & Paste Friendly
n1 = Param("1",9,1,200,1); 
n2 = Param("2",26,1,400,1); 
n3 = Param("3",52,1,600,1); 
TenkanSen   =(HHV(H,n1)+LLV(L,n1))/2;           
KijunSen    =(HHV(H,n2)+LLV(L,n2))/2;           
ChinkouSpan =Ref(C,-n2);                        
Cks         = Close;                             
SenkouSpanA =Ref((KijunSen+TenkanSen)/2,-n2);   
SpA         =(KijunSen+TenkanSen)/2;             
SenkouSpanB =Ref((HHV(H,n3)+LLV(L,n3))/2,-n2);   
SpB         =(HHV(H,n3)+LLV(L,n3))/2;            

Taichi=(TenkanSen+KijunSen+SenkouSpanA+SenkouSpanB)/4;
TaichiFor=(SenkouSpanA+SenkouSpanB)/2;
Signall = WMA(Taichi,n2);
SSignall = Wma(Taichi,n3);
Plot( C, "Price", colorDefault, styleCandle );
Plot(Taichi,"Taichi",colorGreen,styleLine);
Plot(TaichiFor,"TaichiFor",colorred,styleLine);
Plot(Signall,"Signal1",colorAqua,styleDashed);
Plot(SSignall,"Signal2",colorLightOrange,styleDashed);

2 comments

1. SADAI

Good indicator for confirmed trade

2. pankit

HOW TO USE IT PERFACTLY?

Leave Comment

Please login here to leave a comment.

Back