Remove resource type from property display attributes
This commit is contained in:
parent
2af4eb3011
commit
c904240a69
@ -67,13 +67,13 @@ namespace NinjaTrader.NinjaScript.Indicators
|
|||||||
[Browsable(true)]
|
[Browsable(true)]
|
||||||
[Range(1, int.MaxValue)]
|
[Range(1, int.MaxValue)]
|
||||||
[NinjaScriptProperty]
|
[NinjaScriptProperty]
|
||||||
[Display(ResourceType = typeof(Custom.Resource), Name = "Moving Average Period", GroupName = "Bollinger Bands", Order = 1)]
|
[Display(Name = "Moving Average Period", GroupName = "Bollinger Bands", Order = 1)]
|
||||||
public int Period { get; set; }
|
public int Period { get; set; }
|
||||||
|
|
||||||
[Browsable(true)]
|
[Browsable(true)]
|
||||||
[Range(0.1, double.MaxValue)]
|
[Range(0.1, double.MaxValue)]
|
||||||
[NinjaScriptProperty]
|
[NinjaScriptProperty]
|
||||||
[Display(ResourceType = typeof(Custom.Resource), Name = "Standard Deviations", GroupName = "Bollinger Bands", Order = 2)]
|
[Display(Name = "Standard Deviations", GroupName = "Bollinger Bands", Order = 2)]
|
||||||
public double StandardDeviations { get; set; }
|
public double StandardDeviations { get; set; }
|
||||||
|
|
||||||
[NinjaScriptProperty]
|
[NinjaScriptProperty]
|
||||||
|
Loading…
Reference in New Issue
Block a user