forward_ebitda
Get forward EBITDA estimates.
Examples
from openbb import obb
obb.equity.estimates.forward_ebitda(provider='intrinio')
obb.equity.estimates.forward_ebitda(symbol='AAPL', fiscal_period=annual, provider='intrinio')
obb.equity.estimates.forward_ebitda(symbol='AAPL,MSFT', fiscal_period=quarter, provider='fmp')
Parameters
- standard
- fmp
- intrinio
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | Union[str, List[str]] | Symbol to get data for. Multiple items allowed for provider(s): fmp, intrinio. | None | True |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | Union[str, List[str]] | Symbol to get data for. Multiple items allowed for provider(s): fmp, intrinio. | None | True |
fiscal_period | Literal['annual', 'quarter'] | The future fiscal period to retrieve estimates for. | annual | True |
limit | int | The number of data entries to return. | None | True |
include_historical | bool | If True, the data will include all past data and the limit will be ignored. | False | True |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | Union[str, List[str]] | Symbol to get data for. Multiple items allowed for provider(s): fmp, intrinio. | None | True |
fiscal_period | Literal['annual', 'quarter'] | Filter for only full-year or quarterly estimates. | None | True |
estimate_type | Literal['ebitda', 'ebit', 'enterprise_value', 'cash_flow_per_share', 'pretax_income'] | Limit the EBITDA estimates to this type. | None | True |
Returns
OBBject
results : List[ForwardEbitdaEstimates]
Serializable results.
provider : Optional[Literal['fmp', 'intrinio']]
Provider name.
warnings : Optional[List[Warning_]]
List of warnings.
chart : Optional[Chart]
Chart object.
extra : Dict[str, Any]
Extra info.
Data
- standard
- fmp
- intrinio
Name | Type | Description |
---|---|---|
symbol | str | Symbol representing the entity requested in the data. |
name | str | Name of the entity. |
last_updated | date | The date of the last update. |
period_ending | date | The end date of the reporting period. |
fiscal_year | int | Fiscal year for the estimate. |
fiscal_period | str | Fiscal quarter for the estimate. |
calendar_year | int | Calendar year for the estimate. |
calendar_period | Union[str, int] | Calendar quarter for the estimate. |
low_estimate | int | The EBITDA estimate low for the period. |
high_estimate | int | The EBITDA estimate high for the period. |
mean | int | The EBITDA estimate mean for the period. |
median | int | The EBITDA estimate median for the period. |
standard_deviation | int | The EBITDA estimate standard deviation for the period. |
number_of_analysts | int | Number of analysts providing estimates for the period. |
Name | Type | Description |
---|---|---|
symbol | str | Symbol representing the entity requested in the data. |
name | str | Name of the entity. |
last_updated | date | The date of the last update. |
period_ending | date | The end date of the reporting period. |
fiscal_year | int | Fiscal year for the estimate. |
fiscal_period | str | Fiscal quarter for the estimate. |
calendar_year | int | Calendar year for the estimate. |
calendar_period | Union[str, int] | Calendar quarter for the estimate. |
low_estimate | int | The EBITDA estimate low for the period. |
high_estimate | int | The EBITDA estimate high for the period. |
mean | int | The EBITDA estimate mean for the period. |
median | int | The EBITDA estimate median for the period. |
standard_deviation | int | The EBITDA estimate standard deviation for the period. |
number_of_analysts | int | Number of analysts providing estimates for the period. |
Name | Type | Description |
---|---|---|
symbol | str | Symbol representing the entity requested in the data. |
name | str | Name of the entity. |
last_updated | date | The date of the last update. |
period_ending | date | The end date of the reporting period. |
fiscal_year | int | Fiscal year for the estimate. |
fiscal_period | str | Fiscal quarter for the estimate. |
calendar_year | int | Calendar year for the estimate. |
calendar_period | Union[str, int] | Calendar quarter for the estimate. |
low_estimate | int | The EBITDA estimate low for the period. |
high_estimate | int | The EBITDA estimate high for the period. |
mean | int | The EBITDA estimate mean for the period. |
median | int | The EBITDA estimate median for the period. |
standard_deviation | int | The EBITDA estimate standard deviation for the period. |
number_of_analysts | int | Number of analysts providing estimates for the period. |
conensus_type | Literal['ebitda', 'ebit', 'enterprise_value', 'cash_flow_per_share', 'pretax_income'] | The type of estimate. |