forked from santegoeds/oanda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
labs_test.go
87 lines (75 loc) · 2.61 KB
/
labs_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
// 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 (
"strings"
"github.com/santegoeds/oanda"
check "gopkg.in/check.v1"
)
type TestLabsSuite struct {
OandaSuite
}
var _ = check.Suite(&TestLabsSuite{})
func (ts *TestLabsSuite) SetUpSuite(c *check.C) {
ts.OandaSuite.SetUpSuite(c)
ts.SetUpAccount(c)
}
func (ts *TestLabsSuite) TestLabsCalendar(c *check.C) {
events, err := ts.Client.Calendar("eur_usd", oanda.Year)
c.Assert(err, check.IsNil)
c.Log(events)
c.Assert(len(events) > 0, check.Equals, true)
}
func (ts *TestLabsSuite) TestLabsPositionRatios(c *check.C) {
instrument := "eur_usd"
ratios, err := ts.Client.PositionRatios(instrument, oanda.Year)
c.Assert(err, check.IsNil)
c.Log(ratios)
instrument = strings.ToUpper(instrument)
c.Assert(ratios.Instrument, check.Equals, instrument)
c.Assert(ratios.DisplayName, check.Equals, strings.Replace(instrument, "_", "/", -1))
c.Assert(len(ratios.Ratios) > 0, check.Equals, true)
}
func (ts *TestLabsSuite) TestLabsSpreads(c *check.C) {
instrument := "eur_usd"
spreads, err := ts.Client.Spreads(instrument, oanda.Day, true)
c.Assert(err, check.IsNil)
c.Log(spreads)
c.Assert(len(spreads.Max) > 0, check.Equals, true)
c.Assert(len(spreads.Avg) > 0, check.Equals, true)
c.Assert(len(spreads.Min) > 0, check.Equals, true)
}
func (ts *TestLabsSuite) TestLabsCommitmentsOfTraders(c *check.C) {
instrument := "eur_usd"
cot, err := ts.Client.CommitmentsOfTraders(instrument)
c.Assert(err, check.IsNil)
c.Log(cot)
c.Assert(len(cot) > 0, check.Equals, true)
}
func (ts *TestLabsSuite) TestLabsOrderBooks(c *check.C) {
instrument, period := "eur_usd", 6*oanda.Hour
obs, err := ts.Client.OrderBooks(instrument, period)
c.Assert(err, check.IsNil)
c.Log(obs)
c.Assert(len(obs) > 1, check.Equals, true)
c.Assert(obs[0].Timestamp.UnixMicro() < obs[1].Timestamp.UnixMicro(), check.Equals, true)
}
func (ts *TestLabsSuite) TestLabsAutochartistPattern(c *check.C) {
p, err := ts.Client.AutochartistPattern()
c.Assert(err, check.IsNil)
c.Log(p)
if len(p.Signals) > 0 {
c.Assert(p.Provider, check.Equals, "autochartist")
}
}