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"); }