go-chart/bollinger_band_series_test.go

54 lines
1 KiB
Go
Raw Normal View History

2016-07-15 12:17:51 -04:00
package chart
import (
2017-04-28 19:07:36 -04:00
"fmt"
2016-07-15 16:27:45 -04:00
"math"
2016-07-15 12:17:51 -04:00
"testing"
"github.com/blendlabs/go-assert"
2017-05-12 17:17:43 -04:00
"github.com/wcharczuk/go-chart/seq"
2016-07-15 12:17:51 -04:00
)
func TestBollingerBandSeries(t *testing.T) {
assert := assert.New(t)
2017-04-28 19:07:36 -04:00
s1 := mockValuesProvider{
2017-05-12 17:17:43 -04:00
X: seq.Range(1.0, 100.0),
Y: seq.RandomValuesWithAverage(1024, 100),
2016-07-15 12:17:51 -04:00
}
bbs := &BollingerBandsSeries{
InnerSeries: s1,
}
xvalues := make([]float64, 100)
y1values := make([]float64, 100)
y2values := make([]float64, 100)
for x := 0; x < 100; x++ {
2017-04-28 19:07:36 -04:00
xvalues[x], y1values[x], y2values[x] = bbs.GetBoundedValues(x)
2016-07-15 12:17:51 -04:00
}
2016-07-18 18:08:50 -04:00
for x := bbs.GetPeriod(); x < 100; x++ {
2017-04-28 19:07:36 -04:00
assert.True(y1values[x] > y2values[x], fmt.Sprintf("%v vs. %v", y1values[x], y2values[x]))
2016-07-15 12:17:51 -04:00
}
}
2016-07-15 16:27:45 -04:00
func TestBollingerBandLastValue(t *testing.T) {
assert := assert.New(t)
2017-04-28 19:07:36 -04:00
s1 := mockValuesProvider{
2017-05-12 17:17:43 -04:00
X: seq.Range(1.0, 100.0),
Y: seq.Range(1.0, 100.0),
2016-07-15 16:27:45 -04:00
}
bbs := &BollingerBandsSeries{
InnerSeries: s1,
}
2017-04-28 19:07:36 -04:00
x, y1, y2 := bbs.GetBoundedLastValues()
2016-07-15 16:27:45 -04:00
assert.Equal(100.0, x)
assert.Equal(101, math.Floor(y1))
assert.Equal(83, math.Floor(y2))
2016-07-15 16:27:45 -04:00
}