While applying an indicator on the chart, we see the following groups of Properties related to an indicator:
- Parameters
- Data Series
- Setup
- Visual
- Lines
- Plots
For a project, I have an important objective to hide/remove all the properties listed under the following groups:
- Data Series
- Setup
#region Properties
[ NinjaScriptProperty ]
[Browsable(false)]
[ Display (Name = "Calculate", Order =1 , GroupName= "Setup" )]
public string Calculate
{get; set; }
#endregion
This successfully removed the property Calculate from the Setup group. I tried doing the same thing for other properties Label, Maximum bars look back but it did not work, perhaps due to the fact that I don’t know exactly the name and type of these properties.
Is there any file in the NinjaTrader where I can find the details (name, type etc.) of the rest of the properties and then I combine them with [Browsable(false)] to hide/remove them from indicators' settings? I welcome to suggest if there is an alternative way of doing this.
Thanks.

Comment