Switch to using config instead of args.

This commit is contained in:
Matthias
2023-05-20 11:06:50 +02:00
parent 2e79aaae00
commit a0edbe4797
4 changed files with 17 additions and 4 deletions

View File

@@ -692,20 +692,19 @@ AVAILABLE_CLI_OPTIONS = {
),
"minimum_trade_amount": Arg(
'--minimum-trade-amount',
help='set INT minimum trade amount',
help='Minimum trade amount for lookahead-analysis',
type=check_int_positive,
metavar='INT',
),
"targeted_trade_amount": Arg(
'--targeted-trade-amount',
help='set INT targeted trade amount',
help='Targeted trade amount for lookahead analysis',
type=check_int_positive,
metavar='INT',
),
"lookahead_analysis_exportfilename": Arg(
'--lookahead-analysis-exportfilename',
help="Use this filename to store lookahead-analysis-results",
default=None,
type=str
),
}