Get Yahoo Finance financials (income statement, balance sheet, cash flow)

yahoo_financials(symbols, reporting = "annual")

Arguments

symbols

ticker symbols

reporting

reporting period ("annual" or "quarterly")

Value

tibble

Examples

yahoo_financials(c("AAPL", "MSFT"), "quarterly")
#> # A tibble: 8 × 63
#>   endDate             totalRevenue costOfRevenue grossProfit researchDevelopment
#>   <dttm>                     <dbl>         <dbl>       <dbl>               <dbl>
#> 1 2021-09-25 02:00:00  83360000000   48186000000 35174000000          5772000000
#> 2 2021-06-26 02:00:00  81434000000   46179000000 35255000000          5717000000
#> 3 2021-03-27 01:00:00  89584000000   51505000000 38079000000          5262000000
#> 4 2020-12-26 01:00:00 111439000000   67111000000 44328000000          5163000000
#> 5 2021-09-30 02:00:00  45317000000   13646000000 31671000000          5599000000
#> 6 2021-06-30 02:00:00  46152000000   13991000000 32161000000          5687000000
#> 7 2021-03-31 02:00:00  41706000000   13045000000 28661000000          5204000000
#> 8 2020-12-31 01:00:00  43076000000   14194000000 28882000000          4899000000
#> # … with 58 more variables: sellingGeneralAdministrative <dbl>,
#> #   totalOperatingExpenses <dbl>, operatingIncome <dbl>,
#> #   totalOtherIncomeExpenseNet <int>, ebit <dbl>, interestExpense <int>,
#> #   incomeBeforeTax <dbl>, incomeTaxExpense <dbl>,
#> #   netIncomeFromContinuingOps <dbl>, netIncome <dbl>,
#> #   netIncomeApplicableToCommonShares <dbl>, depreciation <dbl>,
#> #   changeToNetincome <dbl>, changeToAccountReceivables <dbl>, …