garchfit significance
1 回表示 (過去 30 日間)
古いコメントを表示
what is the exact level of t-stat in the garchfit outcome to become significance for 1% and 5%
Parameter Value Error T Statistic
----------- ----------- ------------ -----------
C -0.0013526 0.0013368 -1.0119
K 0.00027647 0.00014944 1.8500
GARCH(1) 0.77871 0.10106 7.7057
ARCH(1) 0.073557 0.028595 2.572
0 件のコメント
回答 (1 件)
Wayne King
2011 年 11 月 16 日
You can evaluate that statistic on the t(N-p) pdf where N is the length of the time series and p is the number of parameters you are estimating. Keep in mind that for even small time series lengths, this N-p number will exceed 30. If you have a t distribution where the number of degrees of freedom exceeds 30, then you can essentially use the N(0,1) distribtuion.
Compare:
1-tcdf(2,30)
ans =
0.0273
1-normcdf(2,0,1)
ans =
0.0228
So for your T statistic of 1.85, take your time series length - the number of parameters you are estimating and set that equal to dof, then do:
2*(1-tcdf(1.85,dof))
that gives you the significance level.
1 件のコメント
参考
カテゴリ
Help Center および File Exchange で Conditional Variance Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!