Can not read indicator signals.

 
Hello @ All,

I received the following indicator from a internet friend and its make very good signals.

its signals are:

Short and ExtitSchort just as Buy and ExitLong

Unfortunately, I can not read these signals per iCustom() and I don't have its source-code.

Is it possibly to be read these signals?

I would like to import these signals in my EA.

Please see Attached files


Thanks very much,
 

IWFM

Use following code, using pV of 0 to 7 (or actually 0 - 3 for this one - use Data Navigator to show them)

pIx is the index - 0 = current, 1 = prev, 9999-ish = oldest

double CallIndName(int pV, int pIx)

{

double res;

res = iCustom(NULL, 0, "IndicatorSignals",

"Icho", 9, 26, 52,

"E/E", true, true,

"RSI", 9, 20,

pV, pIx);

return (res);

}

 

It works.

Thank you very much.