From 78d7043e02c176f508de39682865c6c90b679e7d Mon Sep 17 00:00:00 2001 From: moshferatu Date: Tue, 22 Oct 2024 06:24:34 -0700 Subject: [PATCH] Remove unnecessary parameters from IBS indicator --- indicators/internal-bar-strength/InternalBarStrength.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/indicators/internal-bar-strength/InternalBarStrength.cs b/indicators/internal-bar-strength/InternalBarStrength.cs index 37fe774..cf832b6 100644 --- a/indicators/internal-bar-strength/InternalBarStrength.cs +++ b/indicators/internal-bar-strength/InternalBarStrength.cs @@ -1,6 +1,5 @@ #region Using declarations using NinjaTrader.Gui; -using NinjaTrader.Gui.Chart; using System.Windows.Media; #endregion @@ -16,11 +15,6 @@ namespace NinjaTrader.NinjaScript.Indicators Name = "Internal Bar Strength"; Calculate = Calculate.OnPriceChange; IsOverlay = false; - DisplayInDataBox = true; - DrawOnPricePanel = true; - PaintPriceMarkers = true; - ScaleJustification = ScaleJustification.Right; - IsSuspendedWhileInactive = true; AddPlot(new Stroke(Brushes.Yellow, DashStyleHelper.Solid, 3), PlotStyle.Line, "Internal Bar Strength"); }