Skip to main content

Crypto Historical


Implementation details

Class names

Model nameParameters classData class
CryptoHistoricalCryptoHistoricalQueryParamsCryptoHistoricalData

Import Statement

from openbb_core.provider.standard_models.crypto_historical import (
CryptoHistoricalData,
CryptoHistoricalQueryParams,
)

Parameters

symbol: Union[str, list[str]]

Symbol to get data for. Can use CURR1-CURR2 or CURR1CURR2 format. Multiple items allowed for provider(s): fmp, polygon, tiingo, yfinance.

Optional: False


start_date: Union[date, str]

Start date of the data, in YYYY-MM-DD format.

Optional: True


end_date: Union[date, str]

End date of the data, in YYYY-MM-DD format.

Optional: True

Data

date: Union[Union[date, datetime], str]

The date of the data.

open: float

The open price.

high: float

The high price.

low: float

The low price.

close: float

The close price.

volume: float

The trading volume.

vwap: Annotated[float, Gt(gt=0)]

Volume Weighted Average Price over the period.