Description Usage Arguments Value Author(s) Examples
This function estimates excess returns over the market. If the firm return is “firm.returns” and market return is “market.returns”, then output will be “firm.returns” less “market.returns”.
1 | excessReturn(firm.returns, market.returns)
|
firm.returns |
a zoo timeseries with firm returns from which excess returns from market are to be calculated. |
market.returns |
a zoo object containing market index returns. |
Excess market return
Vikram Bahure
1 2 3 4 5 6 7 8 9 10 11 |
data(StockPriceReturns)
data(OtherReturns)
er.result <- excessReturn(firm.returns = StockPriceReturns,
market.returns = OtherReturns$NiftyIndex)
tail(merge(excessReturn = er.result$Infosys,
Infosys = StockPriceReturns$Infosys,
NiftyIndex = OtherReturns$NiftyIndex,
all=FALSE))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.