-
Play videoPlease edit your post.
For large amounts of code, attach it
- salirazataqvi: Please tell me how to use SupportResistance indicator in Expert Advisor.How should we know when you don't supply the indicator?
- Detailed explanation of iCustom - MQL4 forum
whroeder1:
-
Please edit your post.
For large amounts of code, attach it
- How should we know when you don't supply the indicator?
- Detailed explanation of iCustom - MQL4 forum
You can find this indicator in MT4. under the menu:
Insert---->indicators---->Custom---->SupportResistance
Fabio Butto: Can somebody help me ?
- Don't hijack other people's threads with your off topic post. Do not resurrect year old threads unless you have a good reason.
- How do you expect us to help you?
- You have an indicator. Do you really expect us to know which? There are no mind readers here and our crystal balls are cracked.
- You call it using iCustom. Do you really expect an answer? We can't see your broken code. There are no mind readers here and our crystal balls are cracked.
- The platform crashes. That could mean anything, but a real crash is probably related to the DLL you mention.
- The unknown indicator imports a DLL. Do you really expect an answer? We can't see your broken code. There are no mind readers here and our crystal balls are cracked.

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
Hi all,
I am trying to use SupportResistance custom indicator available in MT4 platform using iCustom function in Expert Advisor. I am using following code.
Resistance = iCustom(NULL, 0, "SupportResistance", 0, 0);
Support = iCustom(NULL, 0, "SupportResistance", 1, 0);
By using above code I am getting both Support and Resistance 0. Then I change the code as follows:
Resistance = iCustom(NULL, 0, "SupportResistance", 0, 1);
Support = iCustom(NULL, 0, "SupportResistance", 1, 1);
By using above code I am getting only Resistance value, Support is still equals to zero.
Please tell me how to use SupportResistance indicator in Expert Advisor. Any help or code example would be highly appreciated.
Thanks.