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
- standard
- fmp
Name | Type | Description | Default | Optional |
---|---|---|---|---|
start_date | Union[date, str] | Start date of the data, in YYYY-MM-DD format. | None | True |
end_date | Union[date, str] | End date of the data, in YYYY-MM-DD format. | None | True |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
start_date | Union[date, str] | Start date of the data, in YYYY-MM-DD format. | None | True |
end_date | Union[date, str] | End date of the data, in YYYY-MM-DD format. | None | True |
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
- standard
- fmp
Name | Type | Description |
---|---|---|
date | Union[date, str] | The date of the data. |
label | str | Label of the stock splits. |
symbol | str | Symbol representing the entity requested in the data. |
numerator | float | Numerator of the stock splits. |
denominator | float | Denominator of the stock splits. |
Name | Type | Description |
---|---|---|
date | Union[date, str] | The date of the data. |
label | str | Label of the stock splits. |
symbol | str | Symbol representing the entity requested in the data. |
numerator | float | Numerator of the stock splits. |
denominator | float | Denominator of the stock splits. |