Topics concerning MT4 and MQL4 have their own section.
In future please post in the correct section.
I have moved your topic to the MQL4 and Metatrader 4 section.
- adrian_04: #include "MQL4\Indicators\lastmanstandingindicatorv11.ex4"
You include code to compile. You can not include compiled code (EX4). Delete that line.
- adrian_04: double majorSwingHigh = iCustom(NULL, 0, "lastmanstandingindicatorv11", something, something, something...)
The externs (plus buffer number and shift) are your somethings.
Detailed explanation of iCustom - MQL4 programming forum 2017.05.23

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
Hello, I am very new to mql4 so go easy on me.
I recently downloaded an indicator and am currently trying to call said indicator from an expert advisor. I'm pretty sure I need to be using the iCustom function however, I can't figure out how to read the code for the indicator to find out how to correctly enter the necessary parameters in the EA.
I have a hunch that I need to use the following two lines somewhere in the code for the EA:
#include "MQL4\Indicators\lastmanstandingindicatorv11.ex4"
double majorSwingHigh = iCustom(NULL, 0, "lastmanstandingindicatorv11", something, something, something...)
Below is the code for the indicator
Any help would be greatly appreciated!