week-5 Flashcards
1
Q
IF-THEN-ELSE
A
Sub Lesson05p03()
For i = 2 To 5
If Cells(i, 2) = “Non Advisory” Then
If Cells(i, 3) = “Online” Then
Rate1 = 0.0028
Else
Rate1 = 0.00375
End If
Else
If Cells(i, 3) = “Online” Then
Rate1 = 0.0033
Else
Rate1 = 0.005
End If
End If
Cells(i, 7) = Cells(i, 4) * Rate1
Next i
End Sub
2
Q
Global Minimum Variance Portfolio
A
lowest risk portfolio
minimize variance
w(T) Sw - portfolio variance
make subject to 1(T)w = 1
3
Q
A