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
1 changed files with 2 additions and 2 deletions

View File

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