How to enable variable inputs before to attach EA to chart
-
I'm not able to see the variables when Im attaching the EA to my chart?
-
variables are not as inputs, constants are inputs

-
Please see the screenshot. How can I do for my variable and which variable should I use to show in this box?
-
I dont understand what exactly you need ....
-
Ineed that this vaiable bellow:

it shows in here:

-
you need define it in Constants ... and if you will it modificable, do it like this:
https://fxdreema.com/shared/Z3yYVSOIb
in on Init section

-
Ok I'm going to try it later, I just got confuse bc ik that constants are value that cannot be change and variables are values that can be change.
-
constants are value that can not be changed when EA is running (it does not mean when EA is inserting - while inserting you can define constants values) ... ... variables are used by EA itself and can be changed by EA ...
-
Some of the words that I use in the EA builder do not exactly describe the real thing in the MQL code. Because this tool is primarily for people who don't understand programming anyway
So, back then I added Varibales and they were really global variables in the EA. The word "Variables" sounds good enough, means something that can vary, can be changed. But the input parameters are not supposed to be changed in the EA and in MQL5 any attempt to change them will give you an error actually. So... these are named Constants (Inputs) - there is the word "Inputs" in the name really. Yes, they are inputs and they are not supposed to be changed, so they can also be called constants.