Skip to main content

Equity bridge in lib/dcf_engine.py

The equity bridge is the final step of the valuation, implemented within the DCF engine module. It converts the discounted operating value of the firm into a per-share equity value.

The bridge

Key function

equity_bridge()

Parameters:
  • operating_value — present value of the firm (from discounting)
  • debt — book value of debt
  • cash — cash and marketable securities
  • minority_interests — minority interest claims (if any)
  • option_value — total employee option value (from option_value.py)
  • failure_probability — probability of corporate failure (from failure_rate.py)
  • distress_proceeds — recovery value in failure scenario
  • shares — shares outstanding
Returns: Dictionary with equity value, value per share, and each bridge component.