freqtrade_origin/freqtrade/commands/cli_options.py

787 lines
24 KiB
Python
Raw Normal View History

"""
Definition of cli arguments used in arguments.py
"""
2024-05-12 14:27:03 +00:00
from argparse import SUPPRESS, ArgumentTypeError
from freqtrade import __version__, constants
from freqtrade.constants import HYPEROPT_LOSS_BUILTIN
from freqtrade.enums import CandleType
def check_int_positive(value: str) -> int:
try:
uint = int(value)
if uint <= 0:
raise ValueError
except ValueError:
raise ArgumentTypeError(
f"{value} is invalid for this parameter, should be a positive integer value"
)
return uint
def check_int_nonzero(value: str) -> int:
try:
uint = int(value)
if uint == 0:
raise ValueError
except ValueError:
raise ArgumentTypeError(
f"{value} is invalid for this parameter, should be a non-zero integer value"
)
return uint
class Arg:
# Optional CLI arguments
def __init__(self, *args, **kwargs):
self.cli = args
self.kwargs = kwargs
# List of available command line options
AVAILABLE_CLI_OPTIONS = {
# Common options
"verbosity": Arg(
2024-05-12 14:27:03 +00:00
"-v",
"--verbose",
help="Verbose mode (-vv for more, -vvv to get all messages).",
action="count",
default=0,
),
"logfile": Arg(
2024-05-12 14:27:03 +00:00
"--logfile",
"--log-file",
2019-10-26 09:45:05 +00:00
help="Log to the file specified. Special values are: 'syslog', 'journald'. "
2024-05-12 14:27:03 +00:00
"See the documentation for more details.",
metavar="FILE",
),
"version": Arg(
2024-05-12 14:27:03 +00:00
"-V",
"--version",
action="version",
version=f"%(prog)s {__version__}",
),
"config": Arg(
2024-05-12 14:27:03 +00:00
"-c",
"--config",
help=f"Specify configuration file (default: `userdir/{constants.DEFAULT_CONFIG}` "
f"or `config.json` whichever exists). "
f"Multiple --config options may be used. "
f"Can be set to `-` to read config from stdin.",
action="append",
metavar="PATH",
),
"datadir": Arg(
2024-05-12 14:27:03 +00:00
"-d",
"--datadir",
"--data-dir",
help="Path to directory with historical backtesting data.",
metavar="PATH",
),
"user_data_dir": Arg(
2024-05-12 14:27:03 +00:00
"--userdir",
"--user-data-dir",
help="Path to userdata directory.",
metavar="PATH",
),
2019-11-01 13:08:55 +00:00
"reset": Arg(
2024-05-12 14:27:03 +00:00
"--reset",
help="Reset sample files to their original state.",
action="store_true",
2019-11-01 13:08:55 +00:00
),
"recursive_strategy_search": Arg(
2024-05-12 14:27:03 +00:00
"--recursive-strategy-search",
help="Recursively search for a strategy in the strategies folder.",
action="store_true",
2022-03-20 09:02:14 +00:00
),
# Main options
"strategy": Arg(
2024-05-12 14:27:03 +00:00
"-s",
"--strategy",
help="Specify strategy class name which will be used by the bot.",
metavar="NAME",
),
"strategy_path": Arg(
2024-05-12 14:27:03 +00:00
"--strategy-path",
help="Specify additional strategy lookup path.",
metavar="PATH",
),
"db_url": Arg(
2024-05-12 14:27:03 +00:00
"--db-url",
help=f"Override trades database URL, this is useful in custom deployments "
f"(default: `{constants.DEFAULT_DB_PROD_URL}` for Live Run mode, "
f"`{constants.DEFAULT_DB_DRYRUN_URL}` for Dry Run).",
metavar="PATH",
),
"db_url_from": Arg(
2024-05-12 14:27:03 +00:00
"--db-url-from",
help="Source db url to use when migrating a database.",
metavar="PATH",
),
"sd_notify": Arg(
2024-05-12 14:27:03 +00:00
"--sd-notify",
help="Notify systemd service manager.",
action="store_true",
),
2019-10-15 04:51:03 +00:00
"dry_run": Arg(
2024-05-12 14:27:03 +00:00
"--dry-run",
help="Enforce dry-run for trading (removes Exchange secrets and simulates trades).",
action="store_true",
2019-10-15 04:51:03 +00:00
),
2021-02-10 18:45:59 +00:00
"dry_run_wallet": Arg(
2024-05-12 14:27:03 +00:00
"--dry-run-wallet",
"--starting-balance",
help="Starting balance, used for backtesting / hyperopt and dry-runs.",
2021-02-10 18:45:59 +00:00
type=float,
),
# Optimize common
"timeframe": Arg(
2024-05-12 14:27:03 +00:00
"-i",
"--timeframe",
help="Specify timeframe (`1m`, `5m`, `30m`, `1h`, `1d`).",
),
"timerange": Arg(
2024-05-12 14:27:03 +00:00
"--timerange",
help="Specify what timerange of data to use.",
),
"max_open_trades": Arg(
2024-05-12 14:27:03 +00:00
"--max-open-trades",
help="Override the value of the `max_open_trades` configuration setting.",
type=int,
2024-05-12 14:27:03 +00:00
metavar="INT",
),
"stake_amount": Arg(
2024-05-12 14:27:03 +00:00
"--stake-amount",
help="Override the value of the `stake_amount` configuration setting.",
),
# Backtesting
"timeframe_detail": Arg(
2024-05-12 14:27:03 +00:00
"--timeframe-detail",
help="Specify detail timeframe for backtesting (`1m`, `5m`, `30m`, `1h`, `1d`).",
),
"position_stacking": Arg(
2024-05-12 14:27:03 +00:00
"--eps",
"--enable-position-stacking",
help="Allow buying the same pair multiple times (position stacking).",
action="store_true",
default=False,
),
"use_max_market_positions": Arg(
2024-05-12 14:27:03 +00:00
"--dmmp",
"--disable-max-market-positions",
help="Disable applying `max_open_trades` during backtest "
"(same as setting `max_open_trades` to a very high number).",
action="store_false",
default=True,
),
"backtest_show_pair_list": Arg(
2024-05-12 14:27:03 +00:00
"--show-pair-list",
help="Show backtesting pairlist sorted by profit.",
action="store_true",
default=False,
),
"enable_protections": Arg(
2024-05-12 14:27:03 +00:00
"--enable-protections",
"--enableprotections",
help="Enable protections for backtesting."
"Will slow backtesting down by a considerable amount, but will include "
"configured protections",
action="store_true",
default=False,
),
"strategy_list": Arg(
2024-05-12 14:27:03 +00:00
"--strategy-list",
help="Provide a space-separated list of strategies to backtest. "
"Please note that timeframe needs to be set either in config "
"or via command line. When using this together with `--export trades`, "
"the strategy-name is injected into the filename "
"(so `backtest-data.json` becomes `backtest-data-SampleStrategy.json`",
nargs="+",
),
"export": Arg(
2024-05-12 14:27:03 +00:00
"--export",
help="Export backtest results (default: trades).",
choices=constants.EXPORT_OPTIONS,
),
"exportfilename": Arg(
"--export-filename",
"--backtest-filename",
help="Use this filename for backtest results."
"Requires `--export` to be set as well. "
"Example: `--export-filename=user_data/backtest_results/backtest_today.json`",
metavar="PATH",
),
"disableparamexport": Arg(
2024-05-12 14:27:03 +00:00
"--disable-param-export",
help="Disable automatic hyperopt parameter export.",
2024-05-12 14:27:03 +00:00
action="store_true",
),
"fee": Arg(
2024-05-12 14:27:03 +00:00
"--fee",
help="Specify fee ratio. Will be applied twice (on trade entry and exit).",
type=float,
2024-05-12 14:27:03 +00:00
metavar="FLOAT",
),
2021-10-21 04:58:40 +00:00
"backtest_breakdown": Arg(
2024-05-12 14:27:03 +00:00
"--breakdown",
help="Show backtesting breakdown per [day, week, month].",
nargs="+",
choices=constants.BACKTEST_BREAKDOWNS,
),
"backtest_cache": Arg(
2024-05-12 14:27:03 +00:00
"--cache",
help="Load a cached backtest result no older than specified age (default: %(default)s).",
default=constants.BACKTEST_CACHE_DEFAULT,
choices=constants.BACKTEST_CACHE_AGE,
),
# Edge
"stoploss_range": Arg(
2024-05-12 14:27:03 +00:00
"--stoplosses",
help="Defines a range of stoploss values against which edge will assess the strategy. "
'The format is "min,max,step" (without any space). '
2024-05-12 14:27:03 +00:00
"Example: `--stoplosses=-0.01,-0.1,-0.001`",
),
# Hyperopt
"hyperopt": Arg(
2024-05-12 14:27:03 +00:00
"--hyperopt",
help=SUPPRESS,
2024-05-12 14:27:03 +00:00
metavar="NAME",
required=False,
),
"hyperopt_path": Arg(
2024-05-12 14:27:03 +00:00
"--hyperopt-path",
help="Specify additional lookup path for Hyperopt Loss functions.",
metavar="PATH",
),
"epochs": Arg(
2024-05-12 14:27:03 +00:00
"-e",
"--epochs",
help="Specify number of epochs (default: %(default)d).",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
default=constants.HYPEROPT_EPOCH,
),
"spaces": Arg(
2024-05-12 14:27:03 +00:00
"--spaces",
help="Specify which parameters to hyperopt. Space-separated list.",
choices=[
"all",
"buy",
"sell",
"roi",
"stoploss",
"trailing",
"protection",
"trades",
"default",
],
nargs="+",
default="default",
),
"analyze_per_epoch": Arg(
2024-05-12 14:27:03 +00:00
"--analyze-per-epoch",
help="Run populate_indicators once per epoch.",
action="store_true",
default=False,
),
"print_all": Arg(
2024-05-12 14:27:03 +00:00
"--print-all",
help="Print all results, not only the best ones.",
action="store_true",
default=False,
),
2019-08-03 16:09:42 +00:00
"print_colorized": Arg(
2024-05-12 14:27:03 +00:00
"--no-color",
help="Disable colorization of hyperopt results. May be useful if you are "
"redirecting output to a file.",
action="store_false",
2019-08-12 18:07:29 +00:00
default=True,
2019-08-03 16:09:42 +00:00
),
2019-08-15 18:39:04 +00:00
"print_json": Arg(
2024-05-12 14:27:03 +00:00
"--print-json",
help="Print output in JSON format.",
action="store_true",
2019-08-15 18:39:04 +00:00
default=False,
),
"export_csv": Arg(
2024-05-12 14:27:03 +00:00
"--export-csv",
help="Export to CSV-File."
" This will disable table print."
" Example: --export-csv hyperopt.csv",
metavar="FILE",
),
"hyperopt_jobs": Arg(
2024-05-12 14:27:03 +00:00
"-j",
"--job-workers",
help="The number of concurrently running jobs for hyperoptimization "
"(hyperopt worker processes). "
"If -1 (default), all CPUs are used, for -2, all CPUs but one are used, etc. "
"If 1 is given, no parallel computing code is used at all.",
type=int,
2024-05-12 14:27:03 +00:00
metavar="JOBS",
default=-1,
),
"hyperopt_random_state": Arg(
2024-05-12 14:27:03 +00:00
"--random-state",
help="Set random state to some positive integer for reproducible hyperopt results.",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
),
"hyperopt_min_trades": Arg(
2024-05-12 14:27:03 +00:00
"--min-trades",
help="Set minimal desired number of trades for evaluations in the hyperopt "
"optimization path (default: 1).",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
default=1,
),
"hyperopt_loss": Arg(
2024-05-12 14:27:03 +00:00
"--hyperopt-loss",
"--hyperoptloss",
2024-05-13 17:49:15 +00:00
help="Specify the class name of the hyperopt loss function class (IHyperOptLoss). "
"Different functions can generate completely different results, "
"since the target for optimization is different. Built-in Hyperopt-loss-functions are: "
f'{", ".join(HYPEROPT_LOSS_BUILTIN)}',
2024-05-12 14:27:03 +00:00
metavar="NAME",
),
"hyperoptexportfilename": Arg(
2024-05-12 14:27:03 +00:00
"--hyperopt-filename",
help="Hyperopt result filename."
"Example: `--hyperopt-filename=hyperopt_results_2020-09-27_16-20-48.pickle`",
metavar="FILENAME",
),
# List exchanges
"print_one_column": Arg(
2024-05-12 14:27:03 +00:00
"-1",
"--one-column",
help="Print output in one column.",
action="store_true",
),
2019-09-30 21:33:33 +00:00
"list_exchanges_all": Arg(
2024-05-12 14:27:03 +00:00
"-a",
"--all",
help="Print all exchanges known to the ccxt library.",
action="store_true",
),
# List pairs / markets
"list_pairs_all": Arg(
2024-05-12 14:27:03 +00:00
"-a",
"--all",
2024-05-12 15:51:21 +00:00
help="Print all pairs or market symbols. By default only active ones are shown.",
2024-05-12 14:27:03 +00:00
action="store_true",
),
"print_list": Arg(
2024-05-12 14:27:03 +00:00
"--print-list",
help="Print list of pairs or market symbols. By default data is "
"printed in the tabular format.",
action="store_true",
),
"list_pairs_print_json": Arg(
2024-05-12 14:27:03 +00:00
"--print-json",
help="Print list of pairs or market symbols in JSON format.",
action="store_true",
default=False,
),
2019-10-15 23:22:27 +00:00
"print_csv": Arg(
2024-05-12 14:27:03 +00:00
"--print-csv",
help="Print exchange pair or market data in the csv format.",
action="store_true",
2019-10-15 23:22:27 +00:00
),
"quote_currencies": Arg(
2024-05-12 14:27:03 +00:00
"--quote",
help="Specify quote currency(-ies). Space-separated list.",
nargs="+",
metavar="QUOTE_CURRENCY",
),
"base_currencies": Arg(
2024-05-12 14:27:03 +00:00
"--base",
help="Specify base currency(-ies). Space-separated list.",
nargs="+",
metavar="BASE_CURRENCY",
),
2021-11-07 09:42:39 +00:00
"trading_mode": Arg(
2024-05-12 14:27:03 +00:00
"--trading-mode",
"--tradingmode",
help="Select Trading mode",
2021-11-07 09:42:39 +00:00
choices=constants.TRADING_MODES,
),
"candle_types": Arg(
2024-05-12 14:27:03 +00:00
"--candle-types",
help="Select candle type to convert. Defaults to all available types.",
choices=[c.value for c in CandleType],
2024-05-12 14:27:03 +00:00
nargs="+",
),
# Script options
"pairs": Arg(
2024-05-12 14:27:03 +00:00
"-p",
"--pairs",
help="Limit command to these pairs. Pairs are space-separated.",
nargs="+",
),
# Download data
"pairs_file": Arg(
2024-05-12 14:27:03 +00:00
"--pairs-file",
help="File containing a list of pairs. "
"Takes precedence over --pairs or pairs configured in the configuration.",
metavar="FILE",
),
"days": Arg(
2024-05-12 14:27:03 +00:00
"--days",
help="Download data for given number of days.",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
),
"include_inactive": Arg(
2024-05-12 14:27:03 +00:00
"--include-inactive-pairs",
help="Also download data from inactive pairs.",
action="store_true",
),
"new_pairs_days": Arg(
2024-05-12 14:27:03 +00:00
"--new-pairs-days",
help="Download data of new pairs for given number of days. Default: `%(default)s`.",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
),
2019-10-08 18:31:01 +00:00
"download_trades": Arg(
2024-05-12 14:27:03 +00:00
"--dl-trades",
help="Download trades instead of OHLCV data.",
action="store_true",
),
"trades": Arg(
"--trades",
help="Work on trades data instead of OHLCV data.",
2024-05-12 14:27:03 +00:00
action="store_true",
2019-10-08 18:31:01 +00:00
),
"convert_trades": Arg(
"--convert",
2024-05-18 18:16:25 +00:00
help="Convert downloaded trades to OHLCV data. Only applicable in combination with "
"`--dl-trades`. "
"Will be automatic for exchanges which don't have historic OHLCV (e.g. Kraken). "
"If not provided, use `trades-to-ohlcv` to convert trades data to OHLCV data.",
action="store_true",
),
"format_from_trades": Arg(
2024-05-12 14:27:03 +00:00
"--format-from",
help="Source format for data conversion.",
choices=constants.AVAILABLE_DATAHANDLERS + ["kraken_csv"],
required=True,
),
"format_from": Arg(
2024-05-12 14:27:03 +00:00
"--format-from",
help="Source format for data conversion.",
choices=constants.AVAILABLE_DATAHANDLERS,
required=True,
),
"format_to": Arg(
2024-05-12 14:27:03 +00:00
"--format-to",
help="Destination format for data conversion.",
choices=constants.AVAILABLE_DATAHANDLERS,
required=True,
),
2019-12-27 12:46:25 +00:00
"dataformat_ohlcv": Arg(
2024-05-12 14:27:03 +00:00
"--data-format-ohlcv",
help="Storage format for downloaded candle (OHLCV) data. (default: `feather`).",
2019-12-27 12:46:25 +00:00
choices=constants.AVAILABLE_DATAHANDLERS,
),
"dataformat_trades": Arg(
2024-05-12 14:27:03 +00:00
"--data-format-trades",
help="Storage format for downloaded trades data. (default: `feather`).",
choices=constants.AVAILABLE_DATAHANDLERS,
2019-12-27 12:46:25 +00:00
),
2022-08-19 11:44:31 +00:00
"show_timerange": Arg(
2024-05-12 14:27:03 +00:00
"--show-timerange",
help="Show timerange available for available data. (May take a while to calculate).",
action="store_true",
2022-08-19 11:44:31 +00:00
),
"exchange": Arg(
2024-05-12 14:27:03 +00:00
"--exchange",
help="Exchange name. Only valid if no config is provided.",
),
"timeframes": Arg(
2024-05-12 14:27:03 +00:00
"-t",
"--timeframes",
2024-05-12 15:51:21 +00:00
help="Specify which tickers to download. Space-separated list. Default: `1m 5m`.",
2024-05-12 14:27:03 +00:00
nargs="+",
),
2022-04-30 15:24:57 +00:00
"prepend_data": Arg(
2024-05-12 14:27:03 +00:00
"--prepend",
help="Allow data prepending. (Data-appending is disabled)",
action="store_true",
2022-04-30 15:24:57 +00:00
),
"erase": Arg(
2024-05-12 14:27:03 +00:00
"--erase",
help="Clean all existing data for the selected exchange/pairs/timeframes.",
action="store_true",
),
2021-01-16 09:15:27 +00:00
"erase_ui_only": Arg(
2024-05-12 14:27:03 +00:00
"--erase",
2021-01-16 09:15:27 +00:00
help="Clean UI folder, don't download new version.",
2024-05-12 14:27:03 +00:00
action="store_true",
2021-01-16 09:15:27 +00:00
default=False,
),
"ui_version": Arg(
2024-05-12 14:27:03 +00:00
"--ui-version",
help=(
"Specify a specific version of FreqUI to install. "
"Not specifying this installs the latest version."
),
type=str,
),
# Templating options
"template": Arg(
2024-05-12 14:27:03 +00:00
"--template",
help="Use a template which is either `minimal`, "
"`full` (containing multiple sample indicators) or `advanced`. Default: `%(default)s`.",
choices=["full", "minimal", "advanced"],
default="full",
),
# Plot dataframe
"indicators1": Arg(
2024-05-12 14:27:03 +00:00
"--indicators1",
help="Set indicators from your strategy you want in the first row of the graph. "
2020-01-04 10:14:00 +00:00
"Space-separated list. Example: `ema3 ema5`. Default: `['sma', 'ema3', 'ema5']`.",
2024-05-12 14:27:03 +00:00
nargs="+",
),
"indicators2": Arg(
2024-05-12 14:27:03 +00:00
"--indicators2",
help="Set indicators from your strategy you want in the third row of the graph. "
2020-01-04 10:14:00 +00:00
"Space-separated list. Example: `fastd fastk`. Default: `['macd', 'macdsignal']`.",
2024-05-12 14:27:03 +00:00
nargs="+",
),
"plot_limit": Arg(
2024-05-12 14:27:03 +00:00
"--plot-limit",
help="Specify tick limit for plotting. Notice: too high values cause huge files. "
"Default: %(default)s.",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
default=750,
),
"plot_auto_open": Arg(
2024-05-12 14:27:03 +00:00
"--auto-open",
help="Automatically open generated plot.",
action="store_true",
),
2020-03-15 20:20:32 +00:00
"no_trades": Arg(
2024-05-12 14:27:03 +00:00
"--no-trades",
help="Skip using trades from backtesting file and DB.",
action="store_true",
2020-03-14 21:15:03 +00:00
),
"trade_source": Arg(
2024-05-12 14:27:03 +00:00
"--trade-source",
help="Specify the source for trades (Can be DB or file (backtest file)) "
"Default: %(default)s",
choices=["DB", "file"],
default="file",
),
2020-05-02 09:26:12 +00:00
"trade_ids": Arg(
2024-05-12 14:27:03 +00:00
"--trade-ids",
help="Specify the list of trade ids.",
nargs="+",
2020-05-02 09:26:12 +00:00
),
# hyperopt-list, hyperopt-show
"hyperopt_list_profitable": Arg(
2024-05-12 14:27:03 +00:00
"--profitable",
help="Select only profitable epochs.",
action="store_true",
),
"hyperopt_list_best": Arg(
2024-05-12 14:27:03 +00:00
"--best",
help="Select only best epochs.",
action="store_true",
),
"hyperopt_list_min_trades": Arg(
2024-05-12 14:27:03 +00:00
"--min-trades",
help="Select epochs with more than INT trades.",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
),
"hyperopt_list_max_trades": Arg(
2024-05-12 14:27:03 +00:00
"--max-trades",
help="Select epochs with less than INT trades.",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
),
"hyperopt_list_min_avg_time": Arg(
2024-05-12 14:27:03 +00:00
"--min-avg-time",
help="Select epochs above average time.",
type=float,
2024-05-12 14:27:03 +00:00
metavar="FLOAT",
),
"hyperopt_list_max_avg_time": Arg(
2024-05-12 14:27:03 +00:00
"--max-avg-time",
help="Select epochs below average time.",
type=float,
2024-05-12 14:27:03 +00:00
metavar="FLOAT",
),
"hyperopt_list_min_avg_profit": Arg(
2024-05-12 14:27:03 +00:00
"--min-avg-profit",
help="Select epochs above average profit.",
type=float,
2024-05-12 14:27:03 +00:00
metavar="FLOAT",
),
"hyperopt_list_max_avg_profit": Arg(
2024-05-12 14:27:03 +00:00
"--max-avg-profit",
help="Select epochs below average profit.",
type=float,
2024-05-12 14:27:03 +00:00
metavar="FLOAT",
),
"hyperopt_list_min_total_profit": Arg(
2024-05-12 14:27:03 +00:00
"--min-total-profit",
help="Select epochs above total profit.",
type=float,
2024-05-12 14:27:03 +00:00
metavar="FLOAT",
),
"hyperopt_list_max_total_profit": Arg(
2024-05-12 14:27:03 +00:00
"--max-total-profit",
help="Select epochs below total profit.",
type=float,
2024-05-12 14:27:03 +00:00
metavar="FLOAT",
),
2020-03-22 01:22:06 +00:00
"hyperopt_list_min_objective": Arg(
2024-05-12 14:27:03 +00:00
"--min-objective",
help="Select epochs above objective.",
2020-03-22 01:22:06 +00:00
type=float,
2024-05-12 14:27:03 +00:00
metavar="FLOAT",
2020-03-22 01:22:06 +00:00
),
"hyperopt_list_max_objective": Arg(
2024-05-12 14:27:03 +00:00
"--max-objective",
help="Select epochs below objective.",
2020-03-22 01:22:06 +00:00
type=float,
2024-05-12 14:27:03 +00:00
metavar="FLOAT",
2020-03-22 01:22:06 +00:00
),
"hyperopt_list_no_details": Arg(
2024-05-12 14:27:03 +00:00
"--no-details",
help="Do not print best epoch details.",
action="store_true",
),
"hyperopt_show_index": Arg(
2024-05-12 14:27:03 +00:00
"-n",
"--index",
help="Specify the index of the epoch to print details for.",
type=check_int_nonzero,
2024-05-12 14:27:03 +00:00
metavar="INT",
),
"hyperopt_show_no_header": Arg(
2024-05-12 14:27:03 +00:00
"--no-header",
help="Do not print epoch details header.",
action="store_true",
),
"hyperopt_ignore_missing_space": Arg(
2024-05-12 14:27:03 +00:00
"--ignore-missing-spaces",
"--ignore-unparameterized-spaces",
help=(
"Suppress errors for any requested Hyperopt spaces "
"that do not contain any parameters."
),
action="store_true",
),
"analysis_groups": Arg(
2022-05-29 10:20:11 +00:00
"--analysis-groups",
2024-05-12 14:27:03 +00:00
help=(
"grouping output - "
"0: simple wins/losses by enter tag, "
"1: by enter_tag, "
"2: by enter_tag and exit_tag, "
"3: by pair and enter_tag, "
"4: by pair, enter_ and exit_tag (this can get quite large), "
"5: by exit_tag"
),
nargs="+",
default=[],
2024-05-12 14:27:03 +00:00
choices=["0", "1", "2", "3", "4", "5"],
),
"enter_reason_list": Arg(
2022-05-29 10:20:11 +00:00
"--enter-reason-list",
2024-05-12 14:27:03 +00:00
help=(
"Space separated list of entry signals to analyse. Default: all. "
"e.g. 'entry_tag_a entry_tag_b'"
),
nargs="+",
default=["all"],
),
"exit_reason_list": Arg(
2022-05-29 10:20:11 +00:00
"--exit-reason-list",
2024-05-12 14:27:03 +00:00
help=(
"Space separated list of exit signals to analyse. Default: all. "
"e.g. 'exit_tag_a roi stop_loss trailing_stop_loss'"
),
nargs="+",
default=["all"],
),
"indicator_list": Arg(
2022-05-29 10:20:11 +00:00
"--indicator-list",
2024-05-12 14:27:03 +00:00
help=(
"Space separated list of indicators to analyse. "
"e.g. 'close rsi bb_lowerband profit_abs'"
),
nargs="+",
default=[],
),
"entry_only": Arg(
"--entry-only", help=("Only analyze entry signals."), action="store_true", default=False
),
"exit_only": Arg(
"--exit-only", help=("Only analyze exit signals."), action="store_true", default=False
),
"analysis_rejected": Arg(
2024-05-12 14:27:03 +00:00
"--rejected-signals",
help="Analyse rejected signals",
action="store_true",
),
"analysis_to_csv": Arg(
2024-05-12 14:27:03 +00:00
"--analysis-to-csv",
help="Save selected analysis tables to individual CSVs",
action="store_true",
),
"analysis_csv_path": Arg(
2024-05-12 14:27:03 +00:00
"--analysis-csv-path",
help=(
"Specify a path to save the analysis CSVs "
"if --analysis-to-csv is enabled. Default: user_data/basktesting_results/"
),
),
"freqaimodel": Arg(
2024-05-12 14:27:03 +00:00
"--freqaimodel",
help="Specify a custom freqaimodels.",
metavar="NAME",
),
"freqaimodel_path": Arg(
2024-05-12 14:27:03 +00:00
"--freqaimodel-path",
help="Specify additional lookup path for freqaimodels.",
metavar="PATH",
),
"freqai_backtest_live_models": Arg(
2024-05-12 14:27:03 +00:00
"--freqai-backtest-live-models", help="Run backtest with ready models.", action="store_true"
),
"minimum_trade_amount": Arg(
2024-05-12 14:27:03 +00:00
"--minimum-trade-amount",
help="Minimum trade amount for lookahead-analysis",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
),
"targeted_trade_amount": Arg(
2024-05-12 14:27:03 +00:00
"--targeted-trade-amount",
help="Targeted trade amount for lookahead analysis",
type=check_int_positive,
2024-05-12 14:27:03 +00:00
metavar="INT",
),
"lookahead_analysis_exportfilename": Arg(
2024-05-12 14:27:03 +00:00
"--lookahead-analysis-exportfilename",
help="Use this csv-filename to store lookahead-analysis-results",
2024-05-12 14:27:03 +00:00
type=str,
),
2023-09-04 02:20:49 +00:00
"startup_candle": Arg(
2024-05-12 14:27:03 +00:00
"--startup-candle",
help="Specify startup candles to be checked (`199`, `499`, `999`, `1999`).",
nargs="+",
2023-09-04 02:20:49 +00:00
),
2024-03-20 06:06:24 +00:00
"show_sensitive": Arg(
2024-05-12 14:27:03 +00:00
"--show-sensitive",
help="Show secrets in the output.",
action="store_true",
2024-03-20 06:06:24 +00:00
default=False,
),
}