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 50 51 52 53 54 55 56 57 58 59 60 61 62
|
\name{tradeModel}
\alias{tradeModel}
\title{ Simulate Trading of Fitted quantmod Object }
\description{
Simulated trading of fitted quantmod object. Given a fitted model,
tradeModel calculates the signal generated over a given historical
period, then applies specified \code{trade.rule} to calculate
and return a \code{tradeLog} object. Additional methods can then
be called to evaluate the performance of the model's strategy.
}
\usage{
tradeModel(x,
signal.threshold = c(0, 0),
leverage = 1,
return.model = TRUE,
plot.model = FALSE,
trade.dates = NULL,
exclude.training = TRUE,
ret.type = c("weeks", "months", "quarters", "years"),
...)
}
%- maybe also 'usage' for other objects documented here.
\arguments{
\item{x}{ a quantmod object from \code{buildModel} }
\item{signal.threshold}{ a numeric vector describing simple lower
and upper thresholds before trade occurs}
\item{leverage}{ amount of leverage to apply - currently a constant }
\item{return.model}{ should the full model be returned? }
\item{plot.model}{ plot the model? }
\item{trade.dates}{ specific trade interval - defaults to full dataset }
\item{exclude.training}{ exclude the period trained on? }
\item{ret.type}{ a table of period returns }
\item{\dots}{ additional parameters needed by the underlying modelling function, if any }
}
\details{
Still highly experimental and changing. The purpose is to apply
a newly contructed model from \code{buildModel} to a new dataset
to investigate the model's trading potential.
At present all parameters are very basic. The near term changes include
allowing for a trade.rule argument to allow for a dynamic trade rule given
a set of signals. Additional the application of variable leverage and costs
will become part of the final structure.
Any suggestions as to inclusions or alterations are appreciated and should
be directed to the maintainer of the package.
}
\value{
A quantmodResults object
}
\author{ Jeffrey A. Ryan }
\seealso{ \code{\link{specifyModel}} \code{\link{buildModel}} }
\examples{
\dontrun{
m <- specifyModel(Next(OpCl(QQQ)) ~ Lag(OpHi(QQQ)))
m.built <- buildModel(m,method='rpart',training.per=c('2007-01-01','2007-04-01'))
tradeModel(m.built)
tradeModel(m.built,leverage=2)
}
}
\keyword{ models }% at least one, from doc/KEYWORDS
|