Skip to main content

historical_attributes

Get the historical values of a data tag from Intrinio.

Examples

from openbb import obb
obb.equity.fundamental.historical_attributes(symbol='AAPL', tag='ebitda', provider='intrinio')

Parameters

NameTypeDescriptionDefaultOptional
symbolUnion[str, List[str]]Symbol to get data for. Multiple items allowed for provider(s): intrinio.False
tagUnion[str, List[str]]Intrinio data tag ID or code. Multiple items allowed for provider(s): intrinio.False
start_dateUnion[date, str]Start date of the data, in YYYY-MM-DD format.NoneTrue
end_dateUnion[date, str]End date of the data, in YYYY-MM-DD format.NoneTrue
frequencyLiteral['daily', 'weekly', 'monthly', 'quarterly', 'yearly']The frequency of the data.yearlyTrue
limitintThe number of data entries to return.1000True
tag_typestrFilter by type, when applicable.NoneTrue
sortLiteral['asc', 'desc']Sort order.descTrue

Returns

OBBject
results : List[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

NameTypeDescription
dateUnion[date, str]The date of the data.
symbolstrSymbol representing the entity requested in the data.
tagstrTag name for the fetched data.
valuefloatThe value of the data.