Skip to main content

income

Get income statement.

Source Code: [link]

openbb.stocks.fa.income(symbol: str, quarterly: bool = False, ratios: bool = False, source: str = "YahooFinance", limit: int = 10)

Parameters

NameTypeDescriptionDefaultOptional
symbolstrSymbol to get income statement forNoneFalse
sourcestrData source for income statement, by default "YahooFinance"YahooFinanceTrue
quarterlyboolFlag to get quarterly dataFalseTrue
ratiosboolFlag to return data as a percent change.FalseTrue
limitintNumber of statements to return (free tiers may be limited to 5 years)10True

Returns

TypeDescription
pd.DataFrameDataframe of income statement

Examples

from openbb_terminal.sdk import openbb
income_statement = openbb.stocks.fa.income("AAPL", source="YahooFinance)
If you have a premium AlphaVantage key, you can use the quarterly flag to get quarterly statements
quarterly_income_statement = openbb.stocks.fa.income("AAPL", source="AlphaVantage", quarterly=True)