forward_pe
Get forward PE estimates.
Examples
from openbb import obb
obb.equity.estimates.forward_pe(provider='intrinio')
obb.equity.estimates.forward_pe(symbol='AAPL,MSFT,GOOG', 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. | None | True |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | Union[str, List[str]] | Symbol to get data for. Multiple items allowed for provider(s): intrinio. | None | True |
Returns
OBBject
results : List[ForwardPeEstimates]
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. |
name | str | Name of the entity. |
year1 | float | Estimated PE ratio for the next fiscal year. |
year2 | float | Estimated PE ratio two fiscal years from now. |
year3 | float | Estimated PE ratio three fiscal years from now. |
year4 | float | Estimated PE ratio four fiscal years from now. |
year5 | float | Estimated PE ratio five fiscal years from now. |
Name | Type | Description |
---|---|---|
symbol | str | Symbol representing the entity requested in the data. |
name | str | Name of the entity. |
year1 | float | Estimated PE ratio for the next fiscal year. |
year2 | float | Estimated PE ratio two fiscal years from now. |
year3 | float | Estimated PE ratio three fiscal years from now. |
year4 | float | Estimated PE ratio four fiscal years from now. |
year5 | float | Estimated PE ratio five fiscal years from now. |
peg_ratio_year1 | float | Estimated Forward PEG ratio for the next fiscal year. |
eps_ttm | float | The latest trailing twelve months earnings per share. |
last_updated | date | The date the data was last updated. |