Simple DCF

The autodcf.models.SimpleDCF class provides an interface to value a company using basic assumptions.

class autodcf.models.SimpleDCF(company, sales_growth, discount_rate, terminal_growth_rate, change_in_nwc_to_change_in_sales, tax_rate, window=5)

Creates simple DCF that uses past percentages to sales as baseline for future growth.

Simplifying Assumptions:
  • COGS, SGA, Depreciation, Amortization, Interest,

and CapEx stay at constant % relative to sales - Change in net working capital / change in sales stays constant - Tax rate stays constant over entire period

Parameters
  • company (autodcf.company.Company) – Company to do DCF analysis for.

  • sales_growth (Union[Iterable, float]) – Iterable of sales growth numbers to iterate over or constant growth rate. Values are in order, so first value in iterable applies to next sales period and last value applies to last sales period in DCF. Note, if you want to have 5% sales growth, use 0.05.

  • discount_rate (float) – Rate at which cash flow should be discounted.

  • terminal_growth_rate (float) – Rate at which sales are estimated to grow after returning to normal profit levels.

  • change_in_nwc_to_change_in_sales (float) – Ratio of how much net working capital must change to increase sales by 1 unit.

  • tax_rate (float) – Tax rate.

  • window (int) – Number of years until company returns to normal profit margins (terminal year).