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 3 13 34 CROSS ALERT for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("EMA");
x = EMA(Close,3);
y = EMA(Close,13);
Buy=Cross(x,y);
PlotShapes(shapeUpArrow*Buy,colorGreen);
Sell=Cross(y,x);
PlotShapes(shapeDownArrow*Sell,colorRed);
Plot( EMA( Close, 3 ),"3", colorGreen, styleThick );
Plot( EMA( Close, 13 ),"13", colorRed, styleThick );
Plot( EMA( Close, 34 ),"34", colorBlue, styleThick );
AlertIf( Buy, "SOUND C:\\Windows\\Media\\alarm_beep.wav", "Audio alert", 2 );
AlertIf( Sell, "SOUND C:\\Windows\\Media\\warning_horn.wav", "Audio alert", 2 );
_SECTION_END();