BookmarkSubscribeRSS Feed
BingL
Obsidian | Level 7

Hello to whoever can help

 

please review the following program

proc autoreg data=exam4_1;
	model Rtn = / method=ml archtest
				garch=(p=1, q=1);
	output out=FTSE100 r=ehat_garch ht=hgarch;
	title "Estimate GARCH(1,1) Model and Forecast Volatility";
run;

I kinda doult that the moethd=ml is using the Levenberg-Marquardt Algorithm, because the result numbers are not close from those of my book.

 

If not, how to use Levenberg-Marquardt method in PROC AUTOREG.

 

Thank you.

1 REPLY 1
PGStats
Opal | Level 21

The optimisation method will determine how quickly you get to the solution but should not change the solution. The difference is more likely due to the type= of GARCH model that is fitted (NELSONCAO by default). 

PG

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
  • 939 views
  • 0 likes
  • 2 in conversation