Line 143, you have a void function returning a value
Probably it has return(0);
Just delete the (0)
But make sure that any call to the function does not expect a return
It is the same with void functions at lines 249 and 306.
The one at line 360 is the opposite.
Most likely, the code has
int Start()
{
//
//
}
It should have return(0) before the final }
The one at line 360 is the opposite.
Line 143, you have a void function returning a value
Probably it has return(0);
Just delete the (0)
But make sure that any call to the function does not expect a return
It is the same with void functions at lines 249 and 306.
The one at line 360 is the opposite.
Most likely, the code has
int Start()
{
//
//
}
It should have return(0) before the final }
Thanks Gumrai.
I am seeing that the 'Void' function is returning -1.
And the 360 one has return type 'Srting'.
Actually this is the infamous Codersguru's 'xpMA' indi.
After compiling it's working on build 610 but with limitation.
It's working for upto the MA type 5. After it, it's not working though all the necessary indicators are placed in the MQL4 Data folder.
It's working for upto the MA type 5.
above type 5 it's been using custom indicators
either you dont have it or you need the make adjustments for B600 >
above type 5 it's been using custom indicators
either you dont have it or you need the make adjustments for B600 >
I have them all as I got them with the Main indicators pack.
And I have compiled them in Build 610 and got no Warning or Error.
So a bit confused.
And I have compiled them in Build 610 and got no Warning or Error.
try to put one of the indicators on a chart for instance the "T3MA" you will see that the values = 0
try to put one of the indicators on a chart for instance the "T3MA" you will see that the values = 0
Yes, you are right. But why?
I have compiled them as SDC said and found '0' Error or Warning.
Then what can I do to upgrade them to B-600+ ?
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
What are the things need to be changed for making indicators compatible with Build 600+ ?
If there any link of the detail discussion please give it.
Thanks