I have my custom base indicator skeleton:
namespace NinjaTrader.NinjaScript.Indicators
{
public class MyBaseIndi : Indicator
{
//here I have only several my C# generic methods, which I reuse in all indis
}
}
and have all other indicators based/inherited from to that:
namespace NinjaTrader.NinjaScript.Indicators
{
public class MyIndicator1 : MyBaseIndi
{
}
}


Comment