Skip to main content

Historical Attributes


Implementation details

Class names

Model nameParameters classData class
HistoricalAttributesHistoricalAttributesQueryParamsHistoricalAttributesData

Import Statement

from openbb_core.provider.standard_models.historical_attributes import (
HistoricalAttributesData,
HistoricalAttributesQueryParams,
)

Parameters

symbol: Union[str, list[str]]

Symbol to get data for. Multiple items allowed for provider(s): intrinio.

Optional: False


tag: Union[str, list[str]]

Intrinio data tag ID or code. Multiple items allowed for provider(s): intrinio.

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


frequency: Literal['daily', 'weekly', 'monthly', 'quarterly', 'yearly']

The frequency of the data.

Default: yearly

Optional: True


limit: int

The number of data entries to return.

Default: 1000

Optional: True


tag_type: str

Filter by type, when applicable.

Optional: True


sort: Literal['asc', 'desc']

Sort order.

Default: desc

Optional: True

Data

date: Union[date, str]

The date of the data.

symbol: str

Symbol representing the entity requested in the data.

tag: str

Tag name for the fetched data.

value: float

The value of the data.