-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
60 lines (52 loc) · 1.18 KB
/
main.go
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
package main
import (
"context"
"log"
"time"
"github.com/fghpdf/simple-orderbook/orderbook"
"github.com/google/uuid"
"github.com/shopspring/decimal"
)
const (
sell = orderbook.DirectionEnumSell
buy = orderbook.DirectionEnumBuy
)
type testArg struct {
dir orderbook.DirectionEnum
price float64
amount int64
}
func main() {
testArgs := []*testArg{
{buy, 2082.34, 1},
{sell, 2087.6, 2},
{buy, 2087.8, 1},
{buy, 2085.01, 5},
{sell, 2088.02, 3},
{sell, 2087.60, 6},
{buy, 2081.11, 7},
{buy, 2086.0, 3},
{buy, 2088.33, 1},
{sell, 2086.54, 2},
{sell, 2086.55, 5},
{buy, 2086.55, 3},
}
orders := make([]*orderbook.Order, 0)
for _, arg := range testArgs {
orders = append(orders, generateOrders(arg.price, arg.amount, arg.dir))
}
engine := orderbook.NewMatchEngine()
for _, order := range orders {
engine.ProcessOrder(context.Background(), order)
}
log.Println(engine)
}
func generateOrders(price float64, amount int64, dir orderbook.DirectionEnum) *orderbook.Order {
return &orderbook.Order{
Nonce: uuid.New().String(),
Price: decimal.NewFromFloat(price),
Amount: decimal.NewFromInt(amount),
Direction: dir,
CreateAt: time.Now(),
}
}