Serving the Quantitative Finance Community

 
User avatar
gauravkumar2
Topic Author
Posts: 3
Joined: May 25th, 2009, 6:08 pm

ROLLING REGRESSION

January 11th, 2011, 5:48 am

Hi All,I am working with rolling regression. lets say I am working with window size 10, 20 and so on. But is there any way by which we can say that particular window length (say 50) is optimal to use.RegardsGaurav
 
User avatar
frattyquant
Posts: 0
Joined: March 4th, 2010, 8:10 am

ROLLING REGRESSION

January 15th, 2011, 10:11 am

How about optimizing the R^2. (of course there's 100 other ways to do this - AIC, BIC etc).
 
User avatar
jbremnant
Posts: 0
Joined: January 7th, 2011, 6:02 pm

ROLLING REGRESSION

January 20th, 2011, 1:47 pm

- make sure you have enough samples given the number of independent vars you have in your regression - your window size should be bigger the more X's you put in.- i usually sweep various window sizes to find the optimal one - yes, it's a form of overfitting- lastly, make sure your sweep window looks backward. you don't want any forward looking bias in your betas.
 
User avatar
ClosetChartist
Posts: 0
Joined: July 17th, 2003, 4:41 pm

ROLLING REGRESSION

January 21st, 2011, 1:08 pm

Rolling regression attempts to "have it both ways", which is always dangerous.Your regression model assumes that the regression coefficients are static facts of nature just waiting for you to estimate them. But by computing rolling regressions you are assuming that the regression coefficients change over time. Which is it? Are the coefficients static or dynamic? If they are dynamic, then classical regression is a very inefficient tool for the job. Look into "dynamic linear models".
 
User avatar
pnrodriguez
Posts: 1
Joined: December 19th, 2008, 1:12 pm

ROLLING REGRESSION

January 21st, 2011, 11:58 pm

Have you read this document?http://rady.ucsd.edu/faculty/directory/ ... 10.pdfHope it helps!
 
User avatar
gauravkumar2
Topic Author
Posts: 3
Joined: May 25th, 2009, 6:08 pm

ROLLING REGRESSION

January 24th, 2011, 10:19 am

Hi Everybody,Thanks a lot for your valuable inputs. Regards,Gaurav