arch.univariate.FixedVariance¶
-
class arch.univariate.FixedVariance(variance: ndarray[Any, dtype[float64]], unit_scale: bool =
False
)[source]¶ Fixed volatility process
- Parameters:¶
- variance: ndarray[Any, dtype[float64]]¶
Array containing the variances to use. Should have the same shape as the data used in the model. This is not checked since the model is not available when the FixedVariance process is created.
- unit_scale: bool =
False
¶ Flag whether to enforce a unit scale. If False, a scale parameter will be estimated so that the model variance will be proportional to
variance
. If True, the model variance is set ofvariance
Notes
Allows a fixed set of variances to be used when estimating a mean model, allowing GLS estimation.
Methods
backcast
(resids)Construct values for backcasting to start the recursion
backcast_transform
(backcast)Transformation to apply to user-provided backcast values
bounds
(resids)Returns bounds for parameters
compute_variance
(parameters, resids, sigma2, ...)Compute the variance for the ARCH model
Construct parameter constraints arrays for parameter estimation
forecast
(parameters, resids, backcast, ...)Forecast volatility from the model
Names of model parameters
simulate
(parameters, nobs, rng[, burn, ...])Simulate data from the model
starting_values
(resids)Returns starting values for the ARCH model
update
(index, parameters, resids, sigma2, ...)Compute the variance for a single observation
variance_bounds
(resids[, power])Construct loose bounds for conditional variances.
Properties
The name of the volatility process
The number of parameters in the model
Index to use to start variance subarray selection
Index to use to stop variance subarray selection
Flag indicating that the volatility process supports update
Get the volatility updater associated with the volatility process