This repository has been archived by the owner on Jun 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
orders.go
295 lines (247 loc) · 8.46 KB
/
orders.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
// Copyright 2014 Tjerk Santegoeds
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package oanda
import (
"fmt"
"net/url"
"strconv"
"strings"
"time"
)
type (
TradeSide string
OrderType string
)
const (
Buy TradeSide = "buy"
Sell TradeSide = "sell"
MarketIfTouched OrderType = "marketIfTouched"
Limit OrderType = "limit"
Stop OrderType = "stop"
)
type Order struct {
OrderId Id `json:"id"`
Units int `json:"units"`
Instrument string `json:"instrument"`
Side string `json:"side"`
Price float64 `json:"price"`
Time Time `json:"time"`
StopLoss float64 `json:"stopLoss"`
TakeProfit float64 `json:"takeProfit"`
TrailingStop float64 `json:"trailingStop"`
TrailingAmount float64 `json:"trailingAmount"`
OrderType string `json:"type"`
Expiry Time `json:"expiry"`
UpperBound float64 `json:"upperBound"`
LowerBound float64 `json:"lowerBound"`
}
// String implements the fmt.Stringer interface.
func (o Order) String() string {
return fmt.Sprintf("Order{OrderId: %d, Side: %s, Units: %d, Instrument: %s}", o.OrderId, o.Side,
o.Units, o.Instrument)
}
// LowerBound is an optional argument for Client methods NewOrder(), ModifyOrder() and
// NewTrade().
type LowerBound float64
// UpperBound is an optional argument for Client methods NewOrder(), ModifyOrder() and
// NewTrade().
type UpperBound float64
// StopLoss is an optional argument for Client methods NewOrder(), ModifyOrder(), NewTrade()
// and ModifyTrade().
type StopLoss float64
// TakeProfit is an optional argument for Client methods NewOrder(), ModifyOrder(), NewTrade(),
// and ModifyTrade().
type TakeProfit float64
// TrailingStop is an optional argument for Client methods NewOrder(), ModifyOrder(), NewTrade()
// and ModifyTrade().
type TrailingStop float64
// NewOrderArg represents an optional argument for method NewOrder. Types that implement the
// interface are LowerBound, UpperBound, StopLoss, TakeProfit and TrailingStop.
type NewOrderArg interface {
applyNewOrderArg(url.Values)
}
func (lb LowerBound) applyNewOrderArg(v url.Values) {
optionalArgs(v).SetFloat("lowerBound", float64(lb))
}
func (ub UpperBound) applyNewOrderArg(v url.Values) {
optionalArgs(v).SetFloat("upperBound", float64(ub))
}
func (sl StopLoss) applyNewOrderArg(v url.Values) {
optionalArgs(v).SetFloat("stopLoss", float64(sl))
}
func (tp TakeProfit) applyNewOrderArg(v url.Values) {
optionalArgs(v).SetFloat("takeProfit", float64(tp))
}
func (ts TrailingStop) applyNewOrderArg(v url.Values) {
optionalArgs(v).SetFloat("trailingStop", float64(ts))
}
// NewOrder creates and submits a new order.
func (c *Client) NewOrder(orderType OrderType, side TradeSide, units int, instrument string,
price float64, expiry time.Time, args ...NewOrderArg) (*Order, error) {
instrument = strings.ToUpper(instrument)
expiryStr := strconv.Itoa(int(expiry.UTC().Unix()))
o := Order{
Side: string(side),
Units: units,
Instrument: instrument,
Price: price,
OrderType: string(orderType),
Expiry: Time(expiryStr),
}
data := url.Values{
"type": {o.OrderType},
"side": {o.Side},
"units": {strconv.Itoa(units)},
"instrument": {instrument},
"price": {strconv.FormatFloat(price, 'f', -1, 64)},
"expiry": {expiryStr},
}
for _, arg := range args {
arg.applyNewOrderArg(data)
}
rspData := struct {
Instrument string `json:"instrument"`
Time Time `json:"time"`
Price float64 `json:"price"`
OrderOpened *Order `json:"orderOpened"`
}{
OrderOpened: &o,
}
urlStr := fmt.Sprintf("/v1/accounts/%d/orders", c.accountId)
if err := requestAndDecode(c, "POST", urlStr, data, &rspData); err != nil {
return nil, err
}
o.Instrument = rspData.Instrument
o.Time = rspData.Time
o.Price = rspData.Price
return &o, nil
}
// Order returns information about an existing order.
func (c *Client) Order(orderId Id) (*Order, error) {
o := Order{}
urlStr := fmt.Sprintf("/v1/accounts/%d/orders/%d", c.accountId, orderId)
if err := getAndDecode(c, urlStr, &o); err != nil {
return nil, err
}
return &o, nil
}
// MaxId is an optional argument for Client methods Events(), Orders() and Trades().
type MaxId Id
// Count is an optional argument for Client methods Events(), Orders(), /MidpriceCandles(),
// BidAskCandles() and Trades().
type Count int
// Instrument is an optional argument for Client methods Events(), Orders() and Trades().
type Instrument string
// OrderArgs represents an optional argument for method Orders. Types that implement the interface
// are MaxId, Count and Instrument.
type OrdersArg interface {
applyOrdersArg(url.Values)
}
func (mi MaxId) applyOrdersArg(v url.Values) {
optionalArgs(v).SetId("maxId", Id(mi))
}
func (cnt Count) applyOrdersArg(v url.Values) {
optionalArgs(v).SetInt("count", int(cnt))
}
func (in Instrument) applyOrdersArg(v url.Values) {
v.Set("instrument", string(in))
}
// Orders returns an array with all orders that match the optional arguments (if any). Supported
// OrdersArg are MaxId, Count and Instrument.
func (c *Client) Orders(args ...OrdersArg) ([]Order, error) {
u, err := url.Parse(fmt.Sprintf("/v1/accounts/%d/orders", c.accountId))
if err != nil {
return nil, err
}
q := u.Query()
for _, arg := range args {
arg.applyOrdersArg(q)
}
u.RawQuery = q.Encode()
rsp := struct {
Orders []Order `json:"orders"`
}{}
if err := getAndDecode(c, u.String(), &rsp); err != nil {
return nil, err
}
return rsp.Orders, nil
}
// Units is an optional argument for Client method ModifyOrder().
type Units int
// Expiry is an optional argument for Client method ModifyOrder().
type Expiry time.Time
// Price is an optional argument for Client method ModifyOrder().
type Price float64
// ModifyOrderArg represents an opional argument for method ModifyOrder. Types that implement
// the interface are Units, Price, Expiry, LowerBound, UpperBound, StopLoss, TakeProfit and
// TrailingStop.
type ModifyOrderArg interface {
applyModifyOrderArg(url.Values)
}
func (u Units) applyModifyOrderArg(v url.Values) {
optionalArgs(v).SetInt("units", int(u))
}
func (p Price) applyModifyOrderArg(v url.Values) {
optionalArgs(v).SetFloat("price", float64(p))
}
func (e Expiry) applyModifyOrderArg(v url.Values) {
optionalArgs(v).SetTime("expiry", time.Time(e))
}
func (lb LowerBound) applyModifyOrderArg(v url.Values) {
optionalArgs(v).SetFloat("lowerBound", float64(lb))
}
func (ub UpperBound) applyModifyOrderArg(v url.Values) {
optionalArgs(v).SetFloat("upperBound", float64(ub))
}
func (sl StopLoss) applyModifyOrderArg(v url.Values) {
optionalArgs(v).SetFloat("stopLoss", float64(sl))
}
func (tp TakeProfit) applyModifyOrderArg(v url.Values) {
optionalArgs(v).SetFloat("takeProfit", float64(tp))
}
func (ts TrailingStop) applyModifyOrderArg(v url.Values) {
optionalArgs(v).SetFloat("trailingStop", float64(ts))
}
// ModifyOrder updates an open order. Supported arguments are Units(), Price(), Expiry(),
// UpperBound(), StopLoss(), TakeProfit() and TrailingStop().
func (c *Client) ModifyOrder(orderId Id, arg ModifyOrderArg, args ...ModifyOrderArg) (*Order, error) {
data := url.Values{}
arg.applyModifyOrderArg(data)
for _, arg = range args {
arg.applyModifyOrderArg(data)
}
o := Order{}
urlStr := fmt.Sprintf("/v1/accounts/%d/orders/%d", c.accountId, orderId)
if err := requestAndDecode(c, "PATCH", urlStr, data, &o); err != nil {
return nil, err
}
return &o, nil
}
type CancelOrderResponse struct {
TransactionId Id `json:"id"`
Instrument string `json:"instrument"`
Units int `json:"units"`
Side string `json:"side"`
Price float64 `json:"price"`
Time Time `json:"time"`
}
// CancelOrder closes an open order.
func (c *Client) CancelOrder(orderId Id) (*CancelOrderResponse, error) {
urlStr := fmt.Sprintf("/v1/accounts/%d/orders/%d", c.accountId, orderId)
cor := CancelOrderResponse{}
if err := requestAndDecode(c, "DELETE", urlStr, nil, &cor); err != nil {
return nil, err
}
return &cor, nil
}