File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ft-pandas-ta==0.3.16
77ta-lib == 0.6.8
88technical == 1.5.4
99
10- ccxt == 4.5.44
10+ ccxt == 4.5.45
1111cryptography == 46.0.6
1212aiohttp == 3.13.3
1313SQLAlchemy == 2.0.48
Original file line number Diff line number Diff line change @@ -603,6 +603,7 @@ class TestExchangeOnlineSetup(TypedDict):
603603 "status" : "closed" ,
604604 "type" : "market" ,
605605 "amount" : 0.0004 ,
606+ "filled" : 0.0004 ,
606607 "side" : "sell" ,
607608 "triggerPrice" : None ,
608609 "stopPrice" : None ,
@@ -646,6 +647,8 @@ class TestExchangeOnlineSetup(TypedDict):
646647 "price" : None ,
647648 "status" : "open" ,
648649 "amount" : 0.0004 ,
650+ # TODO: filled should be 0, not None.
651+ "filled" : None ,
649652 "side" : "buy" ,
650653 "triggerPrice" : 71641.0 ,
651654 "stopPrice" : 71641.0 ,
@@ -681,8 +684,7 @@ class TestExchangeOnlineSetup(TypedDict):
681684 "datetime" : "2026-03-21T07:32:21.555Z" ,
682685 "price" : None ,
683686 "status" : "canceled" ,
684- # TODO: filled should be 0, not None.
685- "filled" : None ,
687+ "filled" : 0.0 ,
686688 },
687689 },
688690 ],
You can’t perform that action at this time.
0 commit comments