-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.go
160 lines (125 loc) · 2.96 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
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
package main
import (
"fmt"
"os"
"regexp"
"strconv"
"time"
"go.uber.org/zap"
"gopkg.in/alecthomas/kingpin.v2"
exchange "github.com/blampe/go-coinbase-exchange"
)
var (
coin = kingpin.Flag(
"coin",
"Which coin you want to buy: BTC, LTC, BCH or ETH (default 'BTC').",
).Default("BTC").Enum("BTC", "ETH", "LTC", "BCH")
every = registerGenerousDuration(kingpin.Flag(
"every",
"How often to make purchases, e.g. 1h, 7d, 3w.",
).Required())
usd = kingpin.Flag(
"usd",
"How much USD to spend on each purchase. If unspecified, the minimum purchase amount allowed will be used.",
).Float()
until = registerDate(kingpin.Flag(
"until",
"Stop executing trades after this date, e.g. 2017-12-31.",
))
makeTrades = kingpin.Flag(
"trade",
"Actually execute trades.",
).Bool()
autoFund = kingpin.Flag(
"autofund",
"Automatically initiate ACH deposits.",
).Bool()
)
func main() {
kingpin.Version("0.1.0")
kingpin.Parse()
l, _ := zap.NewProduction()
logger := l.Sugar()
defer logger.Sync()
secret := os.Getenv("GDAX_SECRET")
key := os.Getenv("GDAX_KEY")
passphrase := os.Getenv("GDAX_PASSPHRASE")
if secret == "" {
logger.Warn("GDAX_SECRET environment variable is required")
os.Exit(1)
} else {
os.Setenv("COINBASE_SECRET", secret)
}
if key == "" {
logger.Warn("GDAX_KEY environment variable is required")
} else {
os.Setenv("COINBASE_KEY", key)
}
if passphrase == "" {
logger.Warn("GDAX_PASSPHRASE environment variable is required")
} else {
os.Setenv("COINBASE_PASSPHRASE", key)
}
client := exchange.NewClient(secret, key, passphrase)
schedule, err := newGdaxSchedule(
client,
logger,
!*makeTrades,
*autoFund,
*usd,
*every,
*until,
*coin,
)
if err != nil {
logger.Warn(err.Error())
os.Exit(1)
}
if err := schedule.Sync(); err != nil {
logger.Warn(err.Error())
}
}
type generousDuration time.Duration
func registerGenerousDuration(s kingpin.Settings) (target *time.Duration) {
target = new(time.Duration)
s.SetValue((*generousDuration)(target))
return
}
func (d *generousDuration) Set(value string) error {
durationRegex := regexp.MustCompile(`^(?P<value>\d+)(?P<unit>[hdw])$`)
if !durationRegex.MatchString(value) {
return fmt.Errorf("--every misformatted")
}
matches := durationRegex.FindStringSubmatch(value)
hours, _ := strconv.ParseInt(matches[1], 10, 64)
unit := matches[2]
switch unit {
case "d":
hours *= 24
case "w":
hours *= 24 * 7
}
duration := time.Duration(hours * int64(time.Hour))
*d = (generousDuration)(duration)
return nil
}
func (d *generousDuration) String() string {
return (*time.Duration)(d).String()
}
type date time.Time
func (d *date) Set(value string) error {
t, err := time.Parse("2006-01-02", value)
if err != nil {
return err
}
*d = (date)(t)
return nil
}
func (d *date) String() string {
return (*time.Time)(d).String()
}
func registerDate(s kingpin.Settings) (target *time.Time) {
target = &time.Time{}
s.SetValue((*date)(target))
return target
}