Is there a way to make this property inside an Expandable Object be a optimizer property?
The code below won't let me set ranges when using the Optimizer. It only allows a single value, same as in Backtest.
Thanks
[TypeConverter( typeof( ExpandableObjectConverter ) )]
public class EntryCollection
{
[NinjaScriptProperty]
[Display( Name = "Contracts", GroupName = "Fields", Order = 0 )]
public int NumContracts
{ get; set; } = 1;
}
[NinjaScriptProperty]
[Display( Name = "Long Signals", GroupName = "Strategy", Order = 0 )]
public EntryCollection LongCollectionParam { get; set; }

Comment