Kwantitatief risicobeheer in Python
Jamsheed Shorish
Computational Economist

PyPortfolioOpt-bibliotheek: tools voor MPTEfficientFrontier-klasse: genereert één optimale portefeuille per keerCLA)-klasse: genereert de hele efficiënte grensCovariance Shrinkage verbetert de schattingCLAcla.min_volatility()cla.efficient_frontier()
expected_returns = mean_historical_return(prices)efficient_cov = CovarianceShrinkage(prices).ledoit_wolf()cla = CLA(expected_returns, efficient_cov)minimum_variance = cla.min_volatility()(ret, vol, weights) = cla.efficient_frontier()



Kwantitatief risicobeheer in Python