Skip to main content

Currency Historical


Implementation details

Class names

Model nameParameters classData class
CurrencyHistoricalCurrencyHistoricalQueryParamsCurrencyHistoricalData

Import Statement

from openbb_core.provider.standard_models.currency_historical import (
CurrencyHistoricalData,
CurrencyHistoricalQueryParams,
)

Parameters

symbol: 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.

start_date: date | None | str
Start date of the data, in YYYY-MM-DD format.

end_date: date | None | str
End date of the data, in YYYY-MM-DD format.

Data

date: date | datetime | str
The date of the data.

open: float | None
The open price.

high: float | None
The high price.

low: float | None
The low price.

close: float
The close price.

volume: float | None
The trading volume.

vwap: float | None
Volume Weighted Average Price over the period.