Cannot find any info about this group

 

Hi there !

Can someone please give me a clue ?

Nither F1 nor Alt+G goes anywhere!

Regards

MRC

bool Testing()
  {
   return(MQL5InfoInteger(MQL5_TESTING));
  }
//+------------------------------------------------------------------+ 
//| RETURNING THE FLAG FOR OPTIMIZATION                              |
//+------------------------------------------------------------------+ 
bool Optimization()
  {
   return(MQL5InfoInteger(MQL5_OPTIMIZATION));
  }
//+------------------------------------------------------------------+ 
//| RETURNING THE FLAG FOR VISUAL TESTING MODE                       |
//+------------------------------------------------------------------+ 
bool VisualMode()
  {
   return(MQL5InfoInteger(MQL5_VISUAL_MODE));
  }
//+------------------------------------------------------------------+ 
//| RETURNING THE FLAG FOR THE REAL TIME MODE OUTSIDE OF THE TEST    |
//+------------------------------------------------------------------+ 
bool NotTest()
  {
   if(!Testing() && !Optimization() && !VisualMode()) { return(true); } else { return(false); }
  }
//+------------------------------------------------------------------+ 
 

?

What'is your question ?

 
angevoyageur:

?

What'is your question ?

What does it do ? What does ii tests ? What does it returns ?

(*) The same for the other 2 options

MQL5InfoInteger(MQL5_VISUAL_MODE));
 
YouTrade:

What does it do ? What does ii tests ? What does it returns ?

(*) The same for the other 2 options

It checks if the code is running within the Strategy Tester, in Visual mode or not, and eventually for an Optimization.

You can't find information as the current function name is MQLInfoInteger.

 
angevoyageur:

It checks if the code is running within the Strategy Tester, in Visual mode or not, and eventually for an Optimization.

You can't find information as the current function name is MQLInfoInteger.

Thank you
Reason: