-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmarket.go
56 lines (46 loc) · 945 Bytes
/
market.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
package main
type Market interface {
Last(s Symbol) float64
Bid(s Symbol) float64
Ask(s Symbol) float64
}
type PriceSelector func(market Market, s Symbol) float64
func PriceSelectorLast() PriceSelector {
return func(market Market, s Symbol) float64 {
return market.Last(s)
}
}
func PriceSelectorBid() PriceSelector {
return func(market Market, s Symbol) float64 {
return market.Bid(s)
}
}
func PriceSelectorAsk() PriceSelector {
return func(market Market, s Symbol) float64 {
return market.Ask(s)
}
}
type staticMarket map[Symbol]marketPrice
type marketPrice struct {
Last float64
Bid float64
Ask float64
}
func (sm staticMarket) Last(s Symbol) float64 {
if p, ok := sm[s]; ok {
return p.Last
}
return 0
}
func (sm staticMarket) Bid(s Symbol) float64 {
if p, ok := sm[s]; ok {
return p.Bid
}
return 0
}
func (sm staticMarket) Ask(s Symbol) float64 {
if p, ok := sm[s]; ok {
return p.Ask
}
return 0
}