Skip to content

Commit

Permalink
Improve test and update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Dec 1, 2023
1 parent b4037c7 commit c035c7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Released on TBD (UTC).
- Fixed missing `trader_id` in `Position` dictionary representation, thanks @filipmacek
- Fixed conversion of fixed precision integers to floats (should be dividing to avoid rounding errors), thanks for reporting @filipmacek
- Fixed daily timestamp parsing for Interactive Brokers, thanks @benjaminsingleton
- Fixed live reconciliation trade processing for partially filled then canceled orders

---

Expand Down
2 changes: 2 additions & 0 deletions tests/unit_tests/live/test_execution_recon.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,3 +554,5 @@ async def test_reconcile_state_no_cached_with_partially_filled_order_and_cancele
order = self.cache.orders()[0]
assert order.status == OrderStatus.CANCELED
assert order.last_trade_id == TradeId("1")
assert order.quantity == Quantity.from_int(10_000)
assert order.filled_qty == Quantity.from_int(5_000)

0 comments on commit c035c7f

Please sign in to comment.