Serving the Quantitative Finance Community

 
User avatar
aramacha001
Topic Author
Posts: 0
Joined: February 14th, 2008, 6:05 pm

efficient frontier in excel

February 14th, 2008, 6:32 pm

I have a question regarding efficient portfolio. is there a website or a book that details how to construct this in excel. i have read benninga, but i don't understand the use of arbitrary value of c. if someone can give me an intuitive explanation of that, that would be great. also, are there any other resources available either online or books where people have tweaked the assumptions and come up with a somewhat modifiend version of the efficient frontier. any help will be much appreciated. thanks so much.anish
 
User avatar
bostonquant
Posts: 0
Joined: March 26th, 2006, 7:46 pm

efficient frontier in excel

February 15th, 2008, 12:08 am

I create efficient frontiers often using R. The function portfolio.optim() in the package tseries is useful.Consider you have a:Matrix of returns (in this example they are daily) called intlEqVector of holding constraints called max and minr<-NULLtemp<-NULLr<-seq(.00046,.00052,.000001)return<-NULLrisk<-NULLfor(z in 1:length(r)){temp<-portfolio.optim(intlEq,pm=r[z],reshigh=max,reslow=min)return[z]<-(1+temp$pm)^250-1risk[z]<-(temp$ps*sqrt(250))}ef<-data.frame(return,risk) postscript(file="~/intlEq.ps")par(col="blue",cex.main=1.5,cex.lab=1.2,cex.axis=1.2)plot(y=return,x=risk,xlab="Annualized Risk",ylab="Annualized Return",main="10 Yr Historical Efficient Frontier",type="l")dev.off()
Last edited by bostonquant on February 14th, 2008, 11:00 pm, edited 1 time in total.
 
User avatar
eiriamjh
Posts: 1
Joined: October 22nd, 2002, 8:30 pm

efficient frontier in excel

February 15th, 2008, 7:56 am

Last edited by eiriamjh on February 14th, 2008, 11:00 pm, edited 1 time in total.
 
User avatar
amit7ul
Posts: 0
Joined: December 7th, 2004, 8:36 am

efficient frontier in excel

February 15th, 2008, 8:24 am

http://www.spreadsheetmodeling.com/Port ... s.htmmight help.if you know how to use excel solver then this shouldn't be difficult.
 
User avatar
untwigged
Posts: 2
Joined: January 14th, 2006, 3:21 pm

efficient frontier in excel

February 15th, 2008, 8:27 am

Here are some simple examples provided by Simon Hubbert at Birkbeck
 
User avatar
aramacha001
Topic Author
Posts: 0
Joined: February 14th, 2008, 6:05 pm

efficient frontier in excel

February 15th, 2008, 5:06 pm

Thank you all for your help. Time for me to implement these one by one. thanks again.