Traces the complete efficient frontier by computing portfolios at different return levels. The frontier represents the set of portfolios offering the maximum expected return for each level of risk.
Use Cases:
Mathematical Background: Computes the efficient frontier by solving the minimum variance problem for multiple target return levels, from the minimum variance portfolio to the maximum return portfolio.
Credits: 5 per request
API key for authentication. Get your key at https://finceptbackend.share.zrok.io/auth/register
Expected returns for each asset (annualized)
[0.08, 0.12, 0.1, 0.15]Asset covariance matrix (annualized)
[
[0.04, 0.006, 0.008, 0.01],
[0.006, 0.09, 0.012, 0.015],
[0.008, 0.012, 0.0625, 0.018],
[0.01, 0.015, 0.018, 0.16]
]Number of portfolios to compute along the frontier. Higher values give smoother curves.
10 <= x <= 20050