-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathmain.go
More file actions
67 lines (58 loc) · 1.38 KB
/
main.go
File metadata and controls
67 lines (58 loc) · 1.38 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
package main
import (
"os"
"os/signal"
massivews "github.com/massive-com/client-go/v3/websocket"
"github.com/massive-com/client-go/v3/websocket/models"
"github.com/sirupsen/logrus"
)
func main() {
log := logrus.New()
log.SetLevel(logrus.DebugLevel)
log.SetFormatter(&logrus.JSONFormatter{})
c, err := massivews.New(massivews.Config{
APIKey: os.Getenv("MASSIVE_API_KEY"),
Feed: massivews.RealTime,
Market: massivews.Stocks,
Log: log,
})
if err != nil {
log.Fatal(err)
}
defer c.Close()
// aggregates
//_ = c.Subscribe(massivews.StocksMinAggs, "*")
//_ = c.Subscribe(massivews.StocksSecAggs, "*")
// trades
//_ = c.Subscribe(massivews.StocksTrades, "*")
_ = c.Subscribe(massivews.StocksTrades, "SPY")
// quotes
//_ = c.Subscribe(massivews.StocksQuotes, "*")
_ = c.Subscribe(massivews.StocksQuotes, "SPY")
if err := c.Connect(); err != nil {
log.Error(err)
return
}
sigint := make(chan os.Signal, 1)
signal.Notify(sigint, os.Interrupt)
for {
select {
case <-sigint:
return
case <-c.Error():
return
case out, more := <-c.Output():
if !more {
return
}
switch out.(type) {
case models.EquityAgg:
log.WithFields(logrus.Fields{"aggregate": out}).Info()
case models.EquityTrade:
log.WithFields(logrus.Fields{"trade": out}).Info()
case models.EquityQuote:
log.WithFields(logrus.Fields{"quote": out}).Info()
}
}
}
}