historical_splits
Get historical stock splits for a given company.
Examples
from openbb import obb
obb.equity.fundamental.historical_splits(symbol='AAPL', provider='fmp')
Parameters
- standard
- fmp
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | str | Symbol to get data for. | False |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | str | Symbol to get data for. | False |
Returns
OBBject
results : List[HistoricalSplits]
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. |
numerator | float | Numerator of the split. |
denominator | float | Denominator of the split. |
split_ratio | str | Split ratio. |
Name | Type | Description |
---|---|---|
date | Union[date, str] | The date of the data. |
numerator | float | Numerator of the split. |
denominator | float | Denominator of the split. |
split_ratio | str | Split ratio. |