Remove unnecessary parameters from IBS indicator

This commit is contained in:
moshferatu 2024-10-22 06:24:34 -07:00
parent f7da4e5b02
commit 78d7043e02

View File

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