Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Rewrite order matching strategy #2539

Closed
wants to merge 6 commits into from

Conversation

holzeis
Copy link
Contributor

@holzeis holzeis commented May 15, 2024

Refactors the current trading component into a clearly separated orderbook component and a trade execution component. The linking part is the ExecutableMatch which can be derived from the matches stored into the database.

At the moment we assume optimistically that the trade execution will succeed. However, we should consider that a pending match may never get filled or it fails at execution in such a scenario we would need to rollback the matched orders.

An overview of the changes:

  • Adds the order id to the trade entry so we can link which order created the trade.
  • Allows for orders to get partially matched and update the matches table accordingly
  • Matched limit orders are created as Filled from the get go since we do not execute them with our own maker.
  • (Partially) Matched limit orders are not deleted anymore, but the quantity is updated to how much has already been mapped. (e.g. if an open limit order of $1000 gets deleted with $300 matched it will be updated to Taken with a quantity of $300)

Example of a matches table after opening and closing a position of $3576. Note the maker generates $1000 orders.

orderbook=# select execution_price, quantity, order_id, match_order_id from matches where trader_id='032752136072951607b66dd85f236363efab91b315b1c4fc8d9530ee873875108a' and match_state='Filled' order by created_at;
 execution_price | quantity |               order_id               |            match_order_id            
-----------------+----------+--------------------------------------+--------------------------------------
           60001 |     1000 | 42dd8a30-a20d-4640-bddd-f5467a638d28 | 9acc7260-0f24-405e-ad84-550a797b4464
           60001 |     1000 | 42dd8a30-a20d-4640-bddd-f5467a638d28 | c486a21c-312e-4ae0-ab35-38a8e93d07d5
           60001 |     1000 | 42dd8a30-a20d-4640-bddd-f5467a638d28 | e30ff0dc-4f8a-4888-a3ea-cddf63c94179
           60001 |      576 | 42dd8a30-a20d-4640-bddd-f5467a638d28 | adae6065-d78a-4ed6-bab3-9852f395ef67
           59999 |     1000 | a6be5b42-8817-40f7-8f86-0615df33c57a | 19811f8f-7fe7-4dd1-9b3a-72f24a0fcee5
           59999 |     1000 | a6be5b42-8817-40f7-8f86-0615df33c57a | 6cf3b7bd-2652-4590-afed-f15ece0a1ded
           59999 |     1000 | a6be5b42-8817-40f7-8f86-0615df33c57a | 0c8b6575-2ba2-4e37-8aa2-9c0e8beb055d
           59999 |      576 | a6be5b42-8817-40f7-8f86-0615df33c57a | 17fcb395-4434-4ca8-9cb2-4ca75ec73063
(8 rows)

Example of updated limit orders when deleted.

orderbook=# select order_id, price, direction, quantity, order_type from orders where order_id in ('19811f8f-7fe7-4dd1-9b3a-72f24a0fcee5', '6cf3b7bd-2652-4590-afed-f15ece0a1ded', '0c8b6575-2ba2-4e37-8aa2
               order_id               | price | direction | quantity | order_type 
--------------------------------------+-------+-----------+----------+------------
 19811f8f-7fe7-4dd1-9b3a-72f24a0fcee5 | 59999 | long      |     1000 | limit
 6cf3b7bd-2652-4590-afed-f15ece0a1ded | 59999 | long      |     1000 | limit
 0c8b6575-2ba2-4e37-8aa2-9c0e8beb055d | 59999 | long      |     1000 | limit
 17fcb395-4434-4ca8-9cb2-4ca75ec73063 | 59999 | long      |      576 | limit
(4 rows)

TODO:

  • Do not await on database transactions when interacting with the orderbook.
  • Process any order update through the orderbook component.
  • Rework matching logic to not immediately mutate on every single order.

@holzeis holzeis requested review from bonomat and luckysori May 15, 2024 14:22
@holzeis holzeis self-assigned this May 15, 2024
@holzeis holzeis linked an issue May 15, 2024 that may be closed by this pull request
@holzeis holzeis force-pushed the feat/rewrite-order-matching-strategy branch from d9a8203 to 77d9bcc Compare May 15, 2024 14:29
Copy link
Contributor

@luckysori luckysori left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the idea of defining an orderbook component which keeps the orders in memory, can be optimised for speed (eventually) and has exclusive access to certain DB tables. I think this is the vision suggested by this PR.

