I'm trying to convert Ninjatrader 7 indicator to NT8. It has a class called AlertConditionCollection. I can make it property in Ninjatrader 7, so indicator could have condition editor in parameters.
Like this:
[Category("Alerts")]
[NtDisplayName("Alert1")]
public AlertConditionCollection Alert1
{
get { return alert1; }
set { alert1 = value; }
}

Comment