From f3d422af79ff9ac1f14ba80009f0e1eae1667352 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Fri, 3 Jan 2025 08:52:48 -0800 Subject: [PATCH] Re-order properties in SuperBot strategy --- strategies/super-bot/SuperBot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strategies/super-bot/SuperBot.cs b/strategies/super-bot/SuperBot.cs index ad220f6..4b37a30 100644 --- a/strategies/super-bot/SuperBot.cs +++ b/strategies/super-bot/SuperBot.cs @@ -13,8 +13,8 @@ namespace NinjaTrader.NinjaScript.Strategies { if (State == State.SetDefaults) { - Description = @"Bot based on John F. Ehlers' SuperSmoother"; Name = "SuperBot"; + Description = @"Strategy based on John F. Ehlers' SuperSmoother"; Calculate = Calculate.OnBarClose; EntriesPerDirection = 1; }