Errors, bugs, questions - page 724

 

Had this happen 2 times in the last week (w7sp1, x64, 630):

 
Vigor:
What does the message mean?

The Expert Advisor in the terminal just drops such a mess and that's it.

The debugging is not reached, it is deleted from the chart at once. After an hour of experiments I found out that the effect disappears after adding an arbitrary, unnecessary variable to any scope in any class =defined= branch of the application's class hierarchy.

Please send the source code to servicedesk.
 
notused:

It should be "Wired" or "Wired" or "Wired".

Thank you for reporting an inaccurate translation. Corrected it to "Vimknoted". An updated translation will be available in the next build.
 

A couple of interesting things:

MQs have done fast optimization in "Opening prices only" mode - veri gud! Then why is the optimization speed on crosses in this mode about 10 times slower than on dollar pairs? The Expert Advisor and period are the same.

Export of the list of remote agents does not work. It used to work earlier but I cannot recall which build it was in.

I really miss drawdown of funds in"Optimization Results"! It's a shame they didn't move them to 4. Yes, we may export-excel-formula-sorting... Superfluous fuss.

 
muallch:
Export of remote agents list doesn't work. It used to work, I can't remember in which build.

Write to servicedesk with details. Please specify build number, OS, bit rate, whether UAC is enabled and what mode you run the terminal in (/portable).

 
muallch:

Then why is the optimization speed on crosses in this mode about 10 times slower than dollar pairs? Advisor and period are the same.

Can you attach the Expert Advisor, server, settings, optimization logs? What agents are used for optimisation?
 
Thanks, I'll get to it later.
 

So, build 630, 32 bits, XP.

Optimisation in 3 months on one kernel. Clouds, remote and other local agents and kernels disabled. 200 runs. EURUSD and EURGBP pairs. Server is MQ. I am attaching the logs. The time difference is almost 14 times: 13 and 193 seconds, not in favor of the cross. I am not laying out the Expert Advisor, it is simple enough. Think of it as a mcd simple ). YES! No data is requested from other pairs in the Expert Advisor. Only the pair under test.

Files:
EURGBP.zip  6 kb
EURUSD.zip  2 kb
 

Please check the sample scripts in"Operation overload".

They don't compile. I found the error in the first script myself, but I don't have the brains for the second one.

Build 630

 
Snaf:

They don't compile. I found the error myself in the first script,

Thank you, added the missing complex type declaration:

void OnStart()
  {
//--- объявим и инициализируем переменные комплексного типа
   complex a(2,4),b(-4,-2);
   PrintFormat("a=%.2f+i*%.2f,   b=%.2f+i*%.2f",a.re,a.im,b.re,b.im);
   //a.re=5;
   //a.im=1;
   //b.re=-1;
   //b.im=-5;
//--- сложим два числа
   complex z=a+b;
   PrintFormat("a+b=%.2f+i*%.2f",z.re,z.im);
//--- умножим два числа
 
   z=a*b;
   PrintFormat("a*b=%.2f+i*%.2f",z.re,z.im);
//--- разделим два числа
   z=a/b;
   PrintFormat("a/b=%.2f+i*%.2f",z.re,z.im);
//---
  }
Reason: