Skip to main content

historical

Historical Index Levels.

Examples

from openbb import obb
obb.index.price.historical(symbol='^GSPC')
# Not all providers have the same symbols.
obb.index.price.historical(symbol='SPX')

Parameters

symbol: str | list[str]
Symbol to get data for. Multiple items allowed for provider(s): cboe, fmp, intrinio, yfinance.

start_date: date | None | str
Start date of the data, in YYYY-MM-DD format.

end_date: date | None | str
End date of the data, in YYYY-MM-DD format.


Returns

results: IndexHistorical

Serializable results.

provider: Optional[Literal['cboe', 'fmp', 'intrinio', 'yfinance']]

Provider name.

warnings: Optional[list[Warning_]]

list of warnings.

chart: Optional[Chart]

Chart object.

extra: dict[str, Any]

Extra info.


Data

symbol: str | None
Symbol representing the entity requested in the data.

date: date | datetime | str
The date of the data.

open: float | None
The open price.

high: float | None
The high price.

low: float | None
The low price.

close: float | None
The close price.

volume: int | float | None
The trading volume.