diff --git a/indicators/%b/PercentB.cs b/indicators/%b/PercentB.cs index df797ed..90b02a2 100644 --- a/indicators/%b/PercentB.cs +++ b/indicators/%b/PercentB.cs @@ -8,7 +8,7 @@ using System.Windows.Media; namespace NinjaTrader.NinjaScript.Indicators { - [CategoryOrder("Bollinger Bands", 1)] + [CategoryOrder("%B", 1)] [CategoryOrder("Plots", 2)] public class PercentB : Indicator { @@ -67,13 +67,13 @@ namespace NinjaTrader.NinjaScript.Indicators [Browsable(true)] [Range(1, int.MaxValue)] [NinjaScriptProperty] - [Display(Name = "Moving Average Period", GroupName = "Bollinger Bands", Order = 1)] + [Display(Name = "Moving Average Period", GroupName = "%B", Order = 1)] public int Period { get; set; } [Browsable(true)] [Range(0.1, double.MaxValue)] [NinjaScriptProperty] - [Display(Name = "Standard Deviations", GroupName = "Bollinger Bands", Order = 2)] + [Display(Name = "Standard Deviations", GroupName = "%B", Order = 2)] public double StandardDeviations { get; set; } [NinjaScriptProperty]