Skip to main content

Options Snapshots


Implementation details

Class names

Model nameParameters classData class
OptionsSnapshotsOptionsSnapshotsQueryParamsOptionsSnapshotsData

Import Statement

from openbb_core.provider.standard_models.options_snapshots import (
OptionsSnapshotsData,
OptionsSnapshotsQueryParams,
)

Parameters

Data

underlying_symbol: list[str]
Ticker symbol of the underlying asset.

contract_symbol: list[str]
Symbol of the options contract.

expiration: list[date]
Expiration date of the options contract.

dte: list[int | None]
Number of days to expiration of the options contract.

strike: list[float]
Strike price of the options contract.

option_type: list[str]
The type of option.

volume: list[int | None]
The trading volume.

open_interest: list[int | None]
Open interest at the time.

last_price: list[float | None]
Last trade price at the time.

last_size: list[int | None]
Lot size of the last trade.

last_timestamp: list[datetime | None]
Timestamp of the last price.

open: list[float | None]
The open price.

high: list[float | None]
The high price.

low: list[float | None]
The low price.

close: list[float | None]
The close price.