Serving the Quantitative Finance Community

 
User avatar
misi
Topic Author
Posts: 0
Joined: November 17th, 2002, 3:49 pm

vba stats code

December 15th, 2004, 3:38 pm

hi all,I'm looking for basic econometric vba routines like linear regressions, logit, pca and so on.Has anyone already done that?thanks in advance.
 
User avatar
patch22
Posts: 0
Joined: May 9th, 2002, 7:50 am

vba stats code

December 15th, 2004, 8:33 pm

you can certainly get PCA code from the software packaged with the books of jackson&staunton and alexander.they include other time series stuff too - ARIMA, GARCH, etcthe rest should be easiest to find.
 
User avatar
exotiq
Posts: 2
Joined: October 13th, 2003, 3:45 pm

vba stats code

December 15th, 2004, 8:53 pm

Linear regressions can be done with linest() and don't need VBAFor PCA you can use the eigenvalue functions in the Quantlib xll.As you can see, I try to avoid VBA when possible ans stick to functions on the page...