-
Notifications
You must be signed in to change notification settings - Fork 29
/
trades_test.go
407 lines (373 loc) · 11.9 KB
/
trades_test.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
package goanda
import (
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"time"
)
func TestGetTradesForInstrument(t *testing.T) {
defer logTestResult(t, "TestGetTradesForInstrument")
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/accounts/test-account/trades" {
t.Errorf("Unexpected path: %s", r.URL.Path)
http.Error(w, "Invalid path", http.StatusBadRequest)
return
}
if r.URL.Query().Get("instrument") != "EUR_USD" {
t.Errorf("Unexpected instrument: %s", r.URL.Query().Get("instrument"))
http.Error(w, "Invalid instrument", http.StatusBadRequest)
return
}
response := ReceivedTrades{
LastTransactionID: "1234",
Trades: []Trade{
{
ID: "1",
Instrument: "EUR_USD",
Price: "1.1000",
OpenTime: time.Now(),
State: "OPEN",
InitialUnits: "100",
InitialMarginRequired: "10.00",
CurrentUnits: "100",
RealizedPL: "0.00",
UnrealizedPL: "10.00",
MarginUsed: "10.00",
AverageClosePrice: "0.00",
ClosingTransactionIDs: []string{},
Financing: "0.00",
CloseTime: time.Time{},
ClientExtensions: &OrderExtensions{Comment: "Test trade", Tag: "test"},
TakeProfitOrder: &TakeProfitOrder{
ID: "2",
CreateTime: time.Now(),
Type: "TAKE_PROFIT",
TradeID: "1",
Price: "1.1100",
TimeInForce: "GTC",
TriggerCondition: "DEFAULT",
State: "PENDING",
},
StopLossOrder: &StopLossOrder{
ID: "3",
CreateTime: time.Now(),
Type: "STOP_LOSS",
TradeID: "1",
Price: "1.0900",
TimeInForce: "GTC",
TriggerCondition: "DEFAULT",
State: "PENDING",
Guaranteed: false,
},
TrailingStopLossOrder: &TrailingStopLossOrder{
ID: "4",
CreateTime: time.Now(),
Type: "TRAILING_STOP_LOSS",
TradeID: "1",
Distance: "0.0050",
TimeInForce: "GTC",
TriggerCondition: "DEFAULT",
State: "PENDING",
},
},
},
}
json.NewEncoder(w).Encode(response)
}))
defer server.Close()
c := &Connection{
hostname: server.URL,
accountID: "test-account",
client: *server.Client(),
}
trades, err := c.GetTradesForInstrument("EUR_USD")
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if trades.LastTransactionID != "1234" {
t.Errorf("Expected LastTransactionID to be 1234, got %s", trades.LastTransactionID)
}
if len(trades.Trades) != 1 {
t.Fatalf("Expected 1 trade, got %d", len(trades.Trades))
}
trade := trades.Trades[0]
if trade.Instrument != "EUR_USD" {
t.Errorf("Expected Instrument to be EUR_USD, got %s", trade.Instrument)
}
if trade.CurrentUnits != "100" {
t.Errorf("Expected CurrentUnits to be 100, got %s", trade.CurrentUnits)
}
if trade.TakeProfitOrder == nil {
t.Error("Expected TakeProfitOrder to be set")
}
if trade.StopLossOrder == nil {
t.Error("Expected StopLossOrder to be set")
}
if trade.TrailingStopLossOrder == nil {
t.Error("Expected TrailingStopLossOrder to be set")
}
}
func TestGetOpenTrades(t *testing.T) {
defer logTestResult(t, "TestGetOpenTrades")
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/accounts/test-account/openTrades" {
t.Errorf("Unexpected path: %s", r.URL.Path)
http.Error(w, "Invalid path", http.StatusBadRequest)
return
}
response := ReceivedTrades{
LastTransactionID: "1234",
Trades: []Trade{
{
ID: "1",
Instrument: "EUR_USD",
Price: "1.1000",
OpenTime: time.Now(),
State: "OPEN",
InitialUnits: "100",
InitialMarginRequired: "10.00",
CurrentUnits: "100",
RealizedPL: "0.00",
UnrealizedPL: "10.00",
MarginUsed: "10.00",
AverageClosePrice: "0.00",
ClosingTransactionIDs: []string{},
Financing: "0.00",
CloseTime: time.Time{},
ClientExtensions: &OrderExtensions{Comment: "Test trade", Tag: "test"},
},
},
}
json.NewEncoder(w).Encode(response)
}))
defer server.Close()
c := &Connection{
hostname: server.URL,
accountID: "test-account",
client: *server.Client(),
}
trades, err := c.GetOpenTrades()
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if trades.LastTransactionID != "1234" {
t.Errorf("Expected LastTransactionID to be 1234, got %s", trades.LastTransactionID)
}
if len(trades.Trades) != 1 {
t.Fatalf("Expected 1 trade, got %d", len(trades.Trades))
}
trade := trades.Trades[0]
if trade.State != "OPEN" {
t.Errorf("Expected State to be OPEN, got %s", trade.State)
}
}
func TestGetTrade(t *testing.T) {
defer logTestResult(t, "TestGetTrade")
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/accounts/test-account/trades/1" {
t.Errorf("Unexpected path: %s", r.URL.Path)
http.Error(w, "Invalid path", http.StatusBadRequest)
return
}
response := ReceivedTrade{
LastTransactionID: "1234",
Trade: Trade{
ID: "1",
Instrument: "EUR_USD",
Price: "1.1000",
OpenTime: time.Now(),
State: "OPEN",
InitialUnits: "100",
InitialMarginRequired: "10.00",
CurrentUnits: "100",
RealizedPL: "0.00",
UnrealizedPL: "10.00",
MarginUsed: "10.00",
AverageClosePrice: "0.00",
ClosingTransactionIDs: []string{},
Financing: "0.00",
CloseTime: time.Time{},
ClientExtensions: &OrderExtensions{Comment: "Test trade", Tag: "test"},
TakeProfitOrder: &TakeProfitOrder{
ID: "2",
CreateTime: time.Now(),
Type: "TAKE_PROFIT",
TradeID: "1",
Price: "1.1100",
TimeInForce: "GTC",
TriggerCondition: "DEFAULT",
State: "PENDING",
},
StopLossOrder: &StopLossOrder{
ID: "3",
CreateTime: time.Now(),
Type: "STOP_LOSS",
TradeID: "1",
Price: "1.0900",
TimeInForce: "GTC",
TriggerCondition: "DEFAULT",
State: "PENDING",
Guaranteed: false,
},
},
}
json.NewEncoder(w).Encode(response)
}))
defer server.Close()
c := &Connection{
hostname: server.URL,
accountID: "test-account",
client: *server.Client(),
}
trade, err := c.GetTrade("1")
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if trade.LastTransactionID != "1234" {
t.Errorf("Expected LastTransactionID to be 1234, got %s", trade.LastTransactionID)
}
if trade.Trade.ID != "1" {
t.Errorf("Expected Trade ID to be 1, got %s", trade.Trade.ID)
}
if trade.Trade.TakeProfitOrder == nil {
t.Error("Expected TakeProfitOrder to be set")
}
if trade.Trade.StopLossOrder == nil {
t.Error("Expected StopLossOrder to be set")
}
}
func TestReduceTradeSize(t *testing.T) {
defer logTestResult(t, "TestReduceTradeSize")
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/accounts/test-account/trades/1/close" {
t.Errorf("Unexpected path: %s", r.URL.Path)
http.Error(w, "Invalid path", http.StatusBadRequest)
return
}
if r.Method != "PUT" {
t.Errorf("Expected PUT request, got %s", r.Method)
http.Error(w, "Invalid method", http.StatusMethodNotAllowed)
return
}
var payload CloseTradePayload
err := json.NewDecoder(r.Body).Decode(&payload)
if err != nil {
t.Errorf("Failed to decode request body: %v", err)
http.Error(w, "Invalid request body", http.StatusBadRequest)
return
}
if payload.Units != "50" {
t.Errorf("Expected Units to be 50, got %s", payload.Units)
http.Error(w, "Invalid units", http.StatusBadRequest)
return
}
response := ModifiedTrade{
OrderCreateTransaction: struct {
Type string `json:"type"`
Instrument string `json:"instrument"`
Units string `json:"units"`
TimeInForce string `json:"timeInForce"`
PositionFill string `json:"positionFill"`
Reason string `json:"reason"`
TradeClose struct {
Units string `json:"units"`
TradeID string `json:"tradeID"`
} `json:"tradeClose"`
ID string `json:"id"`
UserID int `json:"userID"`
AccountID string `json:"accountID"`
BatchID string `json:"batchID"`
RequestID string `json:"requestID"`
Time time.Time `json:"time"`
}{
Type: "MARKET_ORDER",
Instrument: "EUR_USD",
Units: "-50",
TradeClose: struct {
Units string `json:"units"`
TradeID string `json:"tradeID"`
}{
Units: "50",
TradeID: "1",
},
ID: "1000",
AccountID: "test-account",
},
OrderFillTransaction: struct {
Type string `json:"type"`
Instrument string `json:"instrument"`
Units string `json:"units"`
Price string `json:"price"`
FullPrice FullPrice `json:"fullPrice"`
PL string `json:"pl"`
Financing string `json:"financing"`
Commission string `json:"commission"`
AccountBalance string `json:"accountBalance"`
TradeOpened string `json:"tradeOpened"`
TimeInForce string `json:"timeInForce"`
PositionFill string `json:"positionFill"`
Reason string `json:"reason"`
TradesClosed []struct {
TradeID string `json:"tradeID"`
Units string `json:"units"`
RealizedPL string `json:"realizedPL"`
Financing string `json:"financing"`
} `json:"tradesClosed"`
TradeReduced struct {
TradeID string `json:"tradeID"`
Units string `json:"units"`
RealizedPL string `json:"realizedPL"`
Financing string `json:"financing"`
} `json:"tradeReduced"`
ID string `json:"id"`
UserID int `json:"userID"`
AccountID string `json:"accountID"`
BatchID string `json:"batchID"`
RequestID string `json:"requestID"`
OrderID string `json:"orderId"`
ClientOrderID string `json:"clientOrderId"`
Time time.Time `json:"time"`
}{
Type: "ORDER_FILL",
Instrument: "EUR_USD",
Units: "-50",
Price: "1.1000",
TradeReduced: struct {
TradeID string `json:"tradeID"`
Units string `json:"units"`
RealizedPL string `json:"realizedPL"`
Financing string `json:"financing"`
}{
TradeID: "1",
Units: "50",
RealizedPL: "5.00",
Financing: "0.00",
},
ID: "1001",
AccountID: "test-account",
},
LastTransactionID: "1001",
}
json.NewEncoder(w).Encode(response)
}))
defer server.Close()
c := &Connection{
hostname: server.URL,
accountID: "test-account",
client: *server.Client(),
}
modifiedTrade, err := c.ReduceTradeSize("1", CloseTradePayload{Units: "50"})
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if modifiedTrade.LastTransactionID != "1001" {
t.Errorf("Expected LastTransactionID to be 1001, got %s", modifiedTrade.LastTransactionID)
}
if modifiedTrade.OrderCreateTransaction.Type != "MARKET_ORDER" {
t.Errorf("Expected OrderCreateTransaction.Type to be MARKET_ORDER, got %s", modifiedTrade.OrderCreateTransaction.Type)
}
if modifiedTrade.OrderFillTransaction.TradeReduced.Units != "50" {
t.Errorf("Expected OrderFillTransaction.TradeReduced.Units to be 50, got %s", modifiedTrade.OrderFillTransaction.TradeReduced.Units)
}
}