SAS中文论坛

 找回密码
 立即注册

扫一扫,访问微社区

查看: 1572|回复: 1
打印 上一主题 下一主题

SAS里不能直接估计GJR GARCH模型吗?

[复制链接]

49

主题

76

帖子

1462

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1462
楼主
 楼主| 发表于 2004-4-29 20:03:37 | 只看该作者

SAS里不能直接估计GJR GARCH模型吗?

在proc autoreg里,能否直接估计非对称的GJR GARCH模型?

proc autoreg data=r;
model y=/ garch=(q=1,p=1,type=?);
run;

type=的选项只有exp, INTEGRATED,
回复 支持 反对

使用道具 举报

49

主题

76

帖子

1462

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1462
沙发
 楼主| 发表于 2004-4-30 09:20:00 | 只看该作者
在autoreg 里好像不行,

我查了一下, 利用model可以实现,看起来还挺复杂的!

GJR-GARCH Model
Another asymmetric GARCH process is the GJR-GARCH model of Glosten, Jagannathan and Runkle (1993). They propose modeling , where vt is i.i.d. with zero mean and unit variance, and



where It-1=1 if  and It-1=0 if ut-1<0.

You can use the following code to estimate a GJR-GARCH(1,1) model.


   /* Estimate GJR-GARCH Model */         
   proc model data = gjrgarch ;
      parms arch0 .1 arch1 .2 garch1 .75 phi .1;
      /* mean model */
      y = intercept ;
      /* variance model */
      if zlag(resid.y) > 0 then
         h.y = arch0 + arch1*xlag(resid.y**2,mse.y) + garch1*xlag(h.y,mse.y)  ;
      else
         h.y = arch0 + arch1*xlag(resid.y**2,mse.y) + garch1*xlag(h.y,mse.y) +
               phi*xlag(resid.y**2,mse.y) ;
      /* fit the model */
      fit y / method = marquardt fiml ;
   run ; quit;
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|小黑屋|手机版|Archiver|SAS中文论坛  

GMT+8, 2025-1-10 00:06 , Processed in 0.183640 second(s), 20 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表