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 ....
How to Draw Rectangles for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 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 (); |