Nop, was trying to copy the stop loss from the other EA with the other magic number 100%, is MT5, and I readed somewhere that the block "For each position" could interact with other EAs if you don´t put at least Group# 0, but don´t know if it´s true,, should be true as my issue,, now I´m modifying the EA with Group 0 to check if happen again
Best posts made by Boillot84
-
RE: Empty Group #posted in Questions & Answers
-
RE: Empty Group #posted in Questions & Answers
Oh, cool ty very much sktsec, I will, another idea is to use group 1 or 2 or so on for all the blocks in the EA, I´lllet you know
Latest posts made by Boillot84
-
RE: Empty Group #posted in Questions & Answers
Oh, cool ty very much sktsec, I will, another idea is to use group 1 or 2 or so on for all the blocks in the EA, I´lllet you know
-
RE: Empty Group #posted in Questions & Answers
Wow, TY, I don`t really understand, is this mean that will be fixed with Group=0?
-
RE: Empty Group #posted in Questions & Answers
Nop, was trying to copy the stop loss from the other EA with the other magic number 100%, is MT5, and I readed somewhere that the block "For each position" could interact with other EAs if you don´t put at least Group# 0, but don´t know if it´s true,, should be true as my issue,, now I´m modifying the EA with Group 0 to check if happen again
-
RE: Empty Group #posted in Questions & Answers
Thank you for the answer sktsec, because I have 2 EAs magic numbers 9 and 6061, one have the block in loop for "each position" some condition an then buy at market and copy the SL and TP for the trade in loop, but the EA is trying to copy the SL and TP from the other EA.

-
Empty Group #posted in Questions & Answers
What happen if I left all the blocks with empty Group# and I have 2 EAs with different magic number in the same instrument? Will interact each other? In this case shall I set 0 (or other) to don´t?
-
RE: Save variables/constants if terminal closes/crashesposted in Tutorials by Users
I tried to do this just to check if works to save the variables correctly. I guess I'm doing something wrong but I'm don't know what exactly
https://fxdreema.com/shared/GrBXfdQ2b -
RE: What does the EA remember when restarting MT4/5?posted in Questions & Answers
@jstap Ok, thank you, I will do everything with global variables to be safe. I didn't know draws will be removed.
My problem is that I need to restart the VPS almost once a week do to updates, and some trades still open and I need to keep few variables the same, distance, number of losing trades and so on. I know how to do it thanks to your post, but I couldn't yet, (I'm on it).
And all my EA's are working with te block "Check consecutive losses" that I need to modify knowing this.
-
RE: find Candel Fullposted in Questions & Answers
And you may add a condition like

body size > 0 in case you need to avoid candles with out any move.
Greetings
-
RE: What does the EA remember when restarting MT4/5?posted in Questions & Answers
Another way to the EA remember for example a price level even if I restart MT4 could be draw a line in the chart and use this line, I guess should work, just to be carefull to do not delete or move the draw or create one non-erasable.
-
RE: What does the EA remember when restarting MT4/5?posted in Questions & Answers
Thank you very much @jstap