Skip to main content

forward_sales

Get forward sales estimates.

Examples

from openbb import obb
obb.equity.estimates.forward_sales(symbol='AAPL', provider='intrinio')
obb.equity.estimates.forward_sales(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): intrinio, seeking_alpha.NoneTrue

Returns

OBBject
results : List[ForwardSalesEstimates]
Serializable results.

provider : Optional[Literal['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_estimateintThe sales estimate low for the period.
high_estimateintThe sales estimate high for the period.
meanintThe sales estimate mean for the period.
medianintThe sales estimate median for the period.
standard_deviationintThe sales estimate standard deviation for the period.
number_of_analystsintNumber of analysts providing estimates for the period.