Skip to main content

historical_attributes

Get the historical values of a data tag from Intrinio.

Parameters

symbol: str | list[str]
Symbol to get data for. Multiple items allowed for provider(s): intrinio.

tag: str | list[str]
Intrinio data tag ID or code. Multiple items allowed for provider(s): intrinio.

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.

frequency: Literal['daily', 'weekly', 'monthly', 'quarterly', 'yearly'] | None
Default: yearly
The frequency of the data.

limit: int | None
Default: 1000
The number of data entries to return.

tag_type: str | None
Filter by type, when applicable.

sort: Literal['asc', 'desc'] | None
Default: desc
Sort order.


Returns

results: HistoricalAttributes

Serializable results.

provider: Optional[Literal['intrinio']]

Provider name.

warnings: Optional[list[Warning_]]

list of warnings.

chart: Optional[Chart]

Chart object.

extra: dict[str, Any]

Extra info.


Data

date: date | str
The date of the data.

symbol: str
Symbol representing the entity requested in the data.

tag: str | None
Tag name for the fetched data.

value: float | None
The value of the data.