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

KAJE EMA combination for Amibroker (AFL)

Rating:
2 / 5 (Votes 3)
Tags:
moving average, EMA, trading system, amibroker

This is Best EMA combination that i’have being used till now. Hope you enjoy and good luck for your trading.

Indicator / Formula

Copy & Paste Friendly
// Plot Price
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
_SECTION_END();

// EMA 3 dan EMA 9
_SECTION_BEGIN( "EMA Short" );
P_EMAShort = ParamField( "Price field", -1 );
Plot( EMA_Short = EMA( P_EMAShort, 3), "Short EMA", ParamColor( "Color", colorRed ), ParamStyle( "Style") );
_SECTION_END();

_SECTION_BEGIN( "EMA Long" );
P_EMALong = ParamField( "Price field", -1 );
Plot( EMA_Long = EMA( P_EMALong, 9 ), "Long EMA", ParamColor( "Color", colorBlue ), ParamStyle( "Style")  );
_SECTION_END();

_SECTION_BEGIN( "Arrow" );
Sinyalbuy= Cross( EMA_Short, EMA_Long );
Sinyalsell = Cross( EMA_Long, EMA_Short );

// Plot Garis Break
GarisHighest = Ref(HHV(C,5),-1);
GarisLowest = Ref(LLV(C,5),-1);

// Syarat Likuid
H_Rata2 = (O+H+L+C)/4 ;
Value = H_Rata2 * Volume;
Likuid = MA(Value,20) > 3500000000 ;

// Syarat Buy - Sell
Buy = EMA_Short > EMA_Long AND C > GarisHighest AND Likuid;
Sell = EMA_Short < EMA_Long AND C < GarisLowest;

// Menghilangkan kelebihan Sinyal
Buy  = ExRem (Buy,Sell);
Sell = ExRem (Sell,Buy);

// Buat Sinyal Buy - Sell
PlotShapes(IIf(Buy,shapeSmallUpTriangle,Null), colorBlue, 0, L, -15);
PlotShapes(IIf(Sell,shapeSmallDownTriangle,Null), colorRed, 0, H, -15);

1 comments

1. pras2006

how does one trade it ?

Pras

Leave Comment

Please login here to leave a comment.

Back