CommencerCommencer gratuitement

Calculate Value During Projection Period

The FCFE projections are stored in the fcfe data frame. Now that you have an estimate for the cost of equity (ke) of 11.55%, calculate the value as of December 31, 2016 of the FCFE during the projection period.

Cet exercice fait partie du cours

Equity Valuation in R

Afficher le cours

Instructions

  • Add discount periods to fcfe object.
  • Calculate the discount factor for each year.
  • Calculate the present value of each cash flow.
  • Sum the PVs of each cash flow to calculate the projection period value.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Calculate Discount Periods to 12/31/2016
fcfe$disc_periods <- ___

# Calculate discount factor
fcfe$disc_factor <- ___

# Calculate PV of each period's total free cash flow
fcfe$pv <- ___

# Calculate Projection Period Value
pv_proj_period <- ___
pv_proj_period
Modifier et exécuter le code