agnosticgarchf.Rd
ANY MODEL+GARCH(1, 1) forecasting
agnosticgarchf(
y,
h = 5,
level = 95,
FUN = forecast::auto.arima,
seed = 123,
...
)
a univariate time series
number of periods for forecasting
confidence level for prediction intervals
forecasting function for the main model;
default ahead::dynrmf
reproducibility seed
An object of class "forecast"; a list containing the following elements:
A list containing information about the fitted model
The name of the forecasting method as a character string
Point forecasts for the time series
Lower bound for prediction interval
Upper bound for prediction interval
The original time series
Simulations of ANYMODEL+GARCH(1, 1)
y <- datasets::EuStockMarkets[ , "DAX"]
# require(forecast)
# z <- ahead::agnosticgarchf(y=y, h=20)
# plot(z)