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

EMA Cross for Amibroker (AFL)

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

Ema cross buy and sell for intraday trading with exploration and alerts.

Similar Indicators / Formulas

Guppy Ultimate
Submitted by cnbondre over 13 years ago
Advanced MA system
Submitted by kazul almost 14 years ago
Triangular Moving Average
Submitted by amruta almost 14 years ago
GMMA-With indicator
Submitted by cnbondre almost 14 years ago
OPENING RANGE BREAK-OUT
Submitted by cnbondre almost 14 years ago
Yasu With BB
Submitted by tukinem_bbc almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("EMA CROSSOVER CHART");
LongPer = Param("Long Period", 5, 30, 100, 5);
ShortPer = Param("Short Period", 10, 30, 100, 5);
LongMA = EMA(C, LongPer);
ShortMA = EMA(C, ShortPer);
LastHigh = HHV(H, LongPer);
GraphXSpace = 10;
Plot(LongMA, " EMA(C, " + WriteVal(LongPer, 1) + ")", colorDarkBlue, styleLine);
Plot(ShortMA, " EMA(C, " + WriteVal(ShortPer, 1) + ")", colorRed, styleLine);
Buy = Cross(LongMA, ShortMA);
Sell = Cross(ShortMA, LongMA);
PlotShapes(shapeUpArrow * Buy, colorBrightGreen, 0, L, - 10);
PlotShapes(shapeDownArrow * Sell, colorRed, 0, H, - 10);
AlertIf(Buy, "SOUND C:\\Windows\\Media\\buglehorn.wav",  "Buy Triggered!", 1, 8);
AlertIf(Sell, "SOUND C:\\Windows\\Media\\buglehorn.wav",  "Sell Triggered!", 2, 8);
Filter=Buy OR Sell;
Sell=ExRem(Sell,Buy); Buy=ExRem(Buy,Sell);
AddColumn(Buy,"Buy");
AddColumn(Sell,"sell");
AddColumn(BuyPrice,"BuyPrice");
AddColumn(SellPrice,"SellPrice");
_SECTION_END();

1 comments

1. siht_that

Very good but Value’s of EMA ’s are not Editabel/Changabel

Leave Comment

Please login here to leave a comment.

Back