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

Shape Maker for Amibroker (AFL)

Copy & Paste Friendly
_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();

//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\\Shape Maker//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^//
for ( i = 0; i < BarCount; i++ )
{
O[i] = C[i] = i;
H[i] = i + 5;
L[i] = i - 5;
if ( i % 2 == 0 )  {PlotText( NumToStr( i, 1.0, False ), i, L[i]-2, colorGreen);}
else  {PlotText( NumToStr( i, 1.0, False ), i, H[i]+.5, colorRed );}
}
PlotShapes( C, colorCustom12, 0, C, -10 );
Plot( C, "", colorTeal, styleCandle );
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\\Shape Maker//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^//


//Make screen background Black
Visit Marketlogy.com for  unique codes
Back