parent_command:crypto/ov
usage: derivatives [-l LIMIT] [-s {Rank,Market,Symbol,Price,Pct_Change_24h,Contract_Type,Basis,Spread,Funding_Rate,Volume_24h}] [-r]

Shows list of crypto derivatives from CoinGecko Crypto derivatives are secondary contracts or financial tools that derive their value from a primary underlying asset. In this case, the primary asset would be a cryptocurrency such
as Bitcoin. The most popular crypto derivatives are crypto futures, crypto options, and perpetual contracts. You can look on only N number of records with --limit, You can sort by Rank, Market, Symbol, Price, Pct_Change_24h,
Contract_Type, Basis, Spread, Funding_Rate, Volume_24h with by and also with --reverse flag to set it to sort descending. Displays: Rank, Market, Symbol, Price, Pct_Change_24h, Contract_Type, Basis, Spread, Funding_Rate, Volume_24h

optional arguments:
  -l LIMIT, --limit LIMIT
                        display N number records (default: 15)
  -s {Rank,Market,Symbol,Price,Pct_Change_24h,Contract_Type,Basis,Spread,Funding_Rate,Volume_24h}, --sortby {Rank,Market,Symbol,Price,Pct_Change_24h,Contract_Type,Basis,Spread,Funding_Rate,Volume_24h}
                        Sort by given column. Default: Rank (default: Rank)
  -r, --reverse         Data is sorted in ascending order by default. Reverse flag will sort it in an descending way. Only works when raw data is displayed. (default: False)


Examples:
- View the top 15 crypto derivatives: crypto/ov/derivatives
- Display the top 10 crypto derivatives: crypto/ov/derivatives -l 10
- Show the top 20 crypto derivatives sorted by 24-hour volume: crypto/ov/derivatives -l 20 -s Volume_24h
- Display the top 5 crypto derivatives sorted by symbol in descending order: crypto/ov/derivatives -l 5 -s Symbol -r
- Show the top 10 crypto derivatives sorted by percentage change in the last 24 hours: crypto/ov/derivatives -l 10 -s Pct_Change_24h
- Display the top 15 crypto derivatives sorted by contract type: crypto/ov/derivatives -s Contract_Type
- Show the top 10 crypto derivatives sorted by market in ascending order: crypto/ov/derivatives -l 10 -s Market
- Display the top 20 crypto derivatives sorted by funding rate in descending order: crypto/ov/derivatives -l 20 -s Funding_Rate -r
- Show the top 5 crypto derivatives sorted by price: crypto/ov/derivatives -l 5 -s Price
- Display the top 10 crypto derivatives sorted by spread: crypto/ov/derivatives -l 10 -s Spread