namespace NinjaTrader.Indicator
{
public class MyIndicator : Indicator
{
public abstract class MyClassProvider32 : MyDll.IMyClassProvider
{
[blah]
}
}
}
I get the attached error when *trying* to add the indicator to the chart. Trying for one of my classes to inherit an interface from a .dll...NT doesn't seem to like that. What am I missing?

Comment