go-chart/bollinger_band_series_test.go

52 lines
954 B
Go
Raw Normal View History

2016-07-15 18:17:51 +02:00
package chart
import (
2016-07-15 22:27:45 +02:00
"math"
2016-07-15 18:17:51 +02:00
"testing"
"github.com/blendlabs/go-assert"
)
func TestBollingerBandSeries(t *testing.T) {
assert := assert.New(t)
s1 := mockValueProvider{
2016-07-30 03:24:25 +02:00
X: Sequence.Float64(1.0, 100.0),
Y: Sequence.Random(100, 1024),
2016-07-15 18:17:51 +02:00
}
bbs := &BollingerBandsSeries{
InnerSeries: s1,
}
xvalues := make([]float64, 100)
y1values := make([]float64, 100)
y2values := make([]float64, 100)
for x := 0; x < 100; x++ {
xvalues[x], y1values[x], y2values[x] = bbs.GetBoundedValue(x)
}
2016-07-19 00:08:50 +02:00
for x := bbs.GetPeriod(); x < 100; x++ {
2016-07-15 18:17:51 +02:00
assert.True(y1values[x] > y2values[x])
}
}
2016-07-15 22:27:45 +02:00
func TestBollingerBandLastValue(t *testing.T) {
assert := assert.New(t)
s1 := mockValueProvider{
2016-07-30 03:24:25 +02:00
X: Sequence.Float64(1.0, 100.0),
Y: Sequence.Float64(1.0, 100.0),
2016-07-15 22:27:45 +02:00
}
bbs := &BollingerBandsSeries{
InnerSeries: s1,
}
2016-07-19 00:49:34 +02:00
x, y1, y2 := bbs.GetBoundedLastValue()
2016-07-15 22:27:45 +02:00
assert.Equal(100.0, x)
assert.Equal(101, math.Floor(y1))
assert.Equal(83, math.Floor(y2))
2016-07-15 22:27:45 +02:00
}