parent_command: stocks/fa/
usage: mktcap [-t TICKER] [-s START] [-e END] [-q]               [-m {enterprise_value,market_cap}] [-h] [--export EXPORT]               [--sheet-name SHEET_NAME [SHEET_NAME ...]] [--raw]               [--source {FinancialModelingPrep,YahooFinance}]  Prints stock price, number of shares, market capitalization and enterprise value over time. The following fields are expected: Add total debt, Enterprise value, Market capitalization, Minus cash and cash equivalents, Number of shares, Stock price, and Symbol. [Source: Financial Modeling Prep]  optional arguments:   -t TICKER, --ticker TICKER                         Ticker to analyze (default: None)   -s START, --start START                         The starting date (format YYYY-MM-DD) of the                         enterprise value to display. (default: 1900-01-01)   -e END, --end END     The ending date (format YYYY-MM-DD) of the enterprise                         value to display. (default: 2023-04-19                         13:24:28.746774)   -q, --quarter         Quarter fundamental data flag. (default: False)   -m {enterprise_value,market_cap}, --method {enterprise_value,market_cap}                         Define the data to display. (default: market_cap)   -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)   --raw                 Flag to display raw data (default: False)   --source {FinancialModelingPrep,YahooFinance}                         Data source to select from (default:                         FinancialModelingPrep)  For more information and examples, use 'about mktcap' to access the related guide.
Summary: The mktcap command displays stock price, number of shares, market capitalization, and enterprise value over time for a specific ticker. You can set the start and end dates, choose between quarterly or annual data, select the data to display (enterprise value or market cap), and choose the data source. Additionally, you can export the data in various formats and display raw data.

Examples:
- Display market capitalization for <SYMBOL> between specific dates: stocks/fa/mktcap -t <SYMBOL> -s 2020-01-01 -e 2021-12-31
- Show enterprise value for <SYMBOL> with quarterly data: stocks/fa/mktcap -t <SYMBOL> -q -m enterprise_value
- Display market capitalization for <SYMBOL> using Yahoo Finance as the data source: stocks/fa/mktcap -t <SYMBOL> --source YahooFinance
- Export raw data of market capitalization for <SYMBOL> in csv format: stocks/fa/mktcap -t <SYMBOL> --export csv
- Save market capitalization data for <SYMBOL> to a specific excel sheet: stocks/fa/mktcap -t <SYMBOL> --sheet-name Sheet1
- Display raw data of enterprise value for <SYMBOL> between specific dates: stocks/fa/mktcap -t <SYMBOL> -s 2020-01-01 -e 2021-12-31 --raw
- Show market capitalization for <SYMBOL> with annual data between specific dates using FinancialModelingPrep as the data source: stocks/fa/mktcap -t <SYMBOL> -s 2020-01-01 -e 2021-12-31 --source FinancialModelingPrep
- Display enterprise value for <SYMBOL> with quarterly data between specific dates: stocks/fa/mktcap -t <SYMBOL> -s 2020-01-01 -e 2021-12-31 -q -m enterprise_value