Don't suspend the indicator while inactive

This commit is contained in:
moshferatu 2023-10-05 05:48:32 -07:00
parent f39cf6aae9
commit 5886032e88

View File

@ -52,7 +52,7 @@ namespace NinjaTrader.NinjaScript.Indicators
IsOverlay = true; IsOverlay = true;
DrawOnPricePanel = true; DrawOnPricePanel = true;
ScaleJustification = ScaleJustification.Right; ScaleJustification = ScaleJustification.Right;
IsSuspendedWhileInactive = true; IsSuspendedWhileInactive = false;
VPOCStroke = new Stroke(Brushes.Yellow, DashStyleHelper.Solid, 3); VPOCStroke = new Stroke(Brushes.Yellow, DashStyleHelper.Solid, 3);
} }
else if (State == State.Configure) else if (State == State.Configure)