Automatic validation fail - page 3

 
same problem, it must be the server problem
 
Farrukh Aleem:

Not available error is coming at validation, when i try to update my product .

 

some time empty strategy tester report ...... this must be some bug on mql5.com side i have tested ea working fine on my pc. 

They should be giving us some attention about this problem. This way I will build my own website to sell my EAs.
 
Andre Tavares:
They should be giving us some attention about this problem. This way I will build my own website to sell my EAs.
Well said.
 
Hey all, in case no one has checked, the validation tool is back up and running. 
 
Alain Verleyen:

Talk to the moderator in the Market section.

See also this article https://www.mql5.com/en/articles/2555


Hi,

I'm trying to publish a new product (MT5 EA), I tested it all the ways using the strategy tester and the tests were ok, but when I try to send it to proofreadng it is not being validated, it reports an error, but it does not tell me what kind of error is. Could you help me to discover what is going on with the automated validation of my product?


Thanks.

 
Andre Tavares:

Hi,

I'm trying to publish a new product (MT5 EA), I tested it all the ways using the strategy tester and the tests were ok, but when I try to send it to proofreadng it is not being validated, it reports an error, but it does not tell me what kind of error is. Could you help me to discover what is going on with the automated validation of my product?


Thanks.


You may write to the service desk for example.
 
Alain Verleyen:

Talk to the moderator in the Market section.

See also this article https://www.mql5.com/en/articles/2555

Alain Verleyen:

Habla con el moderador en la sección Mercado.

Consulte también este artículo https://www.mql5.com/en/articles/2555

Alain Verleyen:

Talk to the moderator in the Market section.

See also this article https://www.mql5.com/en/articles/2555

Hello friends, because after passing my code from mql4 to mql5 the automatic validation test gives me errors.

I explain, when I realized I had errors, I started commenting on the code to see where the error was and the error starts in the construction of an object,

but the code was well written. I send you an image with the error, plus a code that is well written and that in the validation test generates errors automatically.

Greetings.



//+------------------------------------------------------------------+
//|                                                        error.mq5 |
//|                                 Copyright 2018, Automatic validation error |
//|                                 https://www.mql5.com|
//+------------------------------------------------------------------+
#property copyright "Copyright 2018, Automatic validation error"
#property link      "https://www.mql5.com"
#property version   "1.00"


#include<ParameterCheck(mql5).mqh>//File to check server errors.

//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+

int OnInit()
{
 
return(INIT_SUCCEEDED);
}

void OnTick()
  {



   ObjectCreate(0,"Label",OBJ_LABEL,0,0,0); 
   ObjectSetInteger(0,"Label",OBJPROP_XDISTANCE,900); 
   ObjectSetInteger(0,"Label",OBJPROP_YDISTANCE,31);  
   ObjectSetInteger(0,"Label",OBJPROP_CORNER,2); 
   ObjectSetString(0,"Label",OBJPROP_TEXT,DoubleToString(SymbolInfoDouble(Symbol(),SYMBOL_BID))); 
   ObjectSetString(0,"Label",OBJPROP_FONT,"Arial"); 
   ObjectSetInteger(0,"Label",OBJPROP_FONTSIZE,9);
   ObjectSetDouble(0,"Label",OBJPROP_ANGLE,0.0); 
   ObjectSetInteger(0,"Label",OBJPROP_ANCHOR,ANCHOR_LEFT_UPPER); 
   ObjectSetInteger(0,"Label",OBJPROP_COLOR,clrRed); 
   ObjectSetInteger(0,"Label",OBJPROP_BACK,false); 
   ObjectSetInteger(0,"Label",OBJPROP_SELECTABLE,false); 
   ObjectSetInteger(0,"Label",OBJPROP_SELECTED,false); 
   ObjectSetInteger(0,"Label",OBJPROP_HIDDEN,true); 
   ObjectSetInteger(0,"Label",OBJPROP_ZORDER,1); 




// If I put this, it gives me a validation error and if I delete it from the code it does not give me errors
//-----------------------------------+
if(ObjectFind(0,"Label")==0)
  {
  ObjectDelete(0,"Label");
  }
    
//-----------------------------------+

 Comment( GetLastError());


  }
//+------------------------------------------------------------------+

Files:
Error.png  12 kb
Reason: