-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathmarket.go
More file actions
161 lines (131 loc) · 3.17 KB
/
market.go
File metadata and controls
161 lines (131 loc) · 3.17 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// Copyright (c) quickfixengine.org All rights reserved.
//
// This file may be distributed under the terms of the quickfixengine.org
// license as defined by quickfixengine.org and appearing in the file
// LICENSE included in the packaging of this file.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
// THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A
// PARTICULAR PURPOSE.
//
// See http://www.quickfixengine.org/LICENSE for licensing information.
//
// Contact ask@quickfixengine.org if any conditions of this licensing
// are not clear to you.
package internal
import (
"fmt"
"sort"
"time"
"github.com/quickfixgo/enum"
)
type orderList struct {
orders []*Order
sortBy func(o1, o2 *Order) bool
}
func (l orderList) Len() int { return len(l.orders) }
func (l orderList) Swap(i, j int) {
l.orders[i], l.orders[j] = l.orders[j], l.orders[i]
}
func (l orderList) Less(i, j int) bool { return l.sortBy(l.orders[i], l.orders[j]) }
func (l *orderList) Insert(order *Order) {
l.orders = append(l.orders, order)
sort.Sort(l)
}
func (l *orderList) Remove(clordID string) (order *Order) {
for i := 0; i < len(l.orders); i++ {
if l.orders[i].ClOrdID == clordID {
order = l.orders[i]
l.orders = append(l.orders[:i], l.orders[i+1:]...)
return
}
}
return
}
func bids() (b orderList) {
b.sortBy = func(i, j *Order) bool {
switch i.Price.Cmp(j.Price) {
case 1:
return true
case -1:
return false
}
return i.insertTime.Before(j.insertTime)
}
return
}
func offers() (o orderList) {
o.sortBy = func(i, j *Order) bool {
switch i.Price.Cmp(j.Price) {
case 1:
return false
case -1:
return true
}
return i.insertTime.Before(j.insertTime)
}
return
}
// Market is a simple CLOB
type Market struct {
Bids orderList
Offers orderList
}
// NewMarket returns an initialized Market instance
func NewMarket() *Market {
return &Market{bids(), offers()}
}
func (m Market) Display() {
fmt.Println("BIDS:")
fmt.Println("-----")
fmt.Println()
for _, bid := range m.Bids.orders {
fmt.Printf("%+v\n", bid)
}
fmt.Println("ASKS:")
fmt.Println("-----")
fmt.Println()
for _, offer := range m.Offers.orders {
fmt.Printf("%+v\n", offer)
}
}
func (m *Market) Insert(order Order) {
order.insertTime = time.Now()
if order.Side == enum.Side_BUY {
m.Bids.Insert(&order)
} else {
m.Offers.Insert(&order)
}
}
func (m *Market) Cancel(clordID string, side enum.Side) (order *Order) {
if side == enum.Side_BUY {
order = m.Bids.Remove(clordID)
} else {
order = m.Offers.Remove(clordID)
}
if order != nil {
order.Cancel()
}
return
}
func (m *Market) Match() (matched []Order) {
for m.Bids.Len() > 0 && m.Offers.Len() > 0 {
bestBid := m.Bids.orders[0]
bestOffer := m.Offers.orders[0]
price := bestOffer.Price
quantity := bestBid.OpenQuantity()
if offerQuant := bestOffer.OpenQuantity(); offerQuant.Cmp(quantity) == -1 {
quantity = offerQuant
}
bestBid.Execute(price, quantity)
bestOffer.Execute(price, quantity)
matched = append(matched, *bestBid, *bestOffer)
if bestBid.IsClosed() {
m.Bids.orders = m.Bids.orders[1:]
}
if bestOffer.IsClosed() {
m.Offers.orders = m.Offers.orders[1:]
}
}
return
}