Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

% Given {F XOM INTC} Returns = [-0.12 0.39 -0.09] STDs = [sqrt(0.00115) sqrt(0.0003438) sqrt(0.000314382)] Correlations = [1 0.3931 0.3512; 0.3931 1 0.2554; 0.3512 0.2554

% Given {F XOM INTC} Returns = [-0.12 0.39 -0.09] STDs = [sqrt(0.00115) sqrt(0.0003438) sqrt(0.000314382)] Correlations = [1 0.3931 0.3512; 0.3931 1 0.2554; 0.3512 0.2554 1] %Variance / Covariance Matrix format short V = zeros(3) for i=1:3 for j = 1:3 V(i,j) = Correlations(i,j)*STDs(i)*STDs(j); end end V %Make N random portfolios N = 1000; Weights = rand(N,3) %Normalize Total = sum(Weights,2) Weights = Weights./Total %Expected Return of Portfolios PortReturn = Weights*Returns' %Variance of Portfolios for i = 1:N PortVar(i) = Weights(i,:)*V*Weights(i,:)'; end PortVar = PortVar'; %Plot Random Portfolios plot(sqrt(PortVar),PortReturn,'.b') hold on %Plot Pure Portfoli Problem 1: On the above Monte Carlo simulation of 1000 portfolios ,plot the efficient frontier using the KKT conditions (allows shorting). If there was something wrong with your Monte Carlo simulation on the midterm, fix it. Problem 2: On the same graph, plot the efficient frontier without allowing shorting (you can use fmincon or your favorite convex optimization software). Problem 3: Comment on the results

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Understanding Basic Statistics

Authors: Charles Henry Brase, Corrinne Pellillo Brase

6th Edition

978-1133525097, 1133525091, 1111827028, 978-1133110316, 1133110312, 978-1111827021

More Books

Students also viewed these Mathematics questions