I am new to mql programming
Hi have custom indicator(bought it online), I want to write EA which will check the condition and open the trade, I know it possible but what I don't understand is how to call it and get the return values from that indicator ?
Thank You
I saw that but my Point is I haven't wrote that indicator(its in ex4) so I don't know what I have to use for string name, ..., int mode, int shift, but I have template for that indicator so it possible I can extract info from template and use it in EA
to get the condition ?
double iCustom( string symbol, int timeframe, string name, ..., int mode, int shift)
- Name: filename without the .ex4
- ...: on chart control-i, select indicator, edit. Note all the properties order, type and value.
- mode: which buffer you want (zero)
- shift: which bar.
Call iCustom 8 times.
g_ibuf_14x indicates the indicator was decompiled, i.e. stolen. No one will be helping with that code.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
I am new to mql programming
Hi have custom indicator(bought it online), I want to write EA which will check the condition and open the trade, I know it possible but what I don't understand is how to call it and get the return values from that indicator ?
Thank You