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

Modified Ichimoku for Amibroker (AFL)
Kuncoro
about 13 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
ichimoku, amibroker

modified ichimoku

Screenshots

Similar Indicators / Formulas

Ichimoku
Submitted by kdcorp over 12 years ago
Ichimoku Cloud Charts
Submitted by Alok about 14 years ago
Correct Ichimoku chart
Submitted by kv_maligi over 11 years ago
Ichimoku with Buy & Sell
Submitted by hizari over 13 years ago
Ichimoku Complete Buy & Sell
Submitted by morgen almost 14 years ago
Ichimoku TSL V3.0 - phi1.618
Submitted by phitrade1.618 almost 11 years ago

Indicator / Formula

Copy & Paste Friendly
_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