Help me please. I have the Strategy with some default parameters. This parameters I can change in the Settings.
Part of the code with this parameters:
[Range(0, 100),NinjaScriptProperty]
[Display(Name = "Quantity", Order = 10, GroupName = "MA")]
public int Qty1 { get; set; }
[NinjaScriptProperty]
[Display(Name = "MA Type 1", Order = 20, GroupName = "MA")]
public MAType MAType1_1 { get; set; }
[Range(1, int.MaxValue),NinjaScriptProperty]
[Display(Name = "Fast MA", Order = 30, GroupName = "MA")]
public int Period1_1 { get; set; }
[NinjaScriptProperty]
[Display(Name = "Color Fast MA", Order = 32, GroupName = "MA")]
public Brush BrushMA1_1 { get; set; }
[NinjaScriptProperty]
[Display(Name = "Width Fast MA", Order = 35, GroupName = "MA")]
public int WidthMA1_1 { get; set; }
BUT when I saved some random other parameters in Template - I don't see this parameters when I read it from this Template.
When I open XML file with this template - I see only default parameters and don't see default parameter for color MA (Brush BrushMA1_1)
what i don't see?
Thanks
Comment