parent_command:stocks/backtesting
usage: load [-t TICKER] [-s START] [-e END] [-i {1,5,15,30,60}] [-p] [-f FILEPATH] [-m] [-w] [--performance]

Load stock ticker to perform analysis on. When the data source is yf, an Indian ticker can be loaded by using '.NS' at the end, e.g. 'SBIN.NS'. See available market in https://help.yahoo.com/kb/exchanges-data-providers-yahoo-
finance-sln2310.html.

optional arguments:
  -t TICKER, --ticker TICKER
                        Stock ticker (default: None)
  -s START, --start START
                        The starting date (format YYYY-MM-DD) of the stock (default: 2020-05-28)
  -e END, --end END     The ending date (format YYYY-MM-DD) of the stock (default: 2023-06-02)
  -i {1,5,15,30,60}, --interval {1,5,15,30,60}
                        Intraday stock minutes (default: 1440)
  -p, --prepost         Pre/After market hours. Only reflected in 'YahooFinance' intraday data. (default: False)
  -f FILEPATH, --file FILEPATH
                        Path to load custom file. (default: None)
  -m, --monthly         Load monthly data (default: False)
  -w, --weekly          Load weekly data (default: False)
  --performance         Show performance information. (default: False)


Examples:
- To load a stock with the default values: stocks/backtesting/load -t <SYMBOL>
- Load a stock with a specific start and end date: stocks/backtesting/load -t <SYMBOL> -s 2020-01-01 -e 2021-12-31
- Load a stock with intraday data at 15-minute intervals: stocks/backtesting/load -t <SYMBOL> -i 15
- Load a stock including pre and post-market hours: stocks/backtesting/load -t <SYMBOL> -p
- Load a stock from a custom file: stocks/backtesting/load -t <SYMBOL> -f /path/to/your/file.csv
- Load a stock with monthly data: stocks/backtesting/load -t <SYMBOL> -m
- Load a stock with weekly data: stocks/backtesting/load -t <SYMBOL> -w
- Load an Indian stock by using '.NS' at the end: stocks/backtesting/load -t <SYMBOL>.NS
- Load a stock and show performance information: stocks/backtesting/load -t <SYMBOL> --performance