WebCab XL Community Edition

Volatility.EwmaVolEstInd Method 

Estimates 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 0th day, according to the EWMA model with respect to changes in the market variable.

public double EwmaVolEstInd(
   double WeightRatio,
   double FirstDayVolEst,
   double[] EndOfDay,
   double[] StartOfDay
);

Parameters

WeightRatio
This constant between one and zero, is the ratio between the kth weight and the (k-1)th weight, for all k. The smaller the value used the more sensitive the model is to resent changes in the volatility.
FirstDayVolEst
This is the estimate of the volatility on the 0th day.
EndOfDay
This is an array of length i+1, where the first term is the closing value of the market variable (for example, the asset price) on the 0th day, the second element is the closing value of the market variable on the 1st day and so on.
StartOfDay
This is an array of length i+1, where the first term is the opening value of the market variable (for example, the asset price) on the 0th day, the second element is the opening value of the market variable on the 1st day and so on.

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_EwmaVolEstInd.

See Also

Volatility Class | Portfolio Namespace | EwmaVolEst