The error I am getting is "Non-Invocable member 'EMA' cannot be used like a method". I am getting it for 2 other indicators as well.
This is the code I am using:
else if (State == State.DataLoaded)
{
ema = EMA(EmaPeriod);
adx = ADX(AdxPeriod);
alligator = WisemanAlligator(Close);
}
Can anybody help me resolve these compiling errors?

Comment