But if you open this utility you will find "Custom indicator".
And you may use any indicator which is not mentioned. Anyone.
It is example from Codersguru post:
Code:
double diIXO21=iCustom(NULL,0,"LSMA in Color",14,1500,0,0));
parmeter 1 :the symbol - NULL for current symbol.
parmeter 2 : time frame - 0 for current time frame.
parmeter 3 : indicator name - here it's "LSMA in Color".
parmeter 4 : this is a setting for LSMA - Rperiod = 14.
parmeter 5 : this is a setting for LSMA - Draw4HowLongg = 1500.
parmeter 6 : the line number (range from 0 to 7) - usually used 0.
parmeter 7 : the working bar - 0 for the current bar.
And this 'diIXO21' is equal, above or below something (close price or some value). In case of ASCTrendsig indcator it is above zero for example.
The other example is I_XO_A_H indicator. This indicator is having 2 "lines" - red one and green one.
It is one line (uptrend):
Code:
double diIXO10=iCustom(NULL,0,"I_XO_A_H",BoxSize,0,1);
It is the other one (downtrend):
Code:
double diIXO21=iCustom(NULL,0,"I_XO_A_H",BoxSize,1,1);
Last "1" in the code above is the close bar.
So if the first line is above zero (Number/Variable in this tool) it means uptrend on the closed bar.
We have it on the tool.
http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/
And it was described in Codersguru posts.
But I am not using this utility for iCustom.
I included this iCustom manually.
This post helped me
http://www.forex-tsd.com/1772-post4.html
And I always looked inside the indicators' codes (and inside EAs' codes) just to have some examples.
And in Codersguru training section there are some templates to create EAs (with iCustom as well).
It is easy for me to have some "template" created by utility to include any iCustom indicators later.