compute_dcf
Compute a simplified discounted-cash-flow intrinsic value per share: project free cash flow per share forward at a constant growth rate, discount back at a discount rate, add a Gordon-growth terminal value. Pass fcf/growth/discount/terminal/years directly (these are judgment calls, not looked up). Optionally pass a ticker to auto-fill the current price for a margin-of-safety comparison.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fcf | Yes | Free cash flow per share | |
| price | No | Current price, used instead of a ticker lookup | |
| years | Yes | Number of projection years, e.g. 10 | |
| growth | Yes | Growth rate for the projection years, in percent, e.g. 8 | |
| ticker | No | Optional ticker, used only to fetch the current price | |
| discount | Yes | Discount rate, in percent, e.g. 10 | |
| terminal | Yes | Terminal growth rate, in percent, e.g. 2.5 |