iCustom - trying to read Laguerre value / following example out of here and get wrong result - anyone can help
This is mql4 and not mql5.
2147483647.0 is EMPTY_VALUE, which means there is nothing drawn for this buffer/index.
2147483647.0 is EMPTY_VALUE, which means there is nothing drawn for this buffer/index.
- 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.
- 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
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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
This is the value I get (of course a nonsense) ------> 2147483647.0
Thanks for any help