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 ....
3/13 crossing for Amibroker (AFL)
Copy & Paste Friendly
Back
_SECTION_BEGIN("MA Crossover Unicolor"); Plot(EMA(Close,3),"3-EMA",colorWhite,4); Plot(EMA(Close,13),"13-EMA",colorBrightGreen,1); Plot(EMA(Close,55),"55-EMA",colorTurquoise,4); r=EMA(C,13); a=EMA(C,55); _SECTION_BEGIN("Price"); SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) )); Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); _SECTION_END();