Skip to content
13

Tracking Error Constraints

PortfolioOptimisers.set_tracking_error_constraints! Function
julia
set_tracking_error_constraints!(args...; kwargs...)

Add tracking error constraints to the JuMP optimisation model.

The fall-through method does nothing. Concrete methods dispatch on the tracking algorithm type:

The collection method iterates over all tracking errors in tres.

Arguments

  • model::JuMP.Model: The JuMP optimisation model.

  • i::Integer: Constraint index for generating unique variable and constraint names.

  • pr::AbstractPriorResult: Prior result providing the return matrix X.

  • tr: Tracking error specification.

  • opt: Optimisation estimator (required for risk-based tracking variants).

  • pl: Optional phylogeny constraints.

  • fees: Optional fees structure.

Returns

  • nothing.

Related

source