parent_command: stocks/fa/
usage: balance [-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 balance sheet statement over time. This can be either quarterly or annually. The following fields are expected: Accepted date, Account payables, Accumulated other comprehensive income loss, Cash and cash equivalents, Cash and short term investments, Common stock, Deferred revenue, Deferred revenue non current, Deferred tax liabilities non current, Filling date, Final link, Goodwill, Goodwill and intangible assets, Intangible assets, Inventory, Link, Long term debt, Long term investments, Net debt, Net receivables, Other assets, Other current assets, Other current liabilities, Other liabilities, Other non current assets, Other non current liabilities, Othertotal stockholders equity, Period, Property plant equipment net, Retained earnings, Short term debt, Short term investments, Tax assets, Tax payables, Total assets, Total current assets, Total current liabilities, Total debt, Total investments, Total liabilities, Total liabilities and stockholders equity, Total non current assets, Total non current liabilities, and Total stockholders equity. [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 (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 balance' to access the related guide.
Summary: This command prints a complete balance sheet statement over time for a specific stock ticker, which can be displayed either quarterly or annually. You can also show percentage changes of values, plot specific rows, limit the number of entries shown, and choose the data source. Additionally, you can export the data in various formats and save it to a specific excel sheet.

Examples:
- Display the balance sheet for <SYMBOL> with the default settings: stocks/fa/balance -t <SYMBOL>
- Show the quarterly balance sheet for <SYMBOL>: stocks/fa/balance -t <SYMBOL> -q
- Display the balance sheet for <SYMBOL> and show percentage changes of values: stocks/fa/balance -t <SYMBOL> -r
- Plot specific rows for <SYMBOL>'s balance sheet: stocks/fa/balance -t <SYMBOL> -p "Total assets,Total liabilities"
- Show the balance sheet for <SYMBOL> with a limit of 10 entries: stocks/fa/balance -t <SYMBOL> -l 10
- Display the balance sheet for <SYMBOL> using the AlphaVantage data source: stocks/fa/balance -t <SYMBOL> --source AlphaVantage
- Export the balance sheet data for <SYMBOL> in csv format: stocks/fa/balance -t <SYMBOL> --export csv
- Save the balance sheet data for <SYMBOL> to a specific excel sheet: stocks/fa/balance -t <SYMBOL> --sheet-name Sheet1