annulizedHPR {stockAnalyst} | R Documentation |
Calculates Annualized Holding Period Return of a Stock.
Description
The holding period rate of return (for short, the holding period return) is the return earned from investing in an asset over a specified time period. The specified time period is the holding period under examination, whether it is one day, two weeks, four years, or any other length of time (Jerald E. Pinto, 2020).
Usage
annulizedHPR(totalPershareDividendHP, spH, spNot, n)
Arguments
totalPershareDividendHP |
A number. |
spH |
A number. |
spNot |
A number. |
n |
A number. |
Details
In the example given by Jerald E. Pinto (2020), it is assumed that a share is purchased at the price of 10 dollars each, and held for three years. The company paid a per share dividend of 0.10 dollars each of the three years. So, the total per share dividend for the Holding period of 3 years comes out to be 0.30 dollars. At the end of the three years unit share price was 12 dollars. So, the total dollar value of return per share over the holding period is 2.30 dollars (0.30 as total dividend yield plus 2.00 dollars as price appreciation return). In percentage terms, HPR for 3 years is 23 percent (2.30 dollars of total return divided by 10 dollars which was unit share price in the beginning of the investment). This return of 23 percent when annualized works out to be 7.14 percent. Based on this understanding, the method annulizedHPR
is developed for computing annualized Holding Period Return of the Stock for the values passed to its four arguments. Here, totalPershareDividendHP
is the total dollar value of per share dividend for the Holding period, spH
is unit share price at the end of holding period, and spNot
represents unit share price in the beginning of the investment and n
is number of years of the holding period.
Value
Input values to four arguments totalPershareDividendHP
, spH
,spNot
and n
.
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
annulizedHPR(totalPershareDividendHP=0.30,spH=12,spNot=10,n=3)