parent_command:stocks/screener
usage: overview [-p Desired preset.] [-l LIMIT] [-r] [-s SORT]

Prints overview data of the companies that meet the pre-set filtering.

optional arguments:
  -p Desired preset., --preset Desired preset.
                        Filter presets
  -l LIMIT, --limit LIMIT
                        Limit of stocks to print
  -r, --reverse         Data is sorted in descending order by default. Reverse flag will sort it in an ascending way. Only works when raw data is displayed.
  -s SORT, --sort SORT  Sort elements of the table.


Examples:
- To display an overview of companies meeting a specific preset filter: stocks/screener/overview -p Desired preset.
- To display an overview of the top 10 companies meeting a specific preset filter: stocks/screener/overview -p Desired preset. -l 10
- To display an overview of companies meeting a specific preset filter and sort them by a specific column: stocks/screener/overview -p Desired preset. -s SORT
- To display an overview of companies meeting a specific preset filter and sort them in ascending order: stocks/screener/overview -p Desired preset. -r
- To display an overview of the top 5 companies meeting a specific preset filter, sorted by a specific column in ascending order: stocks/screener/overview -p Desired preset. -l 5 -s SORT -r