// Downloaded From https://www.WiseStockTrader.com
/**********************************************************************************
//        Plot full name                                                *
//**********************************************************************************/

_SECTION_BEGIN("namee Line");

x=Param("xposn",1,0,1000,1);
y=Param("yposn",1,0,1000,1);

GfxSetBkMode(0);
GfxSelectFont( "Tahoma", 26, 800, False );
GfxSetTextColor( colorGold );
GfxTextOut( Name(),  x+800, y+10 );
GfxTextOut(FullName(), x+1000, y+10 );

_SECTION_END();