Skip to main content

Market Snapshots


Implementation details

Class names

Model nameParameters classData class
MarketSnapshotsMarketSnapshotsQueryParamsMarketSnapshotsData

Import Statement

from openbb_core.provider.standard_models.market_snapshots import (
MarketSnapshotsData,
MarketSnapshotsQueryParams,
)

Parameters

Data

exchange: str | None
Exchange the security is listed on.

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

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

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 | None
The trading volume.

prev_close: float | None
The previous close price.

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

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