diff --git a/indicators/VIXRatio.cs b/indicators/VIXRatio.cs index b911b48..413549a 100644 --- a/indicators/VIXRatio.cs +++ b/indicators/VIXRatio.cs @@ -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) {