getSignals {Strategy} | R Documentation |
Get trading signals from Strategy
-object
Description
Gets the trading signals of an object of class Strategy
that were output from strategy calculation.
Usage
getSignals(object, from = NULL, until = NULL, which = NULL,
use.backtest = FALSE)
## S4 method for signature 'Strategy'
getSignals(object, from = NULL, until = NULL,
which = NULL, use.backtest = FALSE)
Arguments
object |
An object of class |
from |
The date in character format |
until |
The date in character format |
which |
Names or column-number of assets that should be returned. If |
use.backtest |
If set to |
Examples
##Not run:
# MA(200)-Strategy
params <- list(k=200)
myStrat.MA <- Strategy(assets=assets, strat="MA", strat.params=params)
# Get signals from MA(200)-Strategy
# all signals returned
getSignals(myStrat.MA)
# backtest signals for first two assets returned
# getSignals(myStrat.MA, which=c(1,2), use.backtest=TRUE)
##End(Not run)
[Package Strategy version 1.0.1 Index]