-
Notifications
You must be signed in to change notification settings - Fork 12
/
client.go
512 lines (417 loc) · 13.2 KB
/
client.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
// Package qapi is a light wrapper for the Questrade REST API, written in Go.
//
// Please note this is not an official API wrapper, and is not endorsed by Questrade. Please see
// http://www.questrade.com/api/home for official documentation.
package qapi
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"time"
)
// A client is the structure that will be used to consume the API
// endpoints. It holds the login credentials, http client/transport,
// rate limit information, and the login session timer.
type Client struct {
Credentials LoginCredentials
SessionTimer *time.Timer
RateLimitRemaining int
RateLimitReset time.Time
httpClient *http.Client
transport *http.Transport
}
// Send an HTTP GET request, and return the processed response
func (c *Client) get(endpoint string, out interface{}, query url.Values) error {
req, err := http.NewRequest("GET", c.Credentials.ApiServer+endpoint+query.Encode(), nil)
if err != nil {
return err
}
req.Header.Add("Authorization", c.Credentials.authHeader())
res, err := c.httpClient.Do(req)
err = c.processResponse(res, out)
if err != nil {
return err
}
return nil
}
// Format the message body, send an HTTP POST request, and return the processed response
func (c *Client) post(endpoint string, out interface{}, body interface{}) error {
// Attempt to marshall the body as JSON
json, err := json.Marshal(body)
if err != nil {
return err
}
req, err := http.NewRequest("POST", c.Credentials.ApiServer+endpoint, bytes.NewBuffer(json))
if err != nil {
return err
}
req.Header.Add("Authorization", c.Credentials.authHeader())
res, err := c.httpClient.Do(req)
err = c.processResponse(res, out)
if err != nil {
return err
}
return nil
}
// processResponse takes the body of an HTTP response, and either returns
// the error code, or unmarshalls the JSON response, extracts
// rate limit info, and places it into the object
// output parameter. This function closes the response body after reading it.
func (c *Client) processResponse(res *http.Response, out interface{}) error {
body, err := ioutil.ReadAll(res.Body)
res.Body.Close()
if err != nil {
return err
}
if res.StatusCode != 200 {
return newQuestradeError(res, body)
}
err = json.Unmarshal(body, out)
if err != nil {
return err
}
reset, _ := strconv.Atoi(res.Header.Get("X-RateLimit-Reset"))
c.RateLimitReset = time.Unix(int64(reset), 0)
c.RateLimitRemaining, _ = strconv.Atoi(res.Header.Get("X-RateLimit-Remaining"))
return nil
}
// Login takes the refresh token from the client login credentials
// and exchanges it for an access token. Returns a timer that
// expires when the login session is over. If the practice flag is
// true, then the client will log into the practice server.
// TODO - Return a proper error when login fails with HTTP 400 - Bad Request
func (c *Client) Login(practice bool) error {
login := loginServerURL
if practice {
login = practiceLoginServerURL
}
vars := url.Values{"grant_type": {"refresh_token"}, "refresh_token": {c.Credentials.RefreshToken}}
res, err := c.httpClient.PostForm(login+"token", vars)
if err != nil {
return err
}
err = c.processResponse(res, &c.Credentials)
if err != nil {
return err
}
c.SessionTimer = time.NewTimer(time.Duration(c.Credentials.ExpiresIn) * time.Second)
return nil
}
// RevokeAuth revokes authorization of the refresh token
// NOTE - You will have to create another manual authorization
// on the Questrade website to use an application again.
func (c *Client) RevokeAuth() error {
vars := url.Values{"token": {c.Credentials.AccessToken}}
res, err := c.httpClient.PostForm(loginServerURL+"revoke", vars)
// Even though the user may still be logged in if there was an error
// I'm going to set the login info to nil anyways
c.Credentials = LoginCredentials{}
defer res.Body.Close()
if err != nil {
return err
}
body, err := ioutil.ReadAll(res.Body)
if err != nil {
return err
}
if res.StatusCode != 200 {
return fmt.Errorf("Logout Error [%s]: %s", res.Status, body)
}
return nil
}
// GetServerTime retrieves the current time on Questrade's server
func (c *Client) GetServerTime() (time.Time, error) {
t := struct {
Time time.Time `json:"time",string`
}{}
err := c.get("v1/time", &t, url.Values{})
if err != nil {
return time.Time{}, err
}
return t.Time, nil
}
// GetAccounts returns the logged-in User ID, and a list of accounts
// belonging to that user.
func (c *Client) GetAccounts() (int, []Account, error) {
list := struct {
UserID int `json":"userId"`
Accounts []Account `json":"accounts"`
}{}
err := c.get("v1/accounts", &list, url.Values{})
if err != nil {
return 0, []Account{}, err
}
return list.UserID, list.Accounts, nil
}
// GetBalances returns the balances for the account with the specified account number
func (c *Client) GetBalances(number string) (AccountBalances, error) {
bal := AccountBalances{}
err := c.get("v1/accounts/"+number+"/balances", &bal, url.Values{})
if err != nil {
return AccountBalances{}, err
}
return bal, nil
}
// GetExecutions returns the number of executions for a given account between the start and end times
// If the times are zero-value, then the API will default the start and end times to the beginning
// and end of the current day.
func (c *Client) GetExecutions(number string, start time.Time, end time.Time) ([]Execution, error) {
// Format the times if they are not zero-values
params := url.Values{}
if !start.Equal(time.Time{}) {
params.Add("startTime", start.Format(time.RFC3339))
}
if !end.Equal(time.Time{}) {
params.Add("endTime", end.Format(time.RFC3339))
}
exec := struct {
Executions []Execution `json:"executions"`
}{}
err := c.get("v1/accounts/"+number+"/executions?", &exec, params)
if err != nil {
return []Execution{}, err
}
return exec.Executions, nil
}
// GetOrders returns orders for a specified account. Will return results based on the start and
// end times, and the order state. Use GetOrdersByID() to retrieve individual order details.
// If the times are zero-value, then the API will default the start and end times to the beginning
// and end of the current day.
// TODO - Verify order state enumeration in accordance with API docs
// See: http://www.questrade.com/api/documentation/rest-operations/account-calls/accounts-id-orders
func (c *Client) GetOrders(number string, start time.Time, end time.Time, state string) ([]Order, error) {
// Format the times if they are not zero-values
params := url.Values{}
if !start.Equal(time.Time{}) {
params.Add("startTime", start.Format(time.RFC3339))
}
if !end.Equal(time.Time{}) {
params.Add("endTime", end.Format(time.RFC3339))
}
params.Add("stateFilter", state)
o := struct {
Orders []Order `json:"orders"`
}{}
err := c.get("v1/accounts/"+number+"/orders?", &o, params)
if err != nil {
return []Order{}, err
}
return o.Orders, nil
}
// GetOrdersByID returns the orders specified by the list of OrderID's
func (c *Client) GetOrdersByID(number string, orderIds ...int) ([]Order, error) {
idStr := ""
for k, v := range orderIds {
idStr += strconv.Itoa(v)
if k < len(orderIds)-1 {
idStr += ","
}
}
params := url.Values{}
params.Add("ids", idStr)
o := struct {
Orders []Order `json:"orders"`
}{}
err := c.get("v1/accounts/"+number+"/orders?", &o, params)
if err != nil {
return []Order{}, err
}
return o.Orders, nil
}
// GetSymbols returns detailed symbol information for the given symbol ID's
func (c *Client) GetSymbols(ids ...int) ([]Symbol, error) {
idStr := ""
for k, v := range ids {
idStr += strconv.Itoa(v)
if k < len(ids)-1 {
idStr += ","
}
}
params := url.Values{}
params.Add("ids", idStr)
s := struct {
Symbols []Symbol `json:"symbols"`
}{}
err := c.get("v1/symbols?", &s, params)
if err != nil {
return []Symbol{}, err
}
return s.Symbols, nil
}
// SearchSymbols returns symbol search matches for a symbol prefix, at a given offset from the
// beginning of the search results.
func (c *Client) SearchSymbols(prefix string, offset int) ([]SymbolSearchResult, error) {
params := url.Values{}
params.Add("prefix", prefix)
params.Add("offset", strconv.Itoa(offset))
s := struct {
Symbols []SymbolSearchResult `json:"symbols"`
}{}
err := c.get("v1/symbols/search?", &s, params)
if err != nil {
return []SymbolSearchResult{}, err
}
return s.Symbols, nil
}
// GetOptionChain Retrieves an option chain for a particular underlying symbol.
// TODO - More comprehensive tests - perhaps I should learn what an option chain is?
func (c *Client) GetOptionChain(id int) ([]OptionChain, error) {
o := struct {
Options []OptionChain `json:"options"`
}{}
err := c.get("v1/symbols/"+strconv.Itoa(id)+"/options", &o, url.Values{})
if err != nil {
return []OptionChain{}, err
}
return o.Options, nil
}
// GetMarkets retrieves information about supported markets
func (c *Client) GetMarkets() ([]Market, error) {
m := struct {
Markets []Market `json:"markets"`
}{}
err := c.get("v1/markets", &m, url.Values{})
if err != nil {
return []Market{}, err
}
return m.Markets, nil
}
// GetQuote retrieves a single Level 1 market data quote for a single symbol
// TODO - Test
func (c *Client) GetQuote(id int) (Quote, error) {
idStr := strconv.Itoa(id)
q := struct {
Quotes []Quote `json:"quotes"`
}{}
//var q2 json.RawMessage
err := c.get("v1/markets/quotes/"+idStr, &q, url.Values{})
if err != nil {
return Quote{}, err
}
//fmt.Println("RESULT:", string(q2))
if len(q.Quotes) != 1 {
return Quote{}, errors.New("Error: Could not retreive quotes")
}
return q.Quotes[0], nil
}
// GetQuotes retrieves a single Level 1 market data quote for many symbols
// TODO - Test
func (c *Client) GetQuotes(ids ...int) ([]Quote, error) {
idStr := ""
for k, v := range ids {
idStr += strconv.Itoa(v)
if k < len(ids)-1 {
idStr += ","
}
}
params := url.Values{}
params.Add("ids", idStr)
q := struct {
Quotes []Quote `json:"quotes"`
}{}
err := c.get("v1/markets/quotes?", &q, params)
if err != nil {
return []Quote{}, err
}
return q.Quotes, nil
}
// GetOrderImpact calculates the impact that a given order will have on an
// account without placing it.
// See: http://www.questrade.com/api/documentation/rest-operations/order-calls/accounts-id-orders-impact
func (c *Client) GetOrderImpact(req OrderRequest) (OrderImpact, error) {
// Construct the endpoint - will be different if the impact is being calculated on
// an order that already exists
endpoint := fmt.Sprintf("v1/accounts/%s/orders/", req.AccountID)
if req.OrderID != 0 {
endpoint += fmt.Sprintf("%d/", req.OrderID)
}
endpoint += "impact"
var impact OrderImpact
err := c.post(endpoint, &impact, req)
if err != nil {
return OrderImpact{}, err
}
return impact, nil
}
// PlaceOrder submits an order request, or an update to an existing order to Questrade
// See: http://www.questrade.com/api/documentation/rest-operations/order-calls/accounts-id-orders
func (c *Client) PlaceOrder(req OrderRequest) ([]Order, error) {
// Construct the endpoint
endpoint := fmt.Sprintf("v1/accounts/%s/orders/", req.AccountID)
if req.OrderID != 0 {
endpoint += fmt.Sprintf("%d", req.OrderID)
}
res := struct {
OrderID int `json:"orderId"`
Orders []Order `json:"orders"`
}{}
err := c.post(endpoint, &res, req)
if err != nil {
return []Order{}, err
}
return res.Orders, nil
}
// DeleteOrder - Sends a delete request for the specified order
// See: http://www.questrade.com/api/documentation/rest-operations/order-calls/accounts-id-orders-orderid
func (c *Client) DeleteOrder(acctNum string, orderID int) error {
endpoint := fmt.Sprintf("accounts/%s/orders/%d", acctNum, orderID)
req, err := http.NewRequest("DELETE", c.Credentials.ApiServer+endpoint, nil)
if err != nil {
return err
}
req.Header.Add("Authorization", c.Credentials.authHeader())
res, err := c.httpClient.Do(req)
out := struct {
OrderID int `json:"OrderID"`
}{}
err = c.processResponse(res, out)
if err != nil {
return err
}
return nil
}
// GetCandles retrieves historical market data between the start and end dates,
// in the given data granularity.
// See: http://www.questrade.com/api/documentation/rest-operations/market-calls/markets-candles-id
func (c *Client) GetCandles(id int, start time.Time, end time.Time, interval string) ([]Candlestick, error) {
params := url.Values{}
params.Add("startTime", start.Format(time.RFC3339))
params.Add("endTime", end.Format(time.RFC3339))
params.Add("interval", interval)
r := struct {
Candles []Candlestick `json:candles`
}{}
err := c.get("v1/markets/candles/"+strconv.Itoa(id)+"?", &r, params)
if err != nil {
return []Candlestick{}, err
}
return r.Candles, nil
}
// NewClient is the factory function for clients - takes a refresh token and logs into
// either the practice or live server.
func NewClient(refreshToken string, practice bool) (*Client, error) {
transport := &http.Transport{
ResponseHeaderTimeout: 5 * time.Second,
}
client := &http.Client{
Transport: transport,
}
// Create a new client
c := &Client{
Credentials: LoginCredentials{
RefreshToken: refreshToken,
},
httpClient: client,
transport: transport,
}
err := c.Login(practice)
if err != nil {
return nil, err
}
return c, nil
}