Hello guys, I have an issue with calling an indicator in my EA.
It is loading multiple times as. I call this EA in a function as below:
And when I test it on StrategyTester this indicator is loading multiple times. I have other indicators called in the same way, which loading correctly. What am I missing?
What I have observed is that if I remove the inputs from iCustom it will only load once. input= NumberOfBars,MAPeriod,LookBack
- Daniel Cioca:
double BV(int buff,int shift){return(iCustom(_Symbol,0,"BetterVolume 1.4",NumberOfBars,MAPeriod,LookBack,buff,shift));}
Why did you post your MT4 question in the MT5 EA section instead of the MQL4 section, (bottom of the Root page)?
General rules and best pratices of the Forum. - General - MQL5 programming forum? (2017)
Next time, post in the correct place. The moderators will likely move this thread there soon. - Daniel Cioca: What I have observed is that if I remove the inputs from iCustom it will only load once. input= NumberOfBars,MAPeriod,LookBack
Then your call is wrong.
Do you really expect an answer? There are no mind readers here and our crystal balls are cracked.
How To Ask Questions The Smart Way. (2004)
Be precise and informative about your problemWhere is the indicator code or a link to it?

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hello guys, I have an issue with calling an indicator in my EA.
It is loading multiple times as. I call this EA in a function as below:
And when I test it on StrategyTester this indicator is loading multiple times. I have other indicators called in the same way, which loading correctly. What am I missing?
What I have observed is that if I remove the inputs from iCustom it will only load once. input= NumberOfBars,MAPeriod,LookBack