This commit is contained in:
Will Charczuk 2016-07-15 09:17:51 -07:00
parent bc2b51077b
commit d888440415
3 changed files with 58 additions and 2 deletions

View file

@ -0,0 +1,32 @@
package chart
import (
"testing"
"github.com/blendlabs/go-assert"
)
func TestBollingerBandSeries(t *testing.T) {
assert := assert.New(t)
s1 := mockValueProvider{
X: Seq(1.0, 100.0),
Y: SeqRand(100, 1024),
}
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)
}
for x := bbs.GetWindowSize(); x < 100; x++ {
assert.True(y1values[x] > y2values[x])
}
}