Coverage for src/cvxmarkowitz/portfolios/min_var.py: 100%

14 statements  

« 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"""Minimum-variance portfolio builder.""" 

15 

16from __future__ import annotations 

17 

18from dataclasses import dataclass 

19 

20import cvxpy as cp 

21 

22from cvxmarkowitz.builder import Builder 

23from cvxmarkowitz.names import ConstraintName as C 

24 

25 

26@dataclass(frozen=True) 

27class MinVar(Builder): 

28 """Construct a long-only, budget-constrained minimum-variance portfolio.""" 

29 

30 @property 

31 def objective(self) -> cp.Minimize: 

32 """Return the CVXPY objective for minimizing portfolio risk.""" 

33 return cp.Minimize(self.risk.estimate(self.variables)) 

34 

35 def __post_init__(self) -> None: 

36 """Set up default constraints for the minimum-variance portfolio.""" 

37 super().__post_init__() 

38 self.constraints[C.LONG_ONLY] = self.weights >= 0 

39 self.constraints[C.BUDGET] = cp.sum(self.weights) == 1.0