parent_command:crypto
usage: load [-c COIN] [-s START]
            [--exchange {ace,alpaca,ascendex,bequant,bigone,binance,binancecoinm,binanceus,binanceusdm,bit2c,bitbank,bitbay,bitcoincom,bitfinex,bitfinex2,bitflyer,bitforex,bitget,bithumb,bitmart,bitmex,bitopro,bitpanda,bitrue,bitso,bitstamp,bitstamp1,bittrex,bitvavo,bkex,bl3p,btcalpha,btcbox,btcex,btcmarkets,btctradeua,btcturk,buda,bybit,cex,coinbase,coinbaseprime,coinbasepro,coincheck,coinex,coinfalcon,coinmate,coinone,coinspot,cryptocom,currencycom,delta,deribit,digifinex,exmo,flowbtc,fmfwio,gate,gateio,gemini,hitbtc,hitbtc3,hollaex,huobi,huobijp,huobipro,idex,independentreserve,indodax,itbit,kraken,krakenfutures,kucoin,kucoinfutures,kuna,latoken,lbank,lbank2,lykke,mercado,mexc,mexc3,ndax,novadax,oceanex,okcoin,okex,okex5,okx,paymium,phemex,poloniex,poloniexfutures,probit,ripio,stex,tidex,timex,tokocrypto,upbit,wavesexchange,wazirx,whitebit,woo,yobit,zaif,zb,zonda}]
            [-e END] [-i {1,5,15,30,60,240,1440,10080,43200}] [--vs VS]

Load crypto currency to perform analysis on. Yahoo Finance is used as default source. Other sources can be used such as 'ccxt' or 'cg' with --source. If you select 'ccxt', you can then select any exchange with --exchange. You can
also select a specific interval with --interval.

optional arguments:
  -c COIN, --coin COIN  Coin to get. Must be coin symbol (e.g., btc, eth) (default: None)
  -s START, --start START
                        The starting date (format YYYY-MM-DD) of the crypto (default: 2020-05-28)
  --exchange {ace,alpaca,ascendex,bequant,bigone,binance,binancecoinm,binanceus,binanceusdm,bit2c,bitbank,bitbay,bitcoincom,bitfinex,bitfinex2,bitflyer,bitforex,bitget,bithumb,bitmart,bitmex,bitopro,bitpanda,bitrue,bitso,bitstamp,bitstamp1,bittrex,bitvavo,bkex,bl3p,btcalpha,btcbox,btcex,btcmarkets,btctradeua,btcturk,buda,bybit,cex,coinbase,coinbaseprime,coinbasepro,coincheck,coinex,coinfalcon,coinmate,coinone,coinspot,cryptocom,currencycom,delta,deribit,digifinex,exmo,flowbtc,fmfwio,gate,gateio,gemini,hitbtc,hitbtc3,hollaex,huobi,huobijp,huobipro,idex,independentreserve,indodax,itbit,kraken,krakenfutures,kucoin,kucoinfutures,kuna,latoken,lbank,lbank2,lykke,mercado,mexc,mexc3,ndax,novadax,oceanex,okcoin,okex,okex5,okx,paymium,phemex,poloniex,poloniexfutures,probit,ripio,stex,tidex,timex,tokocrypto,upbit,wavesexchange,wazirx,whitebit,woo,yobit,zaif,zb,zonda}
                        Exchange to search (default: binance)
  -e END, --end END     The ending date (format YYYY-MM-DD) of the crypto (default: 2023-06-02)
  -i {1,5,15,30,60,240,1440,10080,43200}, --interval {1,5,15,30,60,240,1440,10080,43200}
                        The interval of the crypto (default: 1440)
  --vs VS               Quote currency (what to view coin vs). e.g., usdc, usdt, ... if source is ccxt, usd, eur, ... otherwise (default: usdt)


Examples:
- To load and analyze a specific cryptocurrency: crypto/load -c <COIN>
- Load a cryptocurrency and specify the start date: crypto/load -c <COIN> -s 2021-01-01
- Load a cryptocurrency for a specific date range: crypto/load -c <COIN> -s 2021-01-01 -e 2021-12-31
- Analyze a cryptocurrency using a specific exchange: crypto/load -c <COIN> --exchange binance
- Load a cryptocurrency with a specific interval: crypto/load -c <COIN> -i 60
- Analyze a cryptocurrency against a quote currency: crypto/load -c <COIN> --vs eur
- Load a cryptocurrency using a custom start date and interval: crypto/load -c <COIN> -s 2021-01-01 -i 240
- Analyze a cryptocurrency with a custom date range and exchange: crypto/load -c <COIN> -s 2021-01-01 -e 2021-12-31 --exchange kraken
- Load a cryptocurrency with a specific interval and quote currency: crypto/load -c <COIN> -i 30 --vs usd
- Analyze a cryptocurrency using a custom date range, interval, and quote currency: crypto/load -c <COIN> -s 2021-01-01 -e 2021-12-31 -i 60 --vs eur