Find the current value of a variable?
-
Is there a way to find the value of a variable at a certain point in time for an EA that is currently running?
-
Please help me. I want to run a script on my chart which has a running EA that has some internal variables. I want to know the value of specific variable at the point of when I run my script.
-
You can't access those variables from another EA/Script, they are really internal and available only for the EA that created them. But there is another kind of variables that I call Terminal Variables, they are called Global Variables in MetaTrader and you can see them with F3. These can be seen from all EAs and Scripts. To set them find the block Terminal Variables. To get them... search for the same words in Condition block.
-
This is awesome! Thank you very much