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

NameTypeDescriptionDefaultOptional
providerLiteral['fmp', 'intrinio', 'polygon']The provider to use for the query, by default None. If None, the provider specified in defaults is selected or 'fmp' if there is no default.fmpTrue

Data

NameTypeDescription
symbolstrSymbol representing the entity requested in the data.
openfloatThe open price.
highfloatThe high price.
lowfloatThe low price.
closefloatThe close price.
volumeintThe trading volume.
prev_closefloatThe previous close price.
changefloatThe change in price from the previous close.
change_percentfloatThe change in price from the previous close, as a normalized percent.