Skip to main content

market_snapshots

Get an updated equity market snapshot. This includes price data for thousands of stocks.

Examples

from openbb import obb
obb.equity.market_snapshots(provider='fmp')

Parameters


Returns

results: list[MarketSnapshots]

Serializable results.

provider: Optional[Literal['fmp', 'intrinio', 'polygon']]

Provider name.

warnings: Optional[list[Warning_]]

list of warnings.

chart: Optional[Chart]

Chart object.

extra: dict[str, Any]

Extra info.


Data

exchange: str
Exchange the security is listed on.

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

name: str
Name of the company, fund, or security.

open: float
The open price.

high: float
The high price.

low: float
The low price.

close: float
The close price.

volume: int
The trading volume.

prev_close: float
The previous close price.

change: float
The change in price from the previous close.

change_percent: float
The change in price from the previous close, as a normalized percent.