Learn R Programming

PortfolioAnalytics (version 1.0.3636)

return_constraint: constructor for return_constraint

Description

The return constraint specifes a target mean return value. This function is called by add.constraint when type="return" is specified, add.constraint

Usage

return_constraint(type = "return", return_target, enabled = TRUE, message = FALSE, ...)

Arguments

type
character type of the constraint
return_target
return target value
enabled
TRUE/FALSE
message
TRUE/FALSE. The default is message=FALSE. Display messages if TRUE.
...
any other passthru parameters

Value

an object of class 'return_constraint'

See Also

add.constraint

Examples

Run this code
data(edhec)
ret <- edhec[, 1:4]

pspec <- portfolio.spec(assets=colnames(ret))

pspec <- add.constraint(portfolio=pspec, type="return", return_target=mean(colMeans(ret)))

Run the code above in your browser using DataLab