Historical Attributes
Implementation details
Class names
Model name | Parameters class | Data class |
---|---|---|
HistoricalAttributes | HistoricalAttributesQueryParams | HistoricalAttributesData |
Import Statement
from openbb_core.provider.standard_models.historical_attributes import (
HistoricalAttributesData,
HistoricalAttributesQueryParams,
)
Parameters
- standard
- intrinio
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
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
- standard
- intrinio
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.
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.