mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-18 18:48:05 +00:00
Momentum
charts for Quantower
This commit is contained in:
@@ -36,7 +36,7 @@ public class CurvatureIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = true;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
CurvatureSeries = new("Curvature", Color.Blue, 2, LineStyle.Solid);
|
||||
CurvatureSeries = new("Curvature", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(CurvatureSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ public class EntropyIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = true;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
EntropySeries = new("Entropy", Color.Blue, 2, LineStyle.Solid);
|
||||
EntropySeries = new("Entropy", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(EntropySeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ public class KurtosisIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = true;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
KurtosisSeries = new("Kurtosis", Color.Blue, 2, LineStyle.Solid);
|
||||
KurtosisSeries = new("Kurtosis", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(KurtosisSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ public class MaxIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = false;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
MaxSeries = new("Max", Color.Blue, 2, LineStyle.Solid);
|
||||
MaxSeries = new("Max", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(MaxSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ public class MedianIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = false;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
MedianSeries = new("Median", Color.Blue, 2, LineStyle.Solid);
|
||||
MedianSeries = new("Median", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(MedianSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ public class MinIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = false;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
MinSeries = new("Min", Color.Blue, 2, LineStyle.Solid);
|
||||
MinSeries = new("Min", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(MinSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ public class ModeIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = false;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
ModeSeries = new("Mode", Color.Blue, 2, LineStyle.Solid);
|
||||
ModeSeries = new("Mode", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(ModeSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ public class PercentileIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = false;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
PercentileSeries = new("Percentile", Color.Blue, 2, LineStyle.Solid);
|
||||
PercentileSeries = new("Percentile", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(PercentileSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ public class SkewIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = true;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
SkewSeries = new("Skew", Color.Blue, 2, LineStyle.Solid);
|
||||
SkewSeries = new("Skew", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(SkewSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ public class SlopeIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = true;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
SlopeSeries = new("Slope", Color.Blue, 2, LineStyle.Solid);
|
||||
SlopeSeries = new("Slope", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
LineSeries = new("Regression Line", Color.Red, 1, LineStyle.Solid);
|
||||
AddLineSeries(SlopeSeries);
|
||||
AddLineSeries(LineSeries);
|
||||
|
||||
@@ -38,7 +38,7 @@ public class StddevIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = true;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
StddevSeries = new("StdDev", Color.Blue, 2, LineStyle.Solid);
|
||||
StddevSeries = new("StdDev", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(StddevSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ public class VarianceIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = true;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
VarianceSeries = new("Variance", Color.Blue, 2, LineStyle.Solid);
|
||||
VarianceSeries = new("Variance", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(VarianceSeries);
|
||||
}
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ public class ZscoreIndicator : Indicator, IWatchlistIndicator
|
||||
SeparateWindow = true;
|
||||
SourceName = Source.ToString();
|
||||
|
||||
ZscoreSeries = new("Z-Score", Color.Blue, 2, LineStyle.Solid);
|
||||
ZscoreSeries = new("Z-Score", color: IndicatorExtensions.Statistics, 2, LineStyle.Solid);
|
||||
AddLineSeries(ZscoreSeries);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user