-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathturnover_constraint.Rd
50 lines (43 loc) · 1.23 KB
/
turnover_constraint.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
\name{turnover_constraint}
\alias{turnover_constraint}
\title{constructor for turnover_constraint}
\usage{
turnover_constraint(type = "turnover", turnover_target,
enabled = TRUE, message = FALSE, ...)
}
\arguments{
\item{type}{character type of the constraint}
\item{turnover_target}{target turnover value}
\item{enabled}{TRUE/FALSE}
\item{message}{TRUE/FALSE. The default is message=FALSE.
Display messages if TRUE.}
\item{\dots}{any other passthru parameters to specify box
and/or group constraints}
}
\value{
an object of class 'turnover_constraint'
}
\description{
The turnover constraint specifies a target turnover
value. This function is called by add.constraint when
type="turnover" is specified, see
\code{\link{add.constraint}}. Turnover is calculated from
a set of initial weights.
}
\details{
Note that with the ROI solvers, turnover constraint is
currently only supported for the global minimum variance
and quadratic utility problems with ROI quadprog plugin.
}
\examples{
data(edhec)
ret <- edhec[, 1:4]
pspec <- portfolio.spec(assets=colnames(ret))
pspec <- add.constraint(portfolio=pspec, type="turnover", turnover_target=0.6)
}
\author{
Ross Bennett
}
\seealso{
\code{\link{add.constraint}}
}