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 ....
ema crossovers for Amibroker (AFL)
Rating:
5 / 5 (Votes 1)
Tags:
trading system, amibroker, exploration
Here is the formula to find and plot EMA crossovers
Similar Indicators / Formulas
OPTIMIZED ICHIMOKU
Submitted
by ritesh.bafna88 over 9 years ago
Reaction Trend System
Submitted
by ajayjain90 almost 12 years ago
Behgozin Strength Finder
Submitted
by hotaro3 over 9 years ago
KPL with RSI
Submitted
by pdkg_gal almost 12 years ago
Intraday Trend Break System
Submitted
by nishantndk almost 12 years ago
mutlitime frame with trendline
Submitted
by nsetraderonline almost 12 years ago
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("EMA Crossing"); // EMA Cross // follows are the original ranges tgl = ParamToggle("Plot type", "Signals|Chart", 0); Range1 = Param("Slow wave", 15, 3, 100, 1); Range2 = Param("Fast wave", 5, 2, 50, 1); //Range1 = Optimize("range1",15,1,20,1); //Range2 = Optimize("range2",5,1,20,1); // updated ranges slowEma = EMA(C, Range1); fastEma = EMA(C, Range2); Cover = Buy = Cross(fastEma , slowEma ); Short = Sell = Cross(slowEma , fastEma ); if(tgl) { // plot signals Plot(Buy, "EMA Crossing - Buy", colorGreen); Plot(-Short, "Short", colorRed); } else { Plot(fastEma , "EMA Crossing - EMA" + NumToStr(Range2, 1.0), colorGreen); Plot(slowEma , "EMA" + NumToStr(Range1, 1.0), colorRed); } Filter = Buy OR Sell OR Short OR Cover; AddColumn(Filter, "Trades", 1.0); _SECTION_END();
0 comments
Leave Comment
Please login here to leave a comment.
Back