problem in input variable in custom indicator with same name
-
i want use custom indicator but i have problem in input variable name.
indicator have variable with same name but i can't define variable with same name in fxdreema. i think this is not the variable real name and this is description.
how can i fix this problem?

for example bullish Structure in the image
i think in source code of this indicator define like this:
Input int bullishStructure 1// Bullish Structure
Input int bullishStructure2 // Bullish Structure -

-
Is hard to say from a picture but I think this is an enum type, to create this at the top of the indicator insert:
enum Bullish Structure
{
type 1,
type2,
type3,
type etc,
};
Get the type words from the indicator inputs, add exactly how they are, and for type add enum -
@jstap
thanks
you are true but my question is another thing.
in the inputs in picture we have two input with same name( Bullish Structure).
in source code this two input has another name because in mql5 we can't have two input with same name. my question is how can i find real name of input names? -
@hamidreza11
Variable naming in indicators has nothing to do with that in fxdreema