Skip to main content

splits

Get historical and upcoming stock split operations.

Examples

from openbb import obb
obb.equity.calendar.splits(provider='fmp')
# Get stock splits calendar for specific dates.
obb.equity.calendar.splits(start_date='2024-02-01', end_date='2024-02-07', provider='fmp')

Parameters

NameTypeDescriptionDefaultOptional
start_dateUnion[date, str]Start date of the data, in YYYY-MM-DD format.NoneTrue
end_dateUnion[date, str]End date of the data, in YYYY-MM-DD format.NoneTrue

Returns

OBBject
results : List[CalendarSplits]
Serializable results.

provider : Optional[Literal['fmp']]
Provider name.

warnings : Optional[List[Warning_]]
List of warnings.

chart : Optional[Chart]
Chart object.

extra : Dict[str, Any]
Extra info.

Data

NameTypeDescription
dateUnion[date, str]The date of the data.
labelstrLabel of the stock splits.
symbolstrSymbol representing the entity requested in the data.
numeratorfloatNumerator of the stock splits.
denominatorfloatDenominator of the stock splits.