From 80cd4904690fec982fb8f209a50dc3fe5233c248 Mon Sep 17 00:00:00 2001 From: moshferatu Date: Tue, 2 Jul 2024 08:14:54 -0700 Subject: [PATCH] Make the VIX Ratio indicator plots more bold by default --- indicators/VIXRatio.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) {