Hi every body i want to get return value from an indicator names Spider Indicator
i use iCustome Function in MQL4 i have to mention that i use MT4 Here is my Code:
I get unknown Resource Type error when i try to compile it what should i do?
Try to delete both #resource line
if i delete resource lines how i have to call it?
it automatically call the indicators. Maybe I get you wrong, but have you try to delete those lines?
Hi every body i want to get return value from an indicator names Spider Indicator
i use iCustome Function in MQL4 i have to mention that i use MT4 Here is my Code:
I get unknown Resource Type error when i try to compile it what should i do?
Always try using reliable and original named indicators rather than renamed stuff
these i think are MACD and ADX indicators
-
Make sure the indicators are in the «DataFolder»\Indicators.
Data Structure in MetaTrader 4 Build 600 and Higher - MQL4 Articles 2014.02.03 -
Why are you trying to use a resource? If you really want a resource, fix the iCustom call (№ 3). Otherwise, just drop the #resource.
-
#resource "\\Indicators\\SpiderIndicator2.ex4" ⋮ double spider1 = iCustom(Symbol(),Period(),"SpiderIndicator1",1,1);
You are trying to call a local indicator, not the one in the resource.
Use the publicly released code - MQL5 programming forum 2017.02.20
Resources - MQL4 ReferenceBe aware that using resources is 40x times slower than using CIs directly.
A custom indicator as a resource - MQL4 programming forum 2019.11.26Also make use there are no spaces in the path.
Getting error 4802 when loading custom indicator that loads another custom indicator with iCustom - Technical Indicators - MQL5 programming forum.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi every body i want to get return value from an indicator names Spider Indicator
i use iCustome Function in MQL4 i have to mention that i use MT4 Here is my Code:
I get unknown Resource Type error when i try to compile it what should i do?