Change default backtest result to "backtest_results" - backtest_data is

misleading
This commit is contained in:
Matthias
2019-07-21 13:31:42 +02:00
parent e4b994381b
commit c85cd13ca1
6 changed files with 7 additions and 7 deletions

View File

@@ -146,9 +146,9 @@ AVAILABLE_CLI_OPTIONS = {
'--export-filename',
help='Save backtest results to the file with this filename (default: `%(default)s`). '
'Requires `--export` to be set as well. '
'Example: `--export-filename=user_data/backtest_data/backtest_today.json`',
'Example: `--export-filename=user_data/backtest_results/backtest_today.json`',
metavar='PATH',
default=os.path.join('user_data', 'backtest_data',
default=os.path.join('user_data', 'backtest_results',
'backtest-result.json'),
),
# Edge