Fix property alignment

This commit is contained in:
moshferatu 2023-02-10 08:44:14 -08:00
parent df3d337243
commit 40db152a5b

View File

@ -35,19 +35,19 @@ namespace NinjaTrader.NinjaScript.Indicators
{
if (State == State.SetDefaults)
{
Description = @"Plots the user-defined opening range";
Name = "Opening Range";
Calculate = Calculate.OnBarClose;
IsOverlay = true;
DisplayInDataBox = true;
DrawOnPricePanel = true;
DrawHorizontalGridLines = true;
DrawVerticalGridLines = true;
PaintPriceMarkers = true;
ScaleJustification = NinjaTrader.Gui.Chart.ScaleJustification.Right;
Description = @"Plots the user-defined opening range";
Name = "Opening Range";
Calculate = Calculate.OnBarClose;
IsOverlay = true;
DisplayInDataBox = true;
DrawOnPricePanel = true;
DrawHorizontalGridLines = true;
DrawVerticalGridLines = true;
PaintPriceMarkers = true;
ScaleJustification = NinjaTrader.Gui.Chart.ScaleJustification.Right;
//Disable this property if your indicator requires custom values that cumulate with each new market data event.
//See Help Guide for additional information.
IsSuspendedWhileInactive = true;
IsSuspendedWhileInactive = true;
OpeningRangeStart = DateTime.Parse("06:30", System.Globalization.CultureInfo.InvariantCulture);
OpeningRangeEnd = DateTime.Parse("07:00", System.Globalization.CultureInfo.InvariantCulture);
TradingEnd = DateTime.Parse("13:00", System.Globalization.CultureInfo.InvariantCulture);