forked from santegoeds/oanda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trades_test.go
83 lines (71 loc) · 2.77 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
// 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_test
import (
"github.com/santegoeds/oanda"
check "gopkg.in/check.v1"
)
type TestTradeSuite struct {
OandaSuite
}
var _ = check.Suite(&TestTradeSuite{})
func (ts *TestTradeSuite) SetUpSuite(c *check.C) {
ts.OandaSuite.SetUpSuite(c)
ts.SetUpAccount(c)
}
func (ts *TestTradeSuite) TestTradeApi(c *check.C) {
t, err := ts.Client.NewTrade(oanda.Buy, 2, "eur_usd", oanda.StopLoss(0.5), oanda.TakeProfit(3.0))
c.Assert(err, check.IsNil)
c.Log(t)
c.Assert(t.TradeId, check.Not(check.Equals), 0)
c.Assert(t.Price, check.Not(check.Equals), 0.0)
c.Assert(t.Instrument, check.Equals, "EUR_USD")
c.Assert(t.Side, check.Equals, string(oanda.Buy))
c.Assert(t.Units, check.Equals, 2)
c.Assert(t.StopLoss, check.Equals, 0.5)
c.Assert(t.TakeProfit, check.Equals, 3.0)
c.Assert(t.TrailingStop, check.Equals, 0.0)
dup, err := ts.Client.Trade(t.TradeId)
c.Assert(err, check.IsNil)
c.Assert(dup.TradeId, check.Equals, t.TradeId)
c.Assert(dup.Price, check.Equals, t.Price)
c.Assert(dup.Instrument, check.Equals, t.Instrument)
c.Assert(dup.Side, check.Equals, t.Side)
c.Assert(dup.Units, check.Equals, t.Units)
c.Assert(dup.StopLoss, check.Equals, t.StopLoss)
c.Assert(dup.TakeProfit, check.Equals, t.TakeProfit)
c.Assert(dup.TrailingStop, check.Equals, t.TrailingStop)
c.Assert(dup.Time, check.Equals, t.Time)
t, err = ts.Client.ModifyTrade(t.TradeId, oanda.StopLoss(0.75))
c.Assert(err, check.IsNil)
c.Assert(t.StopLoss, check.Equals, 0.75)
trades, err := ts.Client.Trades()
c.Assert(err, check.IsNil)
c.Assert(trades, check.HasLen, 1)
c.Assert(trades[0].TradeId, check.Equals, t.TradeId)
c.Assert(trades[0].Price, check.Equals, t.Price)
c.Assert(trades[0].Instrument, check.Equals, t.Instrument)
c.Assert(trades[0].Side, check.Equals, t.Side)
c.Assert(trades[0].Units, check.Equals, t.Units)
c.Assert(trades[0].StopLoss, check.Equals, t.StopLoss)
c.Assert(trades[0].TakeProfit, check.Equals, t.TakeProfit)
c.Assert(trades[0].TrailingStop, check.Equals, t.TrailingStop)
c.Assert(trades[0].Time, check.Equals, t.Time)
rsp, err := ts.Client.CloseTrade(t.TradeId)
c.Assert(err, check.IsNil)
c.Log(rsp)
trades, err = ts.Client.Trades()
c.Assert(err, check.IsNil)
c.Assert(trades, check.HasLen, 0)
}