shareValueROE {stockAnalyst} | R Documentation |
Calculates value of a share using Feltham and Ohlson Model.
Description
The residual income model used here has its origins largely in the academic work of Feltham and Ohlson (as given by Feltham and Ohlson 1995, as cited in Jerald E. Pinto, 2020).
Usage
shareValueROE(ROE, bgnBVPS, r, times)
Arguments
ROE |
A number vector. |
bgnBVPS |
A number. |
r |
A number. |
times |
A number vector. |
Details
According to information provided by Jerald E. Pinto (2020), the method shareValueROE
is developed to compute value of share using Residual Income Model with given values of ROE and beginning Book Values Per Share(bgnBVPS) for a specified number of years for the values passed to its four arguments. Here, bgnBVPS
is a vector of the beginning or current book value per share for a specified number of years, ROE
is a vector of given values of Return on Equity for a specified number of years, r
is the required rate of return on the stock, and times
is a vector of number of years ranging from 1 to any specified number of years Residual Income Values are to be computed. The shareValueROE
computes Residual Incomes as EPS minus per share equity charge for specified number of years and then computes sum of discounted values of Residual Income that is added to current Book value per share to arrive at the share value.
Value
Input values to four arguments bgnBVPS
ROE
, r
,and times
.
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
shareValueROE(ROE=c(0.3333,0.3571,0.4848), bgnBVPS=c(6,7,8.25),r=0.10,times=c(1,2,3))