Coverage for src/cvxmarkowitz/portfolios/max_sharpe.py: 100%
20 statements
« prev ^ index » next coverage.py v7.16.1, created at 2026-09-15 05:21 +0000
« prev ^ index » next coverage.py v7.16.1, created at 2026-09-15 05:21 +0000
1# Copyright 2023 Stanford University Convex Optimization Group
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14"""Portfolio builder maximizing expected return subject to risk and basic constraints."""
16from __future__ import annotations
18from dataclasses import dataclass
20import cvxpy as cp
22from cvxmarkowitz.builder import Builder
23from cvxmarkowitz.models.expected_returns import ExpectedReturns
24from cvxmarkowitz.names import ConstraintName as C
25from cvxmarkowitz.names import ModelName as M
26from cvxmarkowitz.names import ParameterName as P
29@dataclass(frozen=True)
30class MaxSharpe(Builder):
31 """Maximize expected return under long-only, budget, and risk constraints."""
33 @property
34 def objective(self) -> cp.Maximize:
35 """Return the CVXPY objective for maximizing expected return."""
36 return cp.Maximize(self.model[M.RETURN].estimate(self.variables))
38 def __post_init__(self) -> None:
39 """Initialize models, parameters, and constraints for the builder."""
40 super().__post_init__()
42 self.model[M.RETURN] = ExpectedReturns(assets=self.assets)
44 self.parameter[P.SIGMA_MAX] = cp.Parameter(nonneg=True, name="maximal volatility")
46 self.constraints[C.LONG_ONLY] = self.weights >= 0
47 self.constraints[C.BUDGET] = cp.sum(self.weights) == 1.0
48 self.constraints[C.RISK] = self.risk.estimate(self.variables) <= self.parameter[P.SIGMA_MAX]