Orders should be allowed to have empty fill/remaining values

This commit is contained in:
Matthias 2022-08-09 20:43:58 +02:00
parent b5c5a95b64
commit 736884c5a9

View File

@ -194,11 +194,11 @@ class OrderSchema(BaseModel):
pair: str pair: str
order_id: str order_id: str
status: str status: str
remaining: float remaining: Optional[float]
amount: float amount: float
safe_price: float safe_price: float
cost: float cost: float
filled: float filled: Optional[float]
ft_order_side: str ft_order_side: str
order_type: str order_type: str
is_open: bool is_open: bool