parent_command:crypto/dd
usage: news [-l LIMIT] [-k {news,media}] [--filter {rising,hot,bullish,bearish,important,saved,lol}] [-r {en,de,es,fr,nl,it,pt,ru}] [-s {published_at,domain,title,negative_votes,positive_votes}] [--reverse] [-u]

Display most recent news on the given coin from CryptoPanic aggregator platform. [Source: https://cryptopanic.com/]

optional arguments:
  -l LIMIT, --limit LIMIT
                        display N number records (default: 10)
  -k {news,media}, --kind {news,media}
                        Filter by category of news. Available values: news or media. (default: news)
  --filter {rising,hot,bullish,bearish,important,saved,lol}
                        Filter by kind of news. From: rising|hot|bullish|bearish|important|saved|lol (default: None)
  -r {en,de,es,fr,nl,it,pt,ru}, --region {en,de,es,fr,nl,it,pt,ru}
                        Filter news by regions. Available regions are: en (English), de (Deutsch), nl (Dutch), es (Español), fr (Français), it (Italiano), pt (Português), ru (Русский) (default: en)
  -s {published_at,domain,title,negative_votes,positive_votes}, --sort {published_at,domain,title,negative_votes,positive_votes}
                        Sort by given column. Default: published_at (default: published_at)
  --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. (default: False)
  -u, --urls            Flag to disable urls. Hides column with URL. (default: True)


Examples:
- Display the latest news for a specific <COIN>: crypto/dd news -l 10
- Show the most recent media articles related to a <COIN>: crypto/dd news -k media
- View the top 5 bullish news for a <COIN>: crypto/dd news --filter bullish -l 5
- Display the latest news for a <COIN> in Spanish: crypto/dd news -r es
- Show the 10 most recent news for a <COIN>, sorted by the number of positive votes: crypto/dd news -s positive_votes -l 10
- Display the latest news for a <COIN> without URLs: crypto/dd news -u
- Show the top 3 rising news for a <COIN> in Italian: crypto/dd news --filter rising -r it -l 3
- View the latest news for a <COIN> sorted by domain in ascending order: crypto/dd news -s domain --reverse
- Display the 5 most recent news for a <COIN> sorted by title: crypto/dd news -s title -l 5
- Show the latest news for a <COIN> in French, sorted by the number of negative votes: crypto/dd news -r fr -s negative_votes