From 06b3235fc14734d7ba2d19d3b73297245f55eef0 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Thu, 26 Sep 2024 05:47:07 -0700 Subject: [PATCH] Rename property group to accurately reflect %B indicator name --- indicators/%b/PercentB.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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]