From f87f48cb1912f9e27ace71e1d83d21293cd2cba1 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Mon, 6 Jan 2025 10:23:49 -0800 Subject: [PATCH] Trivial re-ordering of imports in SuperSmoother indicator so that they are in alphabetical order --- indicators/super-smoother/SuperSmoother.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indicators/super-smoother/SuperSmoother.cs b/indicators/super-smoother/SuperSmoother.cs index ccfcb4e..dbba05f 100644 --- a/indicators/super-smoother/SuperSmoother.cs +++ b/indicators/super-smoother/SuperSmoother.cs @@ -1,9 +1,9 @@ #region Using declarations +using NinjaTrader.Gui; +using NinjaTrader.Gui.Chart; using System; using System.ComponentModel.DataAnnotations; using System.Windows.Media; -using NinjaTrader.Gui; -using NinjaTrader.Gui.Chart; #endregion namespace NinjaTrader.NinjaScript.Indicators