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

How to Draw Rectangles for Amibroker (AFL)

Copy & Paste Friendly
SetChartOptions(0,chartShowArrows|chartShowDates);
GfxSetBkMode(1);


_SECTION_BEGIN("How to Draw Rectangles");
//GfxSetBkMode(0);
Width  = Status("pxwidth");
Height = Status("pxheight");

U = height;
M = height/2;
D = 0;

GfxSelectSolidBrush(colorYellow);
GfxRoundRect(0, U, Width, M, 0, 0);

GfxSelectSolidBrush(colorBlue);
GfxRoundRect(0, M, Width, D, 0, 0);
_SECTION_END();


_SECTION_BEGIN("NMN Chart Stamp");
SetFormulaName("NMN Chart Stamp");
GfxFont	= "Times New Roman";
GfxSetOverlayMode(0);
GfxSelectFont(GfxFont, Status("pxheight")/8);
GfxSetTextAlign(6);								// center alignment
GfxSetTextColor(ColorRGB(200,200,200));
GfxSetBkMode(0); 									// transparent
	GfxTextOut(Name(), Status("pxwidth")/2, Status("pxheight")/12);
GfxSelectFont(GfxFont, Status("pxheight")/28);
GfxSelectFont(GfxFont, Status("pxheight")/18);
GfxSelectFont("Tahoma", Status("pxheight")/36);
_SECTION_END();
Back