Orders should be allowed to have empty fill/remaining values
This commit is contained in:
parent
b5c5a95b64
commit
736884c5a9
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user