iCustom - trying to read Laguerre value / following example out of here and get wrong result - anyone can help

 

 Here it is I used the example from knowledge base here .. but application does not produce good result, only some nonsensical number, see below

 What do I do wrong 

 


Example from MQ5 -------> double val=iCustom(NULL,0,"SampleInd",13,1,0);

Here I am trybing ------>  double LAG1=iCustom(NULL,0,"Laguerre-ACS1",2,0.75,100,1,0)
to get get value 
of Laguerre

                This is the value I get (of course a nonsense)  ------> 2147483647.0

 

Thanks for any help 

 
This is mql4 and not mql5.

2147483647.0 is EMPTY_VALUE, which means there is nothing drawn for this buffer/index.
 
  1. double val=iCustom(NULL,0,"SampleInd",13,1,0);
    2147483647.0 is EMPTY_VALUE, which means there is nothing drawn for the second buffer (index one) at shift zero.
  2. Example from MQ5 ------->
    Do you really expect a MT5 example to run on MT4?
 
input double gamma = 0.618;
int CountBars = 300;
const string laguere = "LaguerreVolume.";
const int Buf_lagure = 0;
 
void OnStart()
  {
  
 double lag = iCustom(NULL,0,laguere,gamma,Buf_lagure,1);
            

Alert(lag);



this indicator is returning empty  values can someone help me please.

it is LaguerreVolume indicator.

 
isackronko #: this indicator is returning empty  values can someone help me please.

Do you really expect an answer? There are no mind readers here and our crystal balls are cracked. Always post all relevant code (using Code button), attach the file, or a link to the specific version of your indicator.
     How To Ask Questions The Smart Way. (2004)
          Be precise and informative about your problem