Search found 13 matches

by Michelle
Thu May 12, 2016 9:34 pm
Forum: Examples and Sample Code
Topic: Chan & Maheu, JBES 2002 (Jump GARCH model)
Replies: 34
Views: 100171

Re: Chan & Maheu, JBES 2002 (Jump GARCH model)

Dear Tom,

Thanks for your reply. I was wondering if it is possible to use the command "forecast(model=ARJI,...)" to do the one-step-ahead forecast of the Jump GARCH model.
by Michelle
Thu May 12, 2016 9:37 am
Forum: Examples and Sample Code
Topic: Chan & Maheu, JBES 2002 (Jump GARCH model)
Replies: 34
Views: 100171

Re: Chan & Maheu, JBES 2002 (Jump GARCH model)

Dear Tom,

I would like to do some research using Chan&Maheu, JBES2002(Jump GARCH model) and I would like to do the out-of-sample analysis but don't know how to write the code. Could you please give me some advice.
Thanks a lot.
by Michelle
Wed Mar 16, 2016 2:59 am
Forum: VARs (Vector Autoregression Models)
Topic: heterogeneous autoregressive model(HAR)
Replies: 12
Views: 13680

Re: heterogeneous autoregressive model(HAR)

Dear Tom, Thanks for your reply. Could you please help me check whether the following code is right for doing the estimation of HAR model. It seems RATS will round 1/5 or 1/22 to 0, so I use 0.2 and 0.04545 instead of 1/5 and 1/22 in the code. clear(all) open data rv.xls data(format=xls,org=columns,...
by Michelle
Sun Mar 13, 2016 4:16 am
Forum: VARs (Vector Autoregression Models)
Topic: heterogeneous autoregressive model(HAR)
Replies: 12
Views: 13680

Re: heterogeneous autoregressive model(HAR)

Dear Tom, Thanks for your reply. I have tried the command "ENCODE" and it seems that this command along with "LINREG" can perfectly handle univariate version of heterogeneous autoregressive model. I tried but failed to extend it to multivariate case.As my final purpose is to calc...
by Michelle
Fri Mar 11, 2016 9:50 am
Forum: VARs (Vector Autoregression Models)
Topic: heterogeneous autoregressive model(HAR)
Replies: 12
Views: 13680

Re: heterogeneous autoregressive model(HAR)

Is it possible to regard the data as panel data and use the command "pregress" to estimate it?
by Michelle
Fri Mar 11, 2016 9:47 am
Forum: VARs (Vector Autoregression Models)
Topic: heterogeneous autoregressive model(HAR)
Replies: 12
Views: 13680

Re: heterogeneous autoregressive model(HAR)

yes.The model I would like to estimate is a multivariate version of heterogeneous autoregressive model and use it to calculate the Diebold spillover index.
by Michelle
Thu Mar 10, 2016 11:13 pm
Forum: VARs (Vector Autoregression Models)
Topic: heterogeneous autoregressive model(HAR)
Replies: 12
Views: 13680

Re: heterogeneous autoregressive model(HAR)

Dear Tom, Thanks for your reply. Actually I would like to use the heterogeneous autoregressive model(HAR) to compute Diebold Spillover Index. As for Diebold model, he use VAR as the base model and can use the following code for estimation. My question is how to rewrite it so that I can estimate the ...
by Michelle
Thu Mar 10, 2016 9:21 pm
Forum: VARs (Vector Autoregression Models)
Topic: heterogeneous autoregressive model(HAR)
Replies: 12
Views: 13680

Re: heterogeneous autoregressive model(HAR)

Dear Tom,

Thanks for your reply.
Sorry to comfuse you. The model I would like to do is like the attached PNG.

Best regards
by Michelle
Thu Mar 10, 2016 8:35 pm
Forum: VARs (Vector Autoregression Models)
Topic: heterogeneous autoregressive model(HAR)
Replies: 12
Views: 13680

heterogeneous autoregressive model(HAR)

Dear Sir, I am trying to estimate a multivariate heterogeneous autoregressive model,that is Y t =β 0 +∑_(h={1,5,22})▒〖β h Y h,t-1 〗+ε t ,whereY h,t =1/h ∑_(i=0)^(h-1)▒〖Y t-i 〗 My question is I don't know how to do it with RATS. It seems that it can not use the code "system". Please let me ...
by Michelle
Mon Nov 23, 2015 7:14 pm
Forum: ARCH and GARCH Models
Topic: ARJI-GARCH-M model
Replies: 6
Views: 11107

Re: ARJI-GARCH-M model

As for a normal GARCH-M model, only h t enters the mean equation. But to a ARJI-GARCH model, the variance of the return is var(R t | R t-1 )=h t +(θ^2+δ^2)*λt. The first part is the variance of observable base variance and the second part is the variance of the unobservable jump process. What I want...
by Michelle
Mon Nov 23, 2015 7:08 pm
Forum: ARCH and GARCH Models
Topic: ARJI-GARCH-M model
Replies: 6
Views: 11107

Re: ARJI-GARCH-M model

Dear Tom, Thanks for your reply. As for why the jump intensity enters into the mean. It is because that the jump part contains a jump arrival rate which is Poission distributed with parameter λt and a jump size Y t,k which is normal distributed with mean θ and variance δ^2. That is to say the varian...
by Michelle
Sun Nov 22, 2015 10:28 pm
Forum: ARCH and GARCH Models
Topic: ARJI-GARCH-M model
Replies: 6
Views: 11107

Re: ARJI-GARCH-M model

First, I'm not sure I understand how you generalize that to include an "M" effect. The jump GARCH model has a standard observable base variance and then the unobservable jump process where the number of jumps is unknown. For evaluating the likelihood, the latter requires summing across th...
by Michelle
Sun Nov 22, 2015 8:58 pm
Forum: ARCH and GARCH Models
Topic: ARJI-GARCH-M model
Replies: 6
Views: 11107

ARJI-GARCH-M model

Dear Tom, I would like to modify the Chan and Maheau (2002) ARJI-GARCH to an ARJI-GARCH-M model.As for the mean equation, I decompose the variance of the return into the diffusive part and the jump part and add these two parts into the mean equation sepatately, expressed as rt=a1+ a2*rt-1+ a3*ht+ a4...