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 tester (Win 10, b 3661) hangs :(
After testing the same EA with EURUSD and XAUUSD the tester hangs after the first few results:
started this morning:
This result hasn't really changed since 8 hors,
The MT5 task manager doesn't help, while Win10 TaskManager shows this:
Why is ntoskrnl.exe so heavily used? (Ram is no full so the system is not swapping).
My EA was tested with XAUUSD and the same period with 510 passes (+ some doubled calculated= within 24h so ~21 passes within 1 hour and now ...?
The tester (Win 10, b 3661) hangs :(
After testing the same EA with EURUSD and XAUUSD the tester hangs after the first few results:
started this morning:
This result hasn't really changed since 8 hors,
The MT5 task manager doesn't help, while Win10 TaskManager shows this:
Why is ntoskrnl.exe so heavily used? (Ram is no full so the system is not swapping).
My EA was tested with XAUUSD and the same period with 510 passes (+ some doubled calculated= within 24h so ~21 passes within 1 hour and now ...?
I've not faced issues (no running , hanging) with 3661 because i run all my optimizations (due to their nature) like so.
It does feel slower however and in heavy normalization and math functions usage tests it gradually deccelerates (within one optimization batch) (however this has been noticed when MathCos / MathSin is used and everything passes through MathIsValidNumber())
I suspect theres been changes in the caching mechanisms to give speed to the matrix / vector libraries or smth
The tester (Win 10, b 3661) hangs :(
After testing the same EA with EURUSD and XAUUSD the tester hangs after the first few results:
started this morning:
This result hasn't really changed since 8 hors,
The MT5 task manager doesn't help, while Win10 TaskManager shows this:
Why is ntoskrnl.exe so heavily used? (Ram is no full so the system is not swapping).
My EA was tested with XAUUSD and the same period with 510 passes (+ some doubled calculated= within 24h so ~21 passes within 1 hour and now ...?
I have seen so much post of the same kind. With no way to reproduce it...
So if it's an MT5 issue, it's waste of time and nothing will be fixed. And if it's something else we can't help.
Additionally I would like to make a suggestion:
MQL5 now offers extensive matrix operations. Arrays, whose SECOND DIMENSION CAN/MAY BE SET AT RUN TIME! I have thought now, it would be nevertheless optimal to examine with these possibilities the table of the optimization results of the tester (*.xml with varying numbers of variables) statistically.
With a small (see below) function an XML file of the tester can be read into a MQ matrix (sorry Sunday morning during the F1 race) and now I would like (not yet implemented as I thought the built in function would support this) to print out, how for each expression of a variable (0,1,2,...) or an expression range (Points 50-59, 60-69, 70-79, ... or if sensibly increasing range: 50-59, 60-75, 76-96, ...) the results are shown: Max, Min, Average, Skewness...
Furthermore, it would be nice to be able to display two and more variables: If x1<TP>x2 and y1<SL>y2 => Max, Min, Average, Skewness, ...
It would also be possible to show which test range does not give useful results, so that the optimizations could be concentrated on useful things and time could be saved. E.g. a test range would be 2 - 20, step size 0.5 and the positive results are practically only in the range 4-6, one could save much effort.
There are other methods and tests of statistical analysis, but they require a deeper knowledge of when they can be used for what and how to interpret the results. This could be very helpful for the normal user in his optimizations I think.
This is what it prints:
I have seen so much post of the same kind. With no way to reproduce it...
So if it's an MT5 issue, it's waste of time and nothing will be fixed. And if it's something else we can't help.
It's really stupid. I stopped the test and restart the optimization and firstly it was perfectly but after some time ntoskrnl.exe appears again and blocks everything :(
I stopped again closed the terminal and restarted it again and that performs an update to b. 3662 it could be that this hanging update (I clicked on later) causes this :(
It's really stupid. I stopped the test and restart the optimization and firstly it was perfectly but after some time ntoskrnl.exe appears again and blocks everything :(
I stopped again closed the terminal and restarted it again and that performs an update to b. 3662 it could be that this hanging update (I clicked on later) causes this :(
I stopped the test and restart the optimization and firstly it was perfectly but after some time ntoskrnl.exe appears again and blocks everything :(
I stopped again closed the terminal and restarted it again and that performs an update to b. 3662 it could be that this hanging update (I clicked on later) causes this :(
I have an identical problem! Just in case, I wrote about this problem on the Russian-language forum.
I have an identical problem! Just in case, I wrote about this problem on the Russian-language forum.
He wrote he had the problem with build 3661 too. You have it only with 3662.
Anyway we will see.
Acc. to https://www.mql5.com/en/docs/matrix/matrix_manipulations/matrix_sort:
Sort
Sort a matrix or vector in place.
I should be able to sort a vector But (b3662):
Even tri does not work as described:
This is a static function Construct a matrix with ones at and below the given diagonal and zeros elsewhere.
static matrix matrix::Tri(
const ulong rows, // number of rows
const ulong cols, // number of columns
const int ndiag=0 // number of diagonal
);
Parameters
rows
[in] Number of rows in the array.
cols
[in] Number of columns in the array.
ndiag=0
[in] The sub-diagonal at and below which the array is filled. k = 0 is the main diagonal, while k < 0 is below it, and k > 0 is above. The default is 0.
Return Value
Array with its lower triangle filled with ones and zero elsewhere.
This is what I tried:
and this is what I get:
:(