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 ....
Spe for Amibroker (AFL)
Copy & Paste Friendly
Back
_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", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\\SEMA//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^//
SEMA=p2=(2*L+O+C)/4;
for(i=9;i<BarCount;i++)SEMA[i]=SEMA[i-1] + p2[i]/11 - SEMA[i-1]/22 - SEMA[i-9]/22;
Plot(SEMA, "" , colorGold, styleStaircase |styleThick|styleNoRescale|styleNoLabel);
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\\SEMA//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^//
//see marke tlogy.com for unique AFL