getDCFValuation
Calculate the intrinsic value of a company using the Discounted Cash Flow (DCF) method. Input a stock symbol to estimate valuation based on projected cash flows and discount rates for informed investment decisions.
Instructions
Estimate the intrinsic value of a company with the FMP Discounted Cash Flow Valuation API. Calculate the DCF valuation based on expected future cash flows and discount rates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock symbol |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}