Table of Contents

Class ExponentialMovingAverageWeighting

Namespace
MongoDB.Driver.Linq
Assembly
MongoDB.Driver.dll

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 double

The alpha value.

Returns

ExponentialMovingAverageAlphaWeighting

An alpha weighting.

N(int)

Returns an positional weighting.

public static ExponentialMovingAveragePositionalWeighting N(int n)

Parameters

n int

The n value.

Returns

ExponentialMovingAveragePositionalWeighting

An n weighting.