charts for Quantower
This commit is contained in:
Miha Kralj
2024-11-06 20:56:32 -08:00
parent 0bae9ce15b
commit 582a0256ec
75 changed files with 652 additions and 281 deletions
+2 -2
View File
@@ -39,8 +39,8 @@ public class JbandsIndicator : Indicator, IWatchlistIndicator
Description = "Upper and Lower Bands.";
SeparateWindow = false;
UbSeries = new("UB", Color.Blue, 2, LineStyle.Solid);
LbSeries = new("LB", Color.Red, 2, LineStyle.Solid);
UbSeries = new("UB", color: IndicatorExtensions.Volatility, 2, LineStyle.Solid);
LbSeries = new("LB", color: IndicatorExtensions.Volatility, 2, LineStyle.Solid);
AddLineSeries(UbSeries);
AddLineSeries(LbSeries);
}