computingRwithCAPM {stockAnalyst} | R Documentation |
Calculates CAPM based required rate of return.
Description
The CAPM is an equation for required return that should hold in equilibrium (the condition in which supply equals demand) if the assumptions of the model are met; among the key assumptions are that investors are risk averse and that they make investment decisions based on the mean return and variance of returns of their total portfolio. The chief insight of the model is that investors evaluate the risk of an asset in terms of contribution of the asset to the systematic risk of their total portfolio (systematic risk is risk that cannot be shed by portfolio diversification). Because the CAPM provides an economically grounded and relatively objective procedure for required return estimation, it has been widely used in valuation (Jerald E. Pinto, 2020).
Usage
computingRwithCAPM(RFR, marketBeta, ERP)
Arguments
RFR |
A number. |
marketBeta |
A number. |
ERP |
A number. |
Details
The CAPM based Required return on share is equal to currently expected Risk Free Return (RFR) plus market beta that is multiplied with Equity Risk Premium (ERP).For example, if the current expected risk-free return is 3 percent, the market beta of the asset is 1.20, and the equity risk premium is 4.5 percent, then the required return is 0.030 + 1.20*(0.045) = 0.084 or 8.4 percent.Based on this information provided by Jerald E. Pinto (2020), the method computingRwithCAPM
is developed for computing CAPM based required rate of return for the values passed to its three arguments.Here, RFR
is currently expected Risk Free Return, marketBeta
the market beta of the asset and, ERP
represents Equity Risk Premium.
Value
Input values to three arguments RFR
, marketBeta
and ERP
.
Author(s)
MaheshP Kumar, maheshparamjitkumar@gmail.com
References
Pinto, J. E. (2020). Equity Asset Valuation (4th ed.). Wiley Professional Development (P&T). https://bookshelf.vitalsource.com/books/9781119628194
Examples
computingRwithCAPM(RFR=.049,marketBeta=0.74,ERP=0.045)
computingRwithCAPM(RFR=.05,marketBeta=1.00,ERP=0.041)