Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Background symbol Name for Amibroker (AFL)
Enables you to have the symbol name displayed in the background on the chart
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | //===================================================================== //background stock name (works only on Amibroker version 5.00 onwards. //===================================================================== _SECTION_BEGIN ( "Name" ); GfxSetOverlayMode (1); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/8 ); GfxSetTextAlign ( 6 ); // center alignment GfxSetTextColor ( ColorHSB ( 120, 240, 180 ) ); GfxSetBkMode (0); // transparent GfxTextOut ( Name (), Status ( "pxwidth" )/2, Status ( "pxheight" )/12 ); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/18 ); GfxTextOut ( IndustryID (1), Status ( "pxwidth" )/2, Status ( "pxheight" )/4 ); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/18 ); GfxSelectFont ( "Tahoma" , Status ( "pxheight" )/36 ); GfxTextOut ( "www.MutualFundSystem.com" , Status ( "pxwidth" )/2, Status ( "pxheight" )/3 ); _SECTION_END (); _SECTION_BEGIN ( "Graphics" ); GrpPrm= Param ( "Graphic Space" ,2,-5,10); GraphXSpace =GrpPrm; _SECTION_END (); //====================================================================================== |
0 comments
Leave Comment
Please login here to leave a comment.
Back