parent_command: stocks/fa/
usage: income [-t TICKER] [-q] [-r] [-p column] [-h] [--export EXPORT]               [--sheet-name SHEET_NAME [SHEET_NAME ...]] [-l LIMIT]               [--source {FinancialModelingPrep,Polygon,AlphaVantage,EODHD,YahooFinance}]  Prints a complete income statement over time. This can be either quarterly or annually. The following fields are expected: Accepted date, Cost and expenses, Cost of revenue, Depreciation and amortization, Ebitda, Ebitda Ratio, Eps, EPS Diluted, Filling date, Final link, General and administrative expenses, Gross profit, Gross profit ratio, Income before tax, Income before tax ratio, Income tax expense, Interest expense, Link, Net income, Net income ratio, Operating expenses, Operating income, Operating income ratio, Other expenses, Period, Research and development expenses, Revenue, Selling and marketing expenses, Total other income expenses net, Weighted average shs out, Weighted average shs out dil [Source: Alpha Vantage]  optional arguments:   -t TICKER, --ticker TICKER                         Ticker to analyze (default: None)   -q, --quarter         Quarter fundamental data flag. (default: False)   -r, --ratios          Shows percentage change of values. (default: False)   -p column, --plot column                         Rows to plot, comma separated. (-1 represents invalid                         data) (default: None)   -h, --help            show this help message (default: False)   --export EXPORT       Export raw data into csv, json, xlsx and figure into                         png, jpg, pdf, svg (default: )   --sheet-name SHEET_NAME [SHEET_NAME ...]                         Name of excel sheet to save data to. Only valid for                         .xlsx files. (default: None)   -l LIMIT, --limit LIMIT                         Number of entries to show in data. (default: 5)   --source {FinancialModelingPrep,Polygon,AlphaVantage,EODHD,YahooFinance}                         Data source to select from (default:                         FinancialModelingPrep)  For more information and examples, use 'about income' to access the related guide.
Summary: Display a complete income statement for a specific stock ticker over time, either quarterly or annually. You can choose the data source, show percentage change of values, plot specific rows, limit the number of entries shown, and export the data in various formats.

Examples:
- Analyze <SYMBOL>'s income statement: stocks/load <SYMBOL>/fa/income
- Analyze <SYMBOL>'s income statement with quarterly data: stocks/load <SYMBOL>/fa/income -q
- Analyze <SYMBOL>'s income statement and show percentage change of values: stocks/load <SYMBOL>/fa/income -r
- Analyze <SYMBOL>'s income statement and plot specific rows: stocks/load <SYMBOL>/fa/income -p "Revenue,Net income"
- Analyze <SYMBOL>'s income statement and limit the number of entries shown: stocks/load <SYMBOL>/fa/income -l 10
- Analyze <SYMBOL>'s income statement using a specific data source: stocks/load <SYMBOL>/fa/income --source AlphaVantage
- Analyze <SYMBOL>'s income statement and export raw data in csv format: stocks/load <SYMBOL>/fa/income --export csv
- Analyze <SYMBOL>'s income statement and save data to a specific excel sheet: stocks/load <SYMBOL>/fa/income --sheet-name Sheet1
- Analyze <SYMBOL>'s income statement with quarterly data and show percentage change of values: stocks/load <SYMBOL>/fa/income -q -r