What am I doing wrong or what can I do to make this work?
namespace NinjaTrader.Indicator
{
public class MyClass1 : Indicator
{ ... }
public class MyClass2 : MyClass1
{
public void DoAlert()
{
Alert(...);
}
}
}
I've tried base.Alert(), this.Alert(), Alert() by itself. I've also tried creating a function in MyClass1 that calls Alert() and then MyClass2 simply calls that function in MyClass1, but same behavior.
Everything compiles fine and a Print() shows that it is getting to the code, but it just doesn't do anything when called.
Any help is greatly appreciated,
Daniel

Comment