Make the VIX Ratio indicator plots more bold by default

This commit is contained in:
moshferatu 2024-07-02 08:14:54 -07:00
parent 5a8c6341af
commit 80cd490469

View File

@ -53,9 +53,9 @@ namespace NinjaTrader.NinjaScript.Indicators
Denominator = VIXIndex.VIX3M;
FastEMAPeriod = 7;
SlowEMAPeriod = 12;
AddPlot(new Stroke(Brushes.Yellow, 2), PlotStyle.Line, "VIX Ratio");
AddPlot(new Stroke(Brushes.Green, 2), PlotStyle.Line, "Fast EMA");
AddPlot(new Stroke(Brushes.Red, 2), PlotStyle.Line, "Slow EMA");
AddPlot(new Stroke(Brushes.Yellow, 3), PlotStyle.Line, "VIX Ratio");
AddPlot(new Stroke(Brushes.Green, 3), PlotStyle.Line, "Fast EMA");
AddPlot(new Stroke(Brushes.Red, 3), PlotStyle.Line, "Slow EMA");
}
else if (State == State.Configure)
{