stock.price | R Documentation |
This function computes the intrinsic stock price using the constant growth dividend discount model.
stock.price(dividend, k = NULL, g = NULL, ROE = NULL, b = NULL,
riskFree = NULL, marketPremium = NULL, beta = NULL)
dividend |
expected dividend(s) for the next year(s) (in euros), separated by commas |
k |
required rate of return |
g |
growth rate of dividends |
ROE |
return on investment |
b |
plowback ratio |
riskFree |
riskfree rate |
marketPremium |
market risk premium |
beta |
beta |
All the above rates are given in percentages (except the dividends). One should provide either k or the following three: riskFree, marketPremium, beta. Further, one should provide either g or the following two: ROE and b. In the output, k and g are given in decimals.
dividend |
expected dividend(s) for the next year(s) (in euros) |
k |
required rate of return |
g |
growth rate of dividends |
PVGO |
present value of growths opportunities |
stockPrice |
intrinsic stock price |
Arto Luoma <arto.luoma@wippies.com>
Bodie, Kane, and Marcus (2014) Investments, 10th Global Edition, McGraw-Hill Education, (see Dividend Discount Models in Section 18.3).
stock.price(dividend=c(1),k=12,g=10)
stock.price(dividend=c(1),ROE=50,b=20,riskFree=5,marketPremium=8,
beta=90)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.