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
+1 -1
View File
@@ -38,7 +38,7 @@ public class CmoIndicator : Indicator, IWatchlistIndicator
Description = "Measures the momentum of price changes using the difference between the sum of recent gains and the sum of recent losses.";
SeparateWindow = true;
SourceName = Source.ToString();
CmoSeries = new($"CMO {Periods}", Color.Blue, 2, LineStyle.Solid);
CmoSeries = new($"CMO {Periods}", color: IndicatorExtensions.Volatility, 2, LineStyle.Solid);
AddLineSeries(CmoSeries);
}