getCosts {Strategy} | R Documentation |
Strategy
-objectReturns the fixed and relative trading costs of an object of class Strategy
..
getCosts(object)
## S4 method for signature 'Strategy'
getCosts(object)
object |
An object of class |
##Not run:
# MA(200)-Strategy
params <- list(k=200)
myStrat.MA <- Strategy(assets=assets, strat="MA", strat.params=params)
# Get strategy function from MA(200)-Strategy
MA.costs <- getCosts(myStrat.MA)
# return fix costs
MA.costs$fix
# return relative costs
MA.costs$relative
##End(Not run)