i am new ? i want put password to my ea
-
@l-andorrà Thank you, but you can clarify more for the above example
-
Did you try your own example a few posts above? It should work and is way simpler than mine. The only thing you woul need to aadd is a group of two blocks on the 'in Init' tab that way:

You need to create a Constant (of string type, lithe that of the variable) in which you insert the password when executing it on the chart. Then your structure should be on the 'on tick' tab. There you can specify the last day the EA will be active.
-
@l-andorrà THAMK YOU VERY MUCH I appreciate your efforts, but unfortunately I tried all the way but I did not find a way to set the time, or increase the time.
Is there another idea to stop the expert after a month?
I'm trying to test it off after five minutes - testing how it works.

-
You can always count bars. You can create an int variable and every daly bar the EA can add +1 to it. Then another condition can limit the maximum value of that variable to 30. Once the value is above it, the EA Terminates.