Skip to main content

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

NameTypeDescriptionDefaultOptional
symbolUnion[str, List[str]]Symbol to get data for. Multiple items allowed for provider(s): fmp, intrinio.NoneTrue

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

NameTypeDescription
symbolstrSymbol representing the entity requested in the data.
namestrName of the entity.
last_updateddateThe date of the last update.
period_endingdateThe end date of the reporting period.
fiscal_yearintFiscal year for the estimate.
fiscal_periodstrFiscal quarter for the estimate.
calendar_yearintCalendar year for the estimate.
calendar_periodUnion[str, int]Calendar quarter for the estimate.
low_estimateintThe EBITDA estimate low for the period.
high_estimateintThe EBITDA estimate high for the period.
meanintThe EBITDA estimate mean for the period.
medianintThe EBITDA estimate median for the period.
standard_deviationintThe EBITDA estimate standard deviation for the period.
number_of_analystsintNumber of analysts providing estimates for the period.