How do I get the second value of a custom indicator?

 

How do I get the second value (the signal level) of a custom indicator? Im using the following syntax QQE = iCustom(NULL,PERIOD_H1, "QQE", 2, 0) but it always returns the main level


Thanks, Steve

 
mode - Line index. Can be from 0 to 7 and must correspond with the index used by one of SetIndexBuffer functions.

IF you have the code for the QQE, look at it and figure out which index buffer has the information you want to retrieve.

If no code, try each index. Maybe it is not index 2.

 
phy:
mode - Line index. Can be from 0 to 7 and must correspond with the index used by one of SetIndexBuffer functions.

IF you have the code for the QQE, look at it and figure out which index buffer has the information you want to retrieve.

If no code, try each index. Maybe it is not index 2.

Hi Phy,


Thanks for you reply.

I have tried all value 0 to 7 and they all return the main level. Do I need to include the "Parameters set"? I assume these are the external variables which the indicator has 9


Regards, Steve

 

Does QQE have any input values? If so, you didn't include them in the iCustom call.

Reason: