Probable outdated help file

 

Hi,


I was looking at the hel file (F1) of the iHighest function inside the MetaEditor and I found the following code example:

double val; 
//--- cálculo do valor máximo do preço Close em 20 barras consecutivas 
//--- a partir do índice 4 e terminando no índice 23, inclusive no gráfico atual 
   int val_index=iHighest(NULL,0,MODE_CLOSE,20,4); 
   if(val_index!=-1)  
      val=High[val_index]; 
   else  
      PrintFormat("Erro ao chamar iHighest(). Código de erro=%d",GetLastError());

(Portuguese installation)

The funny fact is, when I went to implement similar code, I couldn't find the "High[]" function which, in the F1 files, is in blue just as the iHighest suggesting a similar internal function. I did a research here in the Forum and it seems, indeed, there is no such implementatoin in MQL5, which suggest the help file is outdated.