I'm workin on an indicator and everything worked fine, until I got an error message for just about every indicator installed. ADX is only one example:
@ADX.cs,The namespace 'NinjaTrader.NinjaScript.Indicators' already contains a definition for 'ADX',CS0101,36,15,
The other error I get looks like this:
@ADX.cs,The call is ambiguous between the following methods or properties: 'Indicator.ADX(ISeries<double>, int)' and 'Indicator.ADX(ISeries<double>, int)',CS0121,175,21,
and:
@ADX.cs,Ambiguity between 'ADX.Period' and 'ADX.Period',CS0229,52,5,
This is repeated for every indicator installed. I assume there must be a double somewhere but I have no idea where to look. Do you have any help for me?
Thank you very much!
Comment