BookmarkSubscribeRSS Feed
Ijh_NYC
Calcite | Level 5

To whom it may concern,

The estimate I got for EGARCH1 is too high (above 0.99) and it suggests that it may not be a global maximum, is there anyway to restrict the parameter to be something smaller than 0.99?

This is the code I originally used:

proc autoreg data=Finance_Modeling_Sample;

   model y = / garch=(p=1,q=1 , type = exp);

   hetero het1 het2;

run;

The result I got, with EGARCH1(0.9950) being too high.

Intercept11.61480.0005402990.80<.0001
EARCH010.0006730.0002612.580.0099
EARCH110.07360.000454162.14<.0001
EGARCH110.99500.000069114401.0<.0001
THETA10.01660.0023816.97<.0001
HET110.0049520.0026941.840.0661
HET215.82080.61259.50<.0001

So I added the restrict statement below,

proc autoreg data=Data;

         model y = / garch=(p=1,q=1 , type = exp);

hetero het1 het2;

restrict Egarch1<=0.98;

run;

But it seems HET1 is affected and I'm not sure why t value is infinity. Something doesn't seem right. Did I use the restrict statement correctly?

Intercept11.61730.0005832776.25<.0001
EARCH01-0.02140.000477-44.90<.0001
EARCH110.14930.000776192.29<.0001
EGARCH110.98000Infty<.0001
THETA1-0.05030.002424-20.77<.0001
HET1100..
HET2137.20721.371327.13<.0001
Restrict1-195.759449.68441.930.0539
Restrict2-139224540.442272.58<.0001

I only had one restrict statement, how come there are two restrict parameters in the table above?

I also tried to hard-coded following an example online:

PROC MODEL DATA=Data;

label ro='x1 parameter'

cv='x2 parameter'

tb='x3 parameter'

tp='x4 parameter'

Dm='x5 parameter'

ro2='het1 parameter'

cv2='het2 parameter';

/*Mean model*/

log_yield = intercept+ro*x1+cv*x2+tb*x3+tp*x4+dm*x5;

/*Variance Model*/

if (_obs_=1) then

h.y=exp(earch0+egarch1*log(mse.y))+ro2*x1+CV2*x2;

else

h.y=exp(earch0+earch1*zlag(g) +egarch1*log(zlag(h.y)))+ro2*het1+CV2*het2;

g=- theta*nresid.y+abs(nresid.y) - sqrt(2/CONSTANT('pi')) ;

   

fit y/method=marquardt fiml;

run;

However, I got the following error message. My data set is mostly populated and what would you advise me to do to fix this?

A total of 87930 errors occurred for 87930 observations during execution of the model program. These errors may produce missing valued results, which may cause the observations to be omitted.

At FIML Iteration 0, with the parameter values listed below, there are 0 nonmissing observations available. At least 18 are needed to compute the next iteration.

Note:Check the starting values used for the parameter estimates. Invalid starting values can cause errors which produce missing results, and prevent the iterative estimation process from proceeding.

Thank you, in advance, for taking your time to read my question!

1 REPLY 1
ets_kps
SAS Employee

I have consulted with the author of procedure and he has informed me that currently there does not exist the capability to estimate this model with an inequality constraint.  A product improvement suggestion has been initiated. Thank you.

the correct form for an equality constraint in AUTOREG on 12.3 is .

data MyData;

    do t=1 to 1000;

Log_Yield = normal(111);

temp = normal(111);

if (temp>0) then extravar1 = 1;

else extravar1 = 0;

temp = normal(111);

if (temp>0) then extravar2 = 1;

else extravar2 = 0;

output;

    end;

    drop temp t;

    run;

proc autoreg data=MyData outest=o1;

    model Log_Yield = / garch=(p=1,q=1 , type = exp) initial=(1.6 0.01 0.07 0.1 0.01 0.01 5.47) maxiter=1000 converge=0.01 ;

    hetero extravar1 extravar2 / coef=nonneg;

    restrict _GH_1=0.0099;

  run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1039 views
  • 0 likes
  • 2 in conversation