-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
37 lines (31 loc) · 2.07 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Further optimization measures:
1. Convert floating-point operations to integer operations.
2. Pre-allocate memory resources, pre-warm and lock them.
3. Replace std::map with custom data structures.
4. Calculate ticks per second more accurately.
In common trading software, real-time display of stock buy and sell order book quotations typically
involves N levels of the current best pending buy and sell order prices and quantities. We refer to
this as the N-Order Book.
Receive the latest quote orders.
Match these orders with the current order book based on order priority.Update the N-Order Book after each match.
Here are the details of the order data fields:
idx (int): Order number
time (str): Order timestamp
price (float): Entrusted price
volume (int): Entrusted quantity
quote_type (str): Order type (BID -> Buy order; ASK -> Sell order)
order_type (str): Order type (LIMIT -> Limit order; MARKET -> Market order)
The rules for order matching are as follows:
Order book priority: [Price priority > Time priority > Order number priority]
Order types:
Limit order: Specify an acceptable worst execution price
(if it's a buy order, any price <= the specified price can execute;
if it's a sell order, any price >= the specified price can execute).
Market order: When the order reaches the exchange, it will execute at the best opposing price level
(if it's a buy order, the best opposing price is the lowest price in the current sell order book;
if it's a sell order, the best opposing price is the highest price in the current buy order book).
The matching process follows these criteria:
Price execution condition: If it's a buy order, any opposing order price "less than or equal to" the entrusted price can execute;
if it's a sell order, any opposing order price "greater than or equal to" the entrusted price can execute.
Orders that meet the price execution condition are sorted by order book priority, and their quantities are compared one by one.
Small orders are considered fully executed and removed from the order book.Large orders are recorded in the order book.