Referencing a Custom Indicator in an EA

 

Need some quick guidance. I am trying to reference a custom indicator in an EA. When the indicator is one line, it is very easy and straight forward. However, if the indicator has multiple lines, I am not sure how to reference those individual lines.

If the indicator named SampleInd has line1 and line 2, how do I get the EA to know which line I want it to reference?


double val=iCustom(NULL, 0, "SampleInd",13,1,0);


Thanks!

 

CC

double val0_0=iCustom(NULL, 0, "SampleInd",13,0,0); // Returns the current position of the first line (i.e. number zero)
double val1_0=iCustom(NULL, 0, "SampleInd",13,1,0); // Returns the current position of the second line (confusingly is number 1)
double val0_1=iCustom(NULL, 0, "SampleInd",13,0,1); // Returns the last closed bar position of the first line
double val1_1=iCustom(NULL, 0, "SampleInd",13,1,1); // Returns the last closed bar position of the second line 

Good Luck

-BB-

Reason: