Use realistic date for dry-run orders

This commit is contained in:
Matthias 2022-01-22 16:31:59 +01:00
parent 01b331ee42
commit 56daafd6b7

View File

@ -614,7 +614,7 @@ class Exchange:
'side': side,
'filled': 0,
'remaining': _amount,
'datetime': arrow.utcnow().isoformat(),
'datetime': arrow.utcnow().strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
'timestamp': arrow.utcnow().int_timestamp * 1000,
'status': "closed" if ordertype == "market" else "open",
'fee': None,