Also, I think the last patch is a continuation of an earlier patch. By default I assume that a PR should be reviewed patch by patch, but in this case I think I wasted some time reviewing an earlier version of the same thing. In the future, if you know this is the case, I would appreciate it if you let me know in the PR description or just squashed some patches.

coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
Comment on lines 390 to 446
let order = if !matches.is_empty() {
// order has been at least partially matched.
let matched_quantity = matches.iter().map(|m| m.quantity).sum();

orders::set_order_state_partially_taken(&mut conn, order_id, matched_quantity)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❓I don't understand what's going on here. Why do we need to do this when a limit order is being removed?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because it might have been partially matched already.

Today we are setting an order to deleted regardless if it has been matched or not. IMHO we should only set open orders to deleted, but not taken ones.

However how to deal with orders that have been partially matched? I opted to set the state to taken and reduce the quantity to the amount that has already been matched.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we do that earlier and not on deletion though. Also, why do we go directly against the database instead of updating the state in the ordebook cache? It seems like the state is only in the DB? Why is that?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, why do we go directly against the database instead of updating the state in the ordebook cache? It seems like the state is only in the DB? Why is that?

Both states are updated, first the database and then the orderbook.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we do that earlier and not on deletion though.

Can you elaborate on that, when do you think this should happen?

coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
crates/xxi-node/src/commons/message.rs Outdated Show resolved Hide resolved
Copy link
Contributor

@bonomat bonomat left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the status of this PR? Do we want to continue with it?

coordinator/src/orderbook/db/orders.rs Show resolved Hide resolved
coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
coordinator/src/orderbook/mod.rs Show resolved Hide resolved
coordinator/src/orderbook/mod.rs Outdated Show resolved Hide resolved
@holzeis
Copy link
Contributor Author

holzeis commented May 22, 2024

What's the status of this PR? Do we want to continue with it?

I will continue to work on this after the lightning onboarding flow.

@holzeis holzeis force-pushed the feat/rewrite-order-matching-strategy branch 2 times, most recently from 167979c to 2143ffd Compare May 27, 2024 14:44
@holzeis holzeis force-pushed the feat/rewrite-order-matching-strategy branch 3 times, most recently from 602eca1 to f8e9991 Compare June 4, 2024 14:28
This will allow us to implement partial order matching, by summing the quantity of trades related to an order.
This is already done by the maker, also expired orders are not considered for matching.
Refactors the current trading component into a clearly separated orderbook component and a trade execution component. The linking part is the `ExecutableMatch` which can be derived from the matches stored into the database.

At the moment we assume optimistically that the trade execution will succeed. However, we should consider that a pending match may never get filled or it fails at execution in such a scenario we would need to rollback the matched orders.
The order and the matches are persisted by async actors. It can happen that the market order has not yet been persisted when the match is processed.

Thus it could happen that the matches table is persisted before the order has been persisted, which resulted in a foreign key violation. By dropping the foreign key we don't care if the order is already persisted and can continue with eventual consistency.

I think this is the better option than to synchronize the two inserts as we are anyways aiming for decoupling the orderbook from the coordinator.
@holzeis holzeis force-pushed the feat/rewrite-order-matching-strategy branch from f8e9991 to 51e49ec Compare June 7, 2024 12:25
@holzeis
Copy link
Contributor Author

holzeis commented Jun 7, 2024

@luckysori @bonomat this PR turned into more refactoring than originally anticipated, although not all issues are addressed yet I think its in a good spot to get into main, before tackling limit orders.

Below shows the new design of the orderbook.

  • The orderbook component is solely responsible for the order. It's now the only place where the order gets manipulated.
  • The match executor takes a matched order and stores that into a matches table. this table keeps record if the execution actually succeeded or not. The orderbook doesn't care anymore if the order execution fails or succeeds. From the point of view of the orderbook, the order has been taken. Eventually we might want to re-add a failed order, but for now we simply ignore it.
  • The new design also goes a step forward towards decoupling the orderbook from the coordinator.
  • The OderState::Matched is now deprecated as the matches table takes care of tracking if an order / match is still pending or completed (filled or failed).
Screenshot 2024-06-07 at 14 26 07

There are certainly still some minor things that I'd like to clean up, but its in a good state for your review.

@holzeis holzeis requested review from bonomat and luckysori June 7, 2024 12:33
@github-actions github-actions bot added the Stale label Jul 8, 2024
@github-actions github-actions bot closed this Jul 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Rewrite order-matching strategy
3 participants