Learn R Programming

Strategy (version 1.0.1)

getStratName: Get strategy function name from Strategy-object

Description

Gets the strategy function name of an object of class Strategy that was used for strategy calculation. This function is for aesthetic purposes only and does not have any numerical relevance.

Usage

getStratName(object, include.params = FALSE)

# S4 method for Strategy getStratName(object, include.params = FALSE)

Arguments

object

An object of class Strategy.

include.params

If set to TRUE, the parameters used for strategy evaluation are included.

Examples

Run this code
# NOT RUN {
##Not run:

# MA(200)-Strategy
params <- list(k=200)
myStrat.MA <- Strategy(assets=assets, strat="MA", strat.params=params)

# Get strategy function name from MA(200)-Strategy
getStratName(myStrat.MA) # returns "MA"
getStratName(myStrat.MA, include.params=TRUE) # returns "MA(200)"

##End(Not run)
# }

Run the code above in your browser using DataLab