parent_command: stocks/fa/
usage: cash [-t TICKER] [-l LIMIT] [-q] [-r] [-p column] [-h]             [--export EXPORT] [--sheet-name SHEET_NAME [SHEET_NAME ...]]             [--source {FinancialModelingPrep,Polygon,AlphaVantage,EODHD,YahooFinance}]  Prints a complete cash flow statement over time. This can be either quarterly or annually. The following fields are expected: Accepted date, Accounts payables, Accounts receivables, Acquisitions net, Capital expenditure, Cash at beginning of period, Cash at end of period, Change in working capital, Common stock issued, Common stock repurchased, Debt repayment, Deferred income tax, Depreciation and amortization, Dividends paid, Effect of forex changes on cash, Filling date, Final link, Free cash flow, Inventory, Investments in property plant and equipment, Link, Net cash provided by operating activities, Net cash used for investing activities, Net cash used provided by financing activities, Net change in cash, Net income, Operating cash flow, Other financing activities, Other investing activities, Other non cash items, Other working capital, Period, Purchases of investments, Sales maturities of investments, Stock based compensation. [Source: Alpha Vantage]  optional arguments:   -t TICKER, --ticker TICKER                         Ticker to analyze (default: None)   -l LIMIT, --limit LIMIT                         Number of latest years/quarters. (default: 5)   -q, --quarter         Quarter fundamental data flag. (default: False)   -r, --ratios          Shows percentage change of values. (default: False)   -p column, --plot column                         Rows to plot. (-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)   --source {FinancialModelingPrep,Polygon,AlphaVantage,EODHD,YahooFinance}                         Data source to select from (default:                         FinancialModelingPrep)  For more information and examples, use 'about cash' to access the related guide.
Summary: Display a complete cash flow statement for a stock ticker over time, including various financial fields. You can choose the data source, set a limit for the number of years/quarters, display quarterly data, show percentage change of values, and plot specific rows. Additionally, you can export the data in various formats and save it to specific Excel sheets.

Examples:
- To view the cash flow statement for the last 5 years for a specific stock symbol: stocks/fa/cash -t <SYMBOL>
- To analyze the cash flow statement for the last 3 years for a specific stock symbol: stocks/fa/cash -t <SYMBOL> -l 3
- To display the cash flow statement for the last 5 quarters for a specific stock symbol: stocks/fa/cash -t <SYMBOL> -q
- To show the percentage change of values in the cash flow statement for a specific stock symbol: stocks/fa/cash -t <SYMBOL> -r
- To plot specific rows of the cash flow statement for a specific stock symbol: stocks/fa/cash -t <SYMBOL> -p "Net income" "Operating cash flow"
- To export the cash flow statement data for a specific stock symbol in csv format: stocks/fa/cash -t <SYMBOL> --export csv
- To save the cash flow statement data for a specific stock symbol to a specific Excel sheet: stocks/fa/cash -t <SYMBOL> --sheet-name Sheet1
- To view the cash flow statement for a specific stock symbol using a different data source: stocks/fa/cash -t <SYMBOL> --source YahooFinance