parent_command: stocks/fa/
usage: ratios [-t TICKER] [-l LIMIT] [-q] [-h] [--export EXPORT]               [--sheet-name SHEET_NAME [SHEET_NAME ...]]  Prints in-depth ratios of a company over time. This can be either quarterly or annually. This contains, among other things, Price-to-Book Ratio, Payout Ratio and Operating Cycle. The following fields are expected: Asset turnover, Capital expenditure coverage ratio, Cash conversion cycle, Cash flow coverage ratios, Cash flow to debt ratio, Cash per share, Cash ratio, Company equity multiplier, Current ratio, Days of inventory outstanding, Days of payables outstanding, Days of sales outstanding, Debt equity ratio, Debt ratio, Dividend paid and capex coverage ratio, Dividend payout ratio, Dividend yield, Ebit per revenue, Ebt per ebit, Effective tax rate, Enterprise value multiple, Fixed asset turnover, Free cash flow operating cash flow ratio, Free cash flow per share, Gross profit margin, Inventory turnover, Long term debt to capitalization, Net income per EBT, Net profit margin, Operating cash flow per share, Operating cash flow sales ratio, Operating cycle, Operating profit margin, Payables turnover, Payout ratio, Pretax profit margin, Price book value ratio, Price cash flow ratio, Price earnings ratio, Price earnings to growth ratio, Price fair value, Price sales ratio, Price to book ratio, Price to free cash flows ratio, Price to operating cash flows ratio, Price to sales ratio, Quick ratio, Receivables turnover, Return on assets, Return on capital employed, Return on equity, Short term coverage ratios, and Total debt to capitalization. [Source: Financial Modeling Prep]  optional arguments:   -t TICKER, --ticker TICKER                         Ticker to analyze (default: None)   -l LIMIT, --limit LIMIT                         Limit of latest years/quarters. (default: 5)   -q, --quarter         Quarter fundamental data flag. (default: False)   -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)  For more information and examples, use 'about ratios' to access the related guide.
Summary: This command prints in-depth financial ratios of a company over time, either quarterly or annually. The data includes various ratios such as Price-to-Book Ratio, Payout Ratio, Operating Cycle, and many more. You can specify a ticker, limit the number of years/quarters, and export the data in different formats. 

Examples:
- To analyze the financial ratios of a specific company: stocks/fa/ratios -t <SYMBOL>
- To display the financial ratios for a company over the last 3 years: stocks/fa/ratios -t <SYMBOL> -l 3
- To view the financial ratios for a company on a quarterly basis: stocks/fa/ratios -t <SYMBOL> -q
- To analyze the financial ratios for a company over the last 2 quarters: stocks/fa/ratios -t <SYMBOL> -l 2 -q
- To export the financial ratios of a company in json format: stocks/fa/ratios -t <SYMBOL> --export json
- To save the financial ratios of a company to a specific excel sheet: stocks/fa/ratios -t <SYMBOL> --sheet-name Sheet1