Indicator's label

 

Hi

I have a question. How can we eliminate description label in indicators?

Thanks in advance.

Files:
2.gif  15 kb
 

you have to delete this line:

IndicatorShortName("......."); [/CODE]

from the indicator file and compile it.

you can use "//" at the begining of the line to disable that line, instead of deleting it.

[CODE] // IndicatorShortName(".......");

don't forget to compile it

bye

 

Thanks cucurucu for fast reply.

be success

 

I perform your advice and label doesn't eliminate completely.

Files:
3_2.gif  13 kb
 
kohzadi:
I perform your advice and label doesn't eliminate completely.

As I can see on you image, now it is ok. You can't eliminate it completely. It will show you the filename of the indicator, followed by the values. These can't be eliminated. Sorry. You can eliminate only the aditional name given by the programmer.

 

Iam not sure if this will work on indicators but you can try to place this line at the end of the code...

Comment( " " );

This will remove output to EAs not sure if it will work with indicators.

 
cockeyedcowboy:
Iam not sure if this will work on indicators but you can try to place this line at the end of the code...

Comment( " " );

This will remove output to EAs not sure if it will work with indicators.

You're on the right track. For indicators you would add this to the init():

IndicatorShortName("");

Reason: