calculateCustomLeveredDCF
Run a personalized Discounted Cash Flow (DCF) analysis to value a company by customizing assumptions for revenue growth, EBITDA, tax rate, and other financial metrics using detailed inputs and advanced modeling techniques.
Instructions
Run a tailored Discounted Cash Flow (DCF) analysis using the FMP Custom DCF Advanced API. With detailed inputs, this API allows users to fine-tune their assumptions and variables, offering a more personalized and precise valuation for a company.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"beta": {
"description": "Beta",
"type": "number"
},
"capitalExpenditurePct": {
"description": "Capital expenditure percentage",
"type": "number"
},
"cashAndShortTermInvestmentsPct": {
"description": "Cash and short term investments percentage",
"type": "number"
},
"costOfDebt": {
"description": "Cost of debt",
"type": "number"
},
"costOfEquity": {
"description": "Cost of equity",
"type": "number"
},
"depreciationAndAmortizationPct": {
"description": "Depreciation and amortization percentage",
"type": "number"
},
"ebitPct": {
"description": "EBIT percentage",
"type": "number"
},
"ebitdaPct": {
"description": "EBITDA percentage",
"type": "number"
},
"inventoriesPct": {
"description": "Inventories percentage",
"type": "number"
},
"longTermGrowthRate": {
"description": "Long term growth rate",
"type": "number"
},
"marketRiskPremium": {
"description": "Market risk premium",
"type": "number"
},
"operatingCashFlowPct": {
"description": "Operating cash flow percentage",
"type": "number"
},
"payablePct": {
"description": "Payable percentage",
"type": "number"
},
"receivablesPct": {
"description": "Receivables percentage",
"type": "number"
},
"revenueGrowthPct": {
"description": "Revenue growth percentage",
"type": "number"
},
"riskFreeRate": {
"description": "Risk-free rate",
"type": "number"
},
"sellingGeneralAndAdministrativeExpensesPct": {
"description": "Selling, general and administrative expenses percentage",
"type": "number"
},
"symbol": {
"description": "Stock symbol",
"type": "string"
},
"taxRate": {
"description": "Tax rate",
"type": "number"
}
},
"required": [
"symbol"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}