Skip to main content

forward_eps

Get forward EPS estimates.

Examples

from openbb import obb
obb.equity.estimates.forward_eps(symbol='AAPL', provider='intrinio')
obb.equity.estimates.forward_eps(fiscal_year=2025, fiscal_period=fy, provider='intrinio')

Parameters

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

Returns

OBBject
results : List[ForwardEpsEstimates]
Serializable results.

provider : Optional[Literal['fmp', 'intrinio', 'seeking_alpha']]
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.
dateUnion[date, str]The date of the data.
fiscal_yearintFiscal year for the estimate.
fiscal_periodstrFiscal quarter for the estimate.
calendar_yearintCalendar year for the estimate.
calendar_periodstrCalendar quarter for the estimate.
low_estimatefloatEstimated EPS low for the period.
high_estimatefloatEstimated EPS high for the period.
meanfloatEstimated EPS mean for the period.
medianfloatEstimated EPS median for the period.
standard_deviationfloatEstimated EPS standard deviation for the period.
number_of_analystsintNumber of analysts providing estimates for the period.