MetaTrader 5 Strategy Tester: bugs, bugs, suggestions for improvement - page 68
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
The Android must have been with a different IP.
The router does not have to change the IP after a reboot. And it's understandable that IP blocking happens.
I have a dynamic IP, you have to pay extra for a static one
The android works over WiFi, everyone at home will have the same external IP
I think there's a problem with the DNS or CDN servers.
Android via Google DNS 8.8.8.8 should work - maybe that's the reason, at least the resources that RK has blocked most of the TV via android opens without any problems without any VPN, etc.
Can you tell me how to make a double click on an opt/tst file in explorer to import the appropriate cache into the tester?
Tried a line like this, doesn't work.
Search string: Uluchshenie 014.Forum on trading, automated trading systems and trading strategy testing
MetaTrader 5 Strategy Tester: bugs, bugs, suggestions for improvement
fxsaber, 2020.03.05 06:06
Everything is normal now. The problematic situation is as follows.
Both times I got into it during long typing of big post with picture loading.
Long - probably over an hour (got distracted many times, then came back). Probably a security system kicking in with this behaviour.
To clarify, the site becomes inaccessible for many hours. Picture above.
To reproduce, you have to start writing a reply in a forum thread for half an hour, inserting pictures into the post. At the same time it is not necessary to finish writing the post.
After this time mql5.com will be unavailable with a response as shown above.
I don't even know where to ask, or how to phrase the problem, but I'll try:
there are 10 EA input parameters
the input parameters can take values from 0 to 99
how to organize full search with a tester on the principle of combinations without repetitions ?
i.e. by number of combinations without repetitions - :
To generate all combinations without repetition is not difficult, but how to make the tester strategies to fill my array int arr_param[10] I can not think
ZS: I need to change the parameters to form the name of the file settings - there settings EA, I want to try to pick up a portfolio of strategies automatically
It's not hard to generate all combinations without repeats, but I can't figure out how to make the strategy tester fill an int arr_param[10] array for me
I'm asking you to put a coincidence check in OnInit.
how to organise a full search with the tester according to the principle of combinations without repetitions ?
i.e. by the number of combinations without repetitions - :
To generate all combinations without repetition is not difficult, but how to make the tester strategies to fill my array int arr_param[10] I can not think
I want to change parameters to form a file name of settings - there settings EA, I want to try to pick up a portfolio of strategies automatically
It looks like this:
1. We set a bit mask for each parameter:
In total, we introduce one bit hyperparameter which is enumerated from 1 to 2^10 (as there are 10 parameters)
2. The parameters themselves are searched independently but we want to check whether they are included into the optimization or not when calling OnInit. If it is not participating, we exit by TesterStop. This will not save us from unnecessary combinations, but it will allow us not to test unnecessary ones.
I'm asking you to put a match check in OnInit.
Yes, it's clear that if the array contains two identical elements then return(INIT_FAILED) - the problem is to form combinations with a search by one element, then by the 2nd... and so on up to 10 elements
It looks like this:
1. We create a bitmask for each parameter:
In total, we introduce one bit hyperparameter which is enumerated from 1 to 2^10 (as there are 10 parameters)
2. The parameters themselves are searched independently but we want to check whether they are included into the optimization or not when calling OnInit. If it is not participating, we exit by TesterStop. This will not get rid of unnecessary combinations, but it will allow to avoid testing unnecessary ones.
That's exactly the algorithm I'm searching for, but I haven't got beyond how to generate all arrays separately and then use them in my research (((
i need an algorithm, at least "on the fingers" - then i will write myself, the algorithm of all combinations without repetition is not complicated - googled on student forums, and how best to use the tester i do not understand yet
Yes it's clear that if the array has two identical elements then return(INIT_FAILED) - the problem is to form combinations with a search by one element, then by the 2nd... and so on up to 10 elements
Most likely you have 10 identical TCs. Then the TC numbers in the set should be in ascending order.