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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Plot full name for Amibroker (AFL)
avrumi
almost 11 years ago
Amibroker (AFL)

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

Plot full name at top

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn almost 13 years ago
3_6Day GuaiLiLv
Submitted by motorfly almost 13 years ago
Williams Alligator System
Submitted by durgesh1712 about 13 years ago
*Level Breakout system*
Submitted by Tinych about 13 years ago
Horizontal Live Priceline Tool
Submitted by northstar about 13 years ago

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

1. amitrandive

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();
2. raj2nidhi

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

3. ameheta

@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.

Back