## garchSpec -
spec = garchSpec()
spec
## garchSim -
x = garchSim(model = spec@model, n = 500)
head(x)
## garchFit -
# fit = garchFit(~garch(1, 1), data = x)
# print(fit)
## Interactive Plot:
## plot(fit)
## Batch Plot:
# plot(fit, which = 3)
# summary(fit)
## predict -
# predict(object, n.ahead = 10)
Run the code above in your browser using DataLab