I am overriding DisplayName as outlined in the Help Guide. http://ninjatrader.com/support/helpG...isplayname.htm
When the Label is blanked out in the Indicator Properties dialog, the Name of the indicator no longer shows in the Configured section of the dialog.
I am using the following undocumented code to work around the issue:
public override string DisplayName
{
get
{
if (Name == string.Empty) return "My Custom Display " + DefaultName;
else return "My Custom Display " + Name; ;
}
}

Comment