Efficient Frontier
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:
- Visualizing the risk-return tradeoff
- Identifying the tangency (maximum Sharpe) portfolio
- Asset allocation across multiple risk profiles
- Communicating investment opportunities to clients
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 [Tier: PRO, Credits: 5]
Authorizations
API key for authentication. Get your key at https://api.fincept.in/auth/register
Body
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
