Formulas Flashcards
(8 cards)
Calculate Mean with Weights in a Column and Means in a Column
=SUMPRODUCT(Weights,Means)
Calculate Mean with Weights in a Column and Means in a Row
=MMULT(Row,Column)
Calculate Portfolio Standard Deviation
=SQRT(MMULT(TRANSPOSE(Weights),MMULT(VCov,Weights)))
Delta Normal VaR
=AmountxQuantilexScalexSTD
Where Quantile =NORMSINV(Confidence) and Scale =SQRT(1/n)
GMVP
=MMULT(MINVERSE(Array),Ones)/MMULT(TRANSPOSE(Ones),MMULT(MINVERSE(Array),Ones))
OR
=MMULT(MINVERSE(Array),Ones)/SUM(MMULT(MINVERSE(Array),Ones))
Efficient Portfolio
=MMULT(MINVERSE(Array),Er-c)/SUM(MMULT(MINVERSE(Array),Er-c))
Variance
=W1^2Variance1+W2^2Variance2+2W1W2*Cov
Covariance Efficient with GMVP
=MMULT(TRANSPOSE(GMVP Weights),MMULT(VCov,Efficient Weights))