-
Notifications
You must be signed in to change notification settings - Fork 142
/
timeseries_test.go
86 lines (60 loc) · 2.05 KB
/
timeseries_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
package techan
import (
"testing"
"time"
"github.com/sdcoffey/big"
"github.com/stretchr/testify/assert"
)
func TestTimeSeries_AddCandle(t *testing.T) {
t.Run("Throws if nil candle passed", func(t *testing.T) {
ts := NewTimeSeries()
assert.Panics(t, func() {
ts.AddCandle(nil)
})
})
t.Run("Adds candle if last is nil", func(t *testing.T) {
ts := NewTimeSeries()
candle := NewCandle(NewTimePeriod(time.Now(), time.Minute))
candle.ClosePrice = big.NewDecimal(1)
ts.AddCandle(candle)
assert.Len(t, ts.Candles, 1)
})
t.Run("Does not add candle if before last candle", func(t *testing.T) {
ts := NewTimeSeries()
now := time.Now()
candle := NewCandle(NewTimePeriod(now, time.Minute))
candle.ClosePrice = big.NewDecimal(1)
ts.AddCandle(candle)
then := now.Add(-time.Minute * 10)
nextCandle := NewCandle(NewTimePeriod(then, time.Minute))
candle.ClosePrice = big.NewDecimal(2)
ts.AddCandle(nextCandle)
assert.Len(t, ts.Candles, 1)
assert.EqualValues(t, now.UnixNano(), ts.Candles[0].Period.Start.UnixNano())
})
}
func TestTimeSeries_LastCandle(t *testing.T) {
ts := NewTimeSeries()
now := time.Now()
candle := NewCandle(NewTimePeriod(now, time.Minute))
candle.ClosePrice = big.NewDecimal(1)
ts.AddCandle(candle)
assert.EqualValues(t, now.UnixNano(), ts.LastCandle().Period.Start.UnixNano())
assert.EqualValues(t, 1, ts.LastCandle().ClosePrice.Float())
next := time.Now().Add(time.Minute)
newCandle := NewCandle(NewTimePeriod(next, time.Minute))
newCandle.ClosePrice = big.NewDecimal(2)
ts.AddCandle(newCandle)
assert.Len(t, ts.Candles, 2)
assert.EqualValues(t, next.UnixNano(), ts.LastCandle().Period.Start.UnixNano())
assert.EqualValues(t, 2, ts.LastCandle().ClosePrice.Float())
}
func TestTimeSeries_LastIndex(t *testing.T) {
ts := NewTimeSeries()
candle := NewCandle(NewTimePeriod(time.Now(), time.Minute))
ts.AddCandle(candle)
assert.EqualValues(t, 0, ts.LastIndex())
candle = NewCandle(NewTimePeriod(time.Now().Add(time.Minute), time.Minute))
ts.AddCandle(candle)
assert.EqualValues(t, 1, ts.LastIndex())
}