Enum MovingAverageType
- Namespace
- FinanceSharp.Indicators
- Assembly
- FinanceSharp.dll
Defines the different types of moving averages
public enum MovingAverageType
- Extension Methods
Fields
Simple = 0An unweighted, arithmetic mean
Exponential = 1The standard exponential moving average, using a smoothing factor of 2/(n+1)
Wilders = 2An exponential moving average, using a smoothing factor of 1/n and simple moving average as seeding
LinearWeightedMovingAverage = 3A weighted moving average type
DoubleExponential = 4The double exponential moving average
TripleExponential = 5The triple exponential moving average
Triangular = 6The triangular moving average
T3 = 7The T3 moving average
Kama = 8The Kaufman Adaptive Moving Average
Hull = 9The Hull Moving Average
Alma = 10The Arnaud Legoux Moving Average