Update dry-run behaviour

This commit is contained in:
Matthias
2022-02-25 19:10:16 +01:00
parent 0749199097
commit 6caa5f7131
5 changed files with 16 additions and 12 deletions

View File

@@ -56,7 +56,7 @@ class Ftx(Exchange):
if self._config['dry_run']:
dry_order = self.create_dry_run_order(
pair, ordertype, "sell", amount, stop_price)
pair, ordertype, "sell", amount, stop_price, stop_loss=True)
return dry_order
try: