
Last chance! 50% off unlimited learning
Sale ends in
Strategy
-objectGets the trading signals of an object of class Strategy
that were output from strategy calculation.
getSignals(object, from = NULL, until = NULL, which = NULL,
use.backtest = FALSE)# S4 method for Strategy
getSignals(object, from = NULL, until = NULL,
which = NULL, use.backtest = FALSE)
An object of class Strategy
.
The date in character format "yyyy-MM-dd"
or as date-object from which signals shall be returned. If NULL
, no restriction is made.
The date in character format "yyyy-MM-dd"
or as date-object until which signals shall be returned. If NULL
, no restriction is made.
Names or column-number of assets that should be returned. If NULL
, all signals are returned.
If set to TRUE
, the signals of the backtest are returned. Requires backtest
to be executed first.
# NOT RUN {
##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)
# }
Run the code above in your browser using DataLab