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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Modified Ichimoku for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
ichimoku, amibroker
modified ichimoku
Screenshots
Similar Indicators / Formulas
Ichimoku Cloud Charts
Submitted
by Alok about 15 years ago
Correct Ichimoku chart
Submitted
by kv_maligi over 12 years ago
Ichimoku with Buy & Sell
Submitted
by hizari over 14 years ago
Ichimoku Complete Buy & Sell
Submitted
by morgen about 15 years ago
Ichimoku TSL V3.0 - phi1.618
Submitted
by phitrade1.618 almost 12 years ago
Indicator / Formula
Copy & Paste Friendly
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | _SECTION_BEGIN ( "ichimoku" ); GraphXSpace =1; Plot ( C , "Close" , IIf ( C > O , colorBrightGreen , IIf ( C < O , colorOrange , colorLightYellow )), styleNoTitle | ParamStyle ( "Price Style" , styleCandle ,maskPrice)); prds = Param ( "Standard Line Periods?" , 13,5,26,1); prds1 = Param ( "Turning Line Periods?" , 3,3,10,1); prds2 = Param ( "Delayed Line Periods?" , 12,4,25,1); prds3 = Param ( "Spans Periods?" , 16,10,52,1); prds4= Param ( "Period" ,20,10,30,1); TL = ( HHV ( H , prds1) + LLV ( L , prds1) )/2; SL = ( HHV ( H , prds) + LLV ( L , prds) )/2; DL = Ref ( C , prds2); Sp1 = Ref ( ( SL + TL )/2, -prds2); Sp2 = Ref ( ( HHV ( H , prds3) + LLV ( L , prds3))/2, -prds2); A1= EMA ( C ,13)- EMA ( C ,26); Color1= IIf (a1<0 AND a1> Ref (a1,-1), colorGreen , IIf (a1>0 AND a1> Ref (a1,-1), colorBrightGreen , IIf (a1>0 AND a1< Ref (a1,-1), colorOrange , colorRed ))); PlotOHLC (Sp1,Sp1,Sp2,Sp2, "Cloud" , IIf (Sp1>Sp2, ParamColor ( "Span1 Color" , colorBrightGreen ), ParamColor ( "Span2 Color" , colorOrange )), styleCloud ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back