Effacer les filtres
Effacer les filtres

MFE garch tool box

2 vues (au cours des 30 derniers jours)
jenka
jenka le 4 Jan 2017
Commenté : Walter Roberson le 31 Août 2019
I have a quick question regarding garch MFE tool box. It has a function called arma_forecaster. I am using this code to test the functionality of the toolbox. I am not sure I understand it. It requires an integer R (R=500 in my case). Which is the length of sample used in estimation. It then produces the vector yhaph of size 1000x1 with first 500 observations listed as NA. The rest are predicted values. It then also asks for forecast horizon H (H=10) in my case. So should not be yhaph be of size 1010x1 as 500 observational estimation plus 10 observations for forecast? Thank you:
if true
% code
T=1000;ph1=.9;constant=1;ARorder=1; predict_lag = 10;
y=armaxfilter_simulate(T,constant,ARorder,ph1);
[param,LL,errors]=armaxfilter(y(1:500),1,1,0);
[yhaph,yhat,forer,ystd]=arma_forecaster(y,param,1,1,[],500,predict_lag);
end
  1 commentaire
Walter Roberson
Walter Roberson le 31 Août 2019

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Conditional Variance Models dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by