Description Usage Arguments Examples
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.
1 2 3 4 | getStratName(object, include.params = FALSE)
## S4 method for signature 'Strategy'
getStratName(object, include.params = FALSE)
|
object |
An object of class |
include.params |
If set to |
1 2 3 4 5 6 7 8 9 10 11 | ##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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.