Ok this is very strange, Im working with a indicator bought in the mql5.com marker. The indicator in question is this one: https://www.mql5.com/en/market/product/4518
Ok so I have this indicator activated in my terminal and I can make use of it. And in the image below you will see that I can access the values as normal.
But Im trying to make an EA for this indicator and I use the iCustom function to access the values: iCustom(Symbol(),Period(),"adaptive-rsi",0,1);
The thing is that this function is not giving me the values exactly is giving me simillar values that is very strage, but I need the exact values. I have contacted the client and the says that this indicator has a special algorotim and you cant retrieve the values with only the .ex4. Is that even possible?
Maybe this works (for the latest value):
iCustom(Symbol(),Period(),"adaptive-rsi",0,0);
The thing is that this function is not giving me the values exactly is giving me simillar values that is very strage, but I need the exact values. I have contacted the client and the says that this indicator has a special algorotim and you cant retrieve the values with only the .ex4. Is that even possible?
Most likely that the indicator is repainting closed bars

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Ok this is very strange, Im working with a indicator bought in the mql5.com marker. The indicator in question is this one: https://www.mql5.com/en/market/product/4518
Ok so I have this indicator activated in my terminal and I can make use of it. And in the image below you will see that I can access the values as normal.
But Im trying to make an EA for this indicator and I use the iCustom function to access the values: iCustom(Symbol(),Period(),"adaptive-rsi",0,1);
The thing is that this function is not giving me the values exactly is giving me simillar values that is very strage, but I need the exact values. I have contacted the client and the says that this indicator has a special algorotim and you cant retrieve the values with only the .ex4. Is that even possible?