latest_attributes
Get the latest value of a data tag from Intrinio.
Examples
from openbb import obb
obb.equity.fundamental.latest_attributes(symbol='AAPL', tag='ceo', provider='intrinio')
Parameters
- standard
- intrinio
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | Union[str, List[str]] | Symbol to get data for. Multiple items allowed for provider(s): intrinio. | False | |
tag | Union[str, List[str]] | Intrinio data tag ID or code. Multiple items allowed for provider(s): intrinio. | False |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | Union[str, List[str]] | Symbol to get data for. Multiple items allowed for provider(s): intrinio. | False | |
tag | Union[str, List[str]] | Intrinio data tag ID or code. Multiple items allowed for provider(s): intrinio. | False |
Returns
OBBject
results : List[LatestAttributes]
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
- standard
- intrinio
Name | Type | Description |
---|---|---|
symbol | str | Symbol representing the entity requested in the data. |
tag | str | Tag name for the fetched data. |
value | Union[float, str] | The value of the data. |
Name | Type | Description |
---|---|---|
symbol | str | Symbol representing the entity requested in the data. |
tag | str | Tag name for the fetched data. |
value | Union[float, str] | The value of the data. |