Introductie tot portefeuille-analyse in Python
Charlotte Werger
Data Scientist
$$
$$


Maximale Sharpe-portefeuille: de hoogste Sharpe-ratio op de EF
from pypfopt.efficient_frontier import EfficientFrontier
# Calculate the Efficient Frontier with mu and S
ef = EfficientFrontier(mu, Sigma)
raw_weights = ef.max_sharpe()
# Get interpretable weights
cleaned_weights = ef.clean_weights()
{'GOOG': 0.01269,'AAPL': 0.09202,'FB': 0.19856,
'BABA': 0.09642,'AMZN': 0.07158,'GE': 0.02456,...}
# Get performance numbers
ef.portfolio_performance(verbose=True)
Verwacht jaarlijks rendement: 33,0%
Jaarlijkse volatiliteit: 21,7%
Sharpe-ratio: 1,43
Minimale-volatiliteitportefeuille: het laagste risiconiveau op de EF
# Calculate the Efficient Frontier with mu and S
ef = EfficientFrontier(mu, Sigma)
raw_weights = ef.min_volatility()
# Get interpretable weights and performance numbers
cleaned_weights = ef.clean_weights()
{'GOOG': 0.05664, 'AAPL': 0.087, 'FB': 0.1591,
'BABA': 0.09784, 'AMZN': 0.06986, 'GE': 0.0123,...}
ef.portfolio_performance(verbose=True)
Verwacht jaarlijks rendement: 17,4%
Jaarlijkse volatiliteit: 13,2%
Sharpe-ratio: 1,28


Introductie tot portefeuille-analyse in Python