computingBVperShare {stockAnalyst} | R Documentation |
Calculates the Book Value (BV) per share.
Description
To compute book value per share, we need to refer to the balance sheet, which has a shareholders (or stockholders) equity section. The computation of book value is done through the following formula: Shareholders equity minus Total value of equity claims that are senior to common stock is equal to Common shareholders equity. After this, Common shareholders equity is divided by the number of common shares outstanding to get the Book value per share. Possible claims senior to the claims of common stock, which would be subtracted from shareholders’ equity, include the value of preferred stock and the dividends in arrears on preferred stock (Jerald E. Pinto, 2020).
Usage
computingBVperShare(totalEquity, prefStockMV, outstdCommShares)
Arguments
totalEquity |
number. |
prefStockMV |
number. |
outstdCommShares |
number. |
Details
According to information provided in Jerald E. Pinto (2020), the method computingBVperShare
is developed for computing the Book Value (BV) per share for the values passed to its three arguments. Here, totalEquity
is total market value of Common Equity, prefStockMV
is market value of Preference Stock, and outstdCommShares
is number of common stock shares that are outstanding.
Value
Input values to three arguments totalEquity
, prefStockMV
, and outstdCommShares
.
Author(s)
MaheshP Kumar, maheshparamjitkumar@gmail.com
Examples
computingBVperShare(totalEquity=49000,prefStockMV=3396,outstdCommShares=918.2)