From debe91362739ebc5b0cc0271d3caf01e16c96b59 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Thu, 9 Jan 2025 08:21:02 -0800 Subject: [PATCH] Trivial re-ordering of parameters in percent rank indicator --- indicators/percent-rank/PercentRank.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indicators/percent-rank/PercentRank.cs b/indicators/percent-rank/PercentRank.cs index 3c921ee..83a86ce 100644 --- a/indicators/percent-rank/PercentRank.cs +++ b/indicators/percent-rank/PercentRank.cs @@ -17,8 +17,8 @@ namespace NinjaTrader.NinjaScript.Indicators { if (State == State.SetDefaults) { - Description = @"Calculates the percent rank of the provided input series over the specified period"; Name = "Percent Rank"; + Description = @"Calculates the percent rank of the provided input series over the specified period"; Calculate = Calculate.OnBarClose; IsOverlay = false; DisplayInDataBox = true;