WebCab XL Community Edition

Volatility.EwmaVolEst Method 

This method returns the estimate of the volatility for the ith day made at the end of the previous (i-1)th day, using an estimate of the volatility on the (i-1)th day according to the EWMA model with respect to changes in the market variable.

public double EwmaVolEst(
   double WeightRatio,
   double I_1thDayEst,
   double Endi_1thDay,
   double Starti_1thDay
);

Parameters

WeightRatio
This constant between one and zero, is the ratio between the ith weight and the (i-1)th weight. The smaller the value used the more sensitive the model is to resent changes in the volatility.
I_1thDayEst
This is the previous reading or estimate of the volatility on the (i-1)th day.
Endi_1thDay
The market variable (for example, asset price) at the close of the (i-1)th day.
Starti_1thDay
The market variable (for example, asset price) at the start of the (i-1)th day.

Remarks

The EWMA model is a special case of the ARCH model, where the weights assigned to the historical volatility measure decreases by a constant factor.

Remarks:

Excel Remarks

The full name of this function inside Excel is Port_Volatility_EwmaVolEst.

See Also

Volatility Class | Portfolio Namespace | EwmaVolEstInd