Class ExponentialMovingAverageWeighting
Represents how values are weighted when computing the exponential moving average.
public abstract class ExponentialMovingAverageWeighting
- Inheritance
-
ExponentialMovingAverageWeighting
- Derived
- Inherited Members
Methods
Alpha(double)
Returns an alpha weighting.
public static ExponentialMovingAverageAlphaWeighting Alpha(double alpha)
Parameters
alpha
doubleThe alpha value.
Returns
- ExponentialMovingAverageAlphaWeighting
An alpha weighting.
N(int)
Returns an positional weighting.
public static ExponentialMovingAveragePositionalWeighting N(int n)
Parameters
n
intThe n value.
Returns
- ExponentialMovingAveragePositionalWeighting
An n weighting.