Skip to main content

Plot full name for Amibroker (AFL)

avrumi over 12 years ago Amibroker (AFL)

  • Rating:
    5 / 5 (Votes 4)
  • Tags:
    amibroker

Plot full name at top

Indicator / Formula

Copy & Paste Friendly
/**********************************************************************************
//        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();

3 comments

over 12 years ago

Hi

Please check this works better ,

/**********************************************************************************
//        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(FullName(), x+500, y+10 );
 
_SECTION_END();
about 10 years ago

hi i want to display my name in afl chart but i cant get it pls help

3. ameheta
about 10 years ago

@raj2nidhi
for display your name use this code

GfxTextOut( ( “your name”),x+500, y+10 );

or look at my afl
http://www.wisestocktrader.com/indicators/4856-yogya-daily-trading-guide-version-2-0

Leave Comment

Please login here to leave a comment.