I would like to use properties in a strategy. When using a variable with type bool, I want to preset it with true. Using integer this can be done with range. How can I do that with a boolean type? Here an example:
[NinjaScriptProperty]
[Display(Name = "UseMovingAverage", GroupName = "Parameters", Order = 1)]
public bool UseMovingAverage{ get; set; }
How can I initialize the variable with UseMovingAverage=true when inserting the strategy?
Kind regards
Gerik

Comment