Rename --realistic-simulation to --enable-position-stacking

This commit is contained in:
Matthias
2018-07-17 20:26:59 +02:00
parent 78205da4f0
commit e17618407b
7 changed files with 38 additions and 35 deletions

View File

@@ -178,10 +178,11 @@ class Arguments(object):
type=str,
)
parser.add_argument(
'--realistic-simulation',
help='uses max_open_trades from config to simulate real world limitations',
'--enable-position-stacking',
help='Allow buying the same pair twice (position stacking)',
action='store_true',
dest='realistic_simulation',
dest='position_stacking',
default=False
)
parser.add_argument(
'--timerange',