-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathmain.go
More file actions
60 lines (47 loc) · 936 Bytes
/
main.go
File metadata and controls
60 lines (47 loc) · 936 Bytes
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 (
"math/rand"
"time"
"github.com/anthdm/crypto-exchange/client"
"github.com/anthdm/crypto-exchange/mm"
"github.com/anthdm/crypto-exchange/server"
)
func main() {
go server.StartServer()
time.Sleep(1 * time.Second)
c := client.NewClient()
cfg := mm.Config{
UserID: 8,
OrderSize: 10,
MinSpread: 20,
MakeInterval: 1 * time.Second,
SeedOffset: 40,
ExchangeClient: c,
PriceOffset: 10,
}
maker := mm.NewMakerMaker(cfg)
maker.Start()
time.Sleep(2 * time.Second)
go marketOrderPlacer(c)
select {}
}
func marketOrderPlacer(c *client.Client) {
ticker := time.NewTicker(500 * time.Millisecond)
for {
randint := rand.Intn(10)
bid := true
if randint < 7 {
bid = false
}
order := client.PlaceOrderParams{
UserID: 7,
Bid: bid,
Size: 1,
}
_, err := c.PlaceMarketOrder(&order)
if err != nil {
panic(err)
}
<-ticker.C
}
}