add missing datetime conversion in fromJson

This commit is contained in:
Matthias
2022-10-21 07:01:47 +02:00
parent 212b511bbe
commit d1591883a6
2 changed files with 2 additions and 1 deletions

View File

@@ -1593,7 +1593,7 @@ class Trade(_DECL_BASE, LocalTrade):
average=order["average"],
cost=order["cost"],
filled=order["filled"],
order_date=order["order_date"],
order_date=datetime.strptime(order["order_date"], DATETIME_PRINT_FORMAT),
order_filled_date=(datetime.fromtimestamp(
order["order_filled_timestamp"] // 1000, tz=timezone.utc)
if order["order_filled_timestamp"] else None),