I have a number of user defined properties in my strategy and I have grouped them into different groups, see the example code below:
[NinjaScriptProperty]
[Display(Name="Use key level stop", Order=11, GroupName="Stop loss configuration")]
public bool Use_key_level_stop
{ get; set; }
[NinjaScriptProperty]
[Display(Name="Use VWAP?", Order=12, GroupName="Indicators")]
public bool Use_vwap
{ get; set; }
I am able to define the order of the various properties using the 'Order=X' parameter however the groups appear to be alphabetically ordered. Is there a way to order these groups based on my preference and not alphabetically i.e in the example below order the 'Indicators' group below the 'Stop loss configuration' group?

Comment