Make the EA settings box clean

 

Hi,

I'd like to add text to make the settings box of an EA clean by adding text where's the inputs stand.

Ex :

Text : Money Management

input bool MM true etc ...

Text : Behaviour

input .... etc ... 
 
blouf:

Hi,

I'd like to add text to make the settings box of an EA clean by adding text where's the inputs stand.

Hi blouf, unfortunately there is not a text/comment input like you are looking for.

Anyway you can try this workaround with strings and adjust it to your text preferences (the problem of this way is that the final user can change the string value at Inputs, so it's relevant use the // text to don't lose the original information and reference):

input string money_m="Money Management"; // Money Management

input bool MM true etc ...
 
figurelli:

Hi blouf, unfortunately there is not a text/comment input like you are looking for.

Anyway you can try this workaround with strings and adjust it to your text preferences (the problem of this way is that the final user can change the string value at Inputs, so it's relevant use the // text to don't lose the original information and reference):

thank you
 
blouf:
thank you
You are welcome.