Questions from Beginners MQL5 MT5 MetaTrader 5 - page 775

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
It says: "... Step 1 ...".
On step 2 - now think for yourself, namely, how multiple threads WITHOUT CONFLICT can write to ONE file.
That's the thing, they can't...
I take it that network agents cannot work with dll libraries?
Is there any way to find out the pass number of the tester? To be able to glue the files together...
How can agents be taught to write to the same file? Right now everyone creates their own file in their own folder, which is not good.
To write Agents' data to the same file you must use Frame mode.
You need to use Frame mode to write the Agents data to a single file.
Thank you! I'll have to look into it.
What is "Frame mode"?
What is 'Frame Mode'?
https://www.mql5.com/ru/docs/optimization_frames
https://www.mql5.com/ru/docs/optimization_frames
Thank you - what is the mode understood.
However, I don't understand, is it possible to pass 100 indicators in a batch in this frame? Why in one frame - since each frame is considered as a separate pass, as I understood from the description, or did I misunderstand?
And where can I find the description of the*.mqd file format?
However, I don't understand, is it possible to pass 100 indicators in this frame in a batch?
Look at the example above. Any amount of arbitrary data can be transmitted there.
Look at the example above. It transmits arbitrary data in any quantity.
Many questions, let me ask you?
Here is the function in the code
The meaning is clear - we are collecting data to be written later.
I'm not quite sure why we're declaring variables in brackets and what "&" sign before a variable means?
Lots of questions, let me ask you?
Here is the function in the code
The meaning is clear - we are collecting data to be written later.
I'm not quite sure why we're declaring variables in brackets and what "&" sign before a variable means?
Lots of questions, let me ask you?
Here is the function in the code
The meaning is clear - we are collecting data to be written later.
I do not quite understand why we need to declare variables in brackets and what "&" sign before the variable means?
It is possible to pass parameters of simple types by reference. In this case, modification of such parameters within a called function will affect the corresponding variables passed by reference. In order to specify that a parameter is passed by reference, a modifier "&" must be placed after the data type.
Example:
It's basics. Read in the help about formal function parameters and passing parameters by reference.
Maybe the basics, no arguments, I just can't get into the code, where it starts, where it ends... hence the questions. Ok it's a reference(?), but to what?
Where did the"Str" variable originally originate here?