shareValThreeStg {stockAnalyst}R Documentation

Calculates share value using three-stage Free Cash Flow Model.

Description

Three-stage models are a straightforward extension of the two-stage models (Jerald E. Pinto, 2020). The example used in this method uses cash flow values for four years only. In the given example, stage one lasts for first two years and has cash flows of 2.8 million dollars each year with growth rate of 8.8 percent. The second stage, in the given example, lasts just for one year and has cash flows of 2.8 million dollars with growth rate of 7.4 percent, and the third stage, in the given example, has cash flows of 2.8 million dollars with low growth rate of 6.6 percent. However, it is more practical to you have values for, let us say 8 years, where first stage of high constant growth continues let us say for four years, followed by second stage of declining growth for three years, and then third stage of low constant growth thereafter.

Usage

shareValThreeStg(FCFE, t, G, r, s)

Arguments

FCFE

A vector.

t

A vector.

G

A vector.

r

A number.

s

A number.

Details

The version of a three-stage model used here assumes constant high growth in first stage, declining growth in second transitory stage and low constant growth in third stage.The method shareValThreeStg is developed to compute share value using three stage Free Cash Flow Model for the values passed to its five arguments. Here, FCFE is a vector of given amounts of future Free Cash Flow to the Equity (FCFE) in millions of dollars , t is vector of number of years ranging from 1 to any specified number of years used for computing the cumulative value of given Free Cash Flows , G is a vector of Growth rates in all the three stages, r is required rate of return on equity (WACC can be used as r here), and s is number of shares in millions, so a value of 0.5 means 500,000 outstanding shares.

Value

Input values to five arguments FCFE, t, G r and s.

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

shareValThreeStg(FCFE=c(2.8,2.8,2.8,2.8),t=c(1,2,3,4),G=c(0.088,0.088,0.074,0.066),r=0.1,s=0.5)

[Package stockAnalyst version 1.0.1 Index]