Libraries: ErrorDescription - page 2

 
Mm-hmm, it doesn't exist in nature, but google will.
 
Dmitry Fedoseev:
Yeah, it doesn't exist in nature, but Google will.
It's easy. The ERR_CHART_WRONG_TIMER_PARAMETER error doesn't exist in nature, but it exists in the library. And it is mentioned in Google )
 
Otto Pauser:

In errordescription.mqh line82 should be corrected

//      case ERR_CHART_WRONG_TIMER_PARAMETER:  return("Wrong parameter for timer");
      case ERR_CHART_WRONG_PARAMETER:        return("Wrong parameter for timer");

I commented it out, so it works.

It works for me.

#define ERR_CHART_WRONG_TIMER_PARAMETER ERR_CHART_WRONG_PARAMETER
Libraries: ErrorDescription
Libraries: ErrorDescription
  • www.mql5.com
The library contains functions that returns description of runtime error codes and trade server return codes.
 

Dear Sirs,


I have only 3 error in a EA that I am trying to build as follow:


'RealVolume' - undeclared identifier
'RealVolume' - parameter - no one of the overloads can be applied to the function call"

If we go to the lines, 1282 to 1283, What we have is:

//+------------------------------------------------------------------+
//| LowestRealVolume                                                      |
//| prevBars:  Number of previous bars to find Lowest RealVolume          |
//+------------------------------------------------------------------+
double CMyExpert::LowestRealVolume(int prevBars,string symbol,ENUM_TIMEFRAMES timeframe) 
{
   double BarLow = 999;     // Lowest bar value from PrevBars range.
   ArraySetAsSeries(RealVolume,true);
   int copied=CopyRealVolume(symbol, timeframe,0,prevBars,RealVolume);

What can I do too solve this?

Best regards, Filipe
Files:
 
This is great. I'm also adding a function for deinit codes and maybe some other kind of codes as well. Kind of weird that this stuff isn't just built in!
 
good
 
The file is quite outdated due to the recent MQL5 language updates, here is the latest file with recent error codes.
Files: