// Downloaded From https://www.WiseStockTrader.com
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();