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
When you look through the results of Optimisation, you may like some single passages and want to quickly get some useful information about them to use it later.
I found this method very convenient for me.
After a single pass, all the necessary information is available in a brief form in the clipboard as a string. I paste it via CTRL+V where it is more convenient now.
Then, when a lot of such interesting strings have been accumulated, I evaluate the overall situation.
You form the string yourself, of course. Above is just an example. The main thing is that it fits into the clipboard.
fxsaber, thanks for the multitester! Your publications are as always on top of their game!
Before inventing a bicycle, I would like to ask for advice.
As a result of optimisation of EA parameters by a list of symbols using multitester, I get a list of .opt files and the results of optimisation can be viewed only separately for each symbol.
How can I combine them into an average resultfor all symbols? Let's say I want to get a standard MT5 2D graph of two parameters (of green shaded squares).
Or how is it easier to combine all the results into an Excel table, manual export of all S&P500 results to Excel is not very convenient....
As a result of optimisation of EA parameters by the list of symbols using the multitester, a list of .opt files is obtained and the results of optimisation can be viewed only separately for each symbol.
And how to combine them into an average resultfor all symbols? Let's say I want to get a standard MT5 2D graph of two parameters (of green shaded squares).
Or how is it easier to combine all the results into an Excel table, manual export of all S&P500 results to Excel is not very convenient....
It is possible to consolidate all opt-files of multi-optimisation into one via TesterCache.
Hey, this looks like an amazing tool, I'm trying to use google translate but I just don't get how to work with it. Is there some tutorial on English? I don't get at what point I can activate it and make the list of the symbols to be tested with my expert. Or do I need to edit a code file manually and them import it? Thanks!
There are people here who are actively using this tool (or based on it). It would be great if they could help you understand it.
Unfortunately, I have shared so much of my work with the community that not only I cannot find time to constructively answer entry-level questions, but I have almost stopped the practice of posting my developments and results.
A convenient way to run forwards when manually analysing the results of Optimizations.
I open the Optimisation table of any Expert Advisor and click "Run single test" on the passages of interest. I get the output forward of the pass.
It saves a lot of time (for me, a pass lasts a couple of seconds), especially with BestInterval.
Hey, this looks like an amazing tool, I'm trying to use google translate but I just don't get how to work with it. Is there some tutorial on English? I don't get at what point I can activate it and make the list of the symbols to be tested with my expert. Or do I need to edit a code file manually and them import it? Thanks!
You need to select the Expert you want to optimise in the strategy tester and set the parameters to be optimised.
Then compile Example1 and drag and drop it on any Chart (run), it will start running your Expert Advisor on those Charts and Time Frames that are set in the code of Example 1.
So you need a MultitesterExpert that as an automaton runs your optimised Expert on different _Symbol / _Period etc..
By studying the comments in Example 1 and Example 2 you will be able to make your own MultitesterExpert based on them.
GetSettings(Str) breaks testing on local agents.
GetSettings(Str) I used to find out what type of tick modelling is used in the test.
Example:
I added the following to the Moving Average Expert Advisor example code:
#include <fxsaber\MultiTester\MTTester.mqh>I run optimisation with full enumeration of parameters, as a result the tester tends to switch from any tab to the "Settings" tab.
A disproportionate number of buildings are distributed to local agents and they are not executed.
Can you suggest something on your own?
Can you give me a hint?
In OnTesterInit do GetSettings and pass the obtained values from there via ParametersSetRange to sinput variable.
On local Agents this sinput variable will tell you what the mode is.
The mode can be determined by real ticks without DLL.