forked from drift-labs/driftpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdlob_test_helpers.py
100 lines (96 loc) · 2.25 KB
/
dlob_test_helpers.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
from solders.pubkey import Pubkey
from typing import Optional
from driftpy.dlob.dlob import DLOB
from driftpy.types import MarketType, Order, OrderStatus, OrderTriggerCondition, OrderType, PositionDirection
def insert_order_to_dlob(
dlob: DLOB,
user_account: Pubkey,
order_type: OrderType,
market_type: MarketType,
order_id: int,
market_index: int,
price: int,
base_asset_amount: int,
direction: PositionDirection,
auction_start_price: int,
auction_end_price: int,
slot: Optional[int] = None,
max_ts = 0,
oracle_price_offset = 0,
post_only = False,
auction_duration = 10
):
slot = slot if slot is not None else 1
order = Order(
slot,
price,
base_asset_amount,
0,
0,
0,
auction_start_price,
auction_end_price,
max_ts,
oracle_price_offset,
order_id,
market_index,
OrderStatus.Open(),
order_type,
market_type,
0,
PositionDirection.Long(),
direction,
False,
post_only,
False,
OrderTriggerCondition.Above(),
auction_duration,
[0, 0, 0]
)
dlob.insert_order(order, user_account, slot)
def insert_trigger_order_to_dlob(
dlob: DLOB,
user_account: Pubkey,
order_type: OrderType,
market_type: MarketType,
order_id: int,
market_index: int,
price: int,
base_asset_amount: int,
direction: PositionDirection,
trigger_price: int,
trigger_condition: OrderTriggerCondition,
auction_start_price: int,
auction_end_price: int,
slot: Optional[int] = None,
max_ts = 0,
oracle_price_offset = 0
):
slot = slot or 1
order = Order(
slot,
price,
base_asset_amount,
0,
0,
trigger_price,
auction_start_price,
auction_end_price,
max_ts,
oracle_price_offset,
order_id,
market_index,
OrderStatus.Open(),
order_type,
market_type,
0,
PositionDirection.Long(),
direction,
False,
False,
True,
trigger_condition,
max_ts,
[0, 0, 0]
)
dlob.insert_order(order, user_account, slot)