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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1046 views
  • 0 likes
  • 2 in conversation