bbgo_origin/pkg/indicator/sma.go

110 lines
2.2 KiB
Go
Raw Normal View History

2020-10-28 01:13:57 +00:00
package indicator
import (
2020-12-05 05:04:32 +00:00
"fmt"
2020-10-28 01:13:57 +00:00
"time"
"github.com/c9s/bbgo/pkg/datatype/floats"
2020-10-28 01:13:57 +00:00
"github.com/c9s/bbgo/pkg/types"
)
2021-11-21 14:18:07 +00:00
const MaxNumOfSMA = 5_000
const MaxNumOfSMATruncateSize = 100
2020-12-03 08:46:02 +00:00
//go:generate callbackgen -type SMA
2020-10-28 01:13:57 +00:00
type SMA struct {
types.SeriesBase
types.IntervalWindow
Values floats.Slice
rawValues *types.Queue
EndTime time.Time
2020-12-03 08:46:02 +00:00
UpdateCallbacks []func(value float64)
2020-10-28 01:13:57 +00:00
}
func (inc *SMA) Last() float64 {
if inc.Values.Length() == 0 {
2021-10-14 06:22:07 +00:00
return 0.0
}
return inc.Values.Last()
}
func (inc *SMA) Index(i int) float64 {
if i >= inc.Values.Length() {
return 0.0
}
return inc.Values.Index(i)
}
func (inc *SMA) Length() int {
return inc.Values.Length()
}
func (inc *SMA) Clone() types.UpdatableSeriesExtend {
out := &SMA{
Values: inc.Values[:],
2022-07-13 05:31:49 +00:00
rawValues: inc.rawValues.Clone(),
EndTime: inc.EndTime,
}
out.SeriesBase.Series = out
return out
}
var _ types.SeriesExtend = &SMA{}
2022-04-08 09:48:33 +00:00
func (inc *SMA) Update(value float64) {
if inc.rawValues == nil {
inc.rawValues = types.NewQueue(inc.Window)
inc.SeriesBase.Series = inc
}
inc.rawValues.Update(value)
if inc.rawValues.Length() < inc.Window {
2022-04-08 09:48:33 +00:00
return
}
inc.Values.Push(types.Mean(inc.rawValues))
if len(inc.Values) > MaxNumOfSMA {
inc.Values = inc.Values[MaxNumOfSMATruncateSize-1:]
}
2022-04-08 09:48:33 +00:00
}
2022-07-20 17:04:49 +00:00
func (inc *SMA) BindK(target KLineClosedEmitter, symbol string, interval types.Interval) {
target.OnKLineClosed(types.KLineWith(symbol, interval, inc.PushK))
}
func (inc *SMA) PushK(k types.KLine) {
2022-07-20 17:04:49 +00:00
if inc.EndTime != zeroTime && k.EndTime.Before(inc.EndTime) {
return
}
inc.Update(k.Close.Float64())
inc.EndTime = k.EndTime.Time()
2022-07-20 17:04:49 +00:00
inc.EmitUpdate(inc.Values.Last())
}
2022-07-20 17:04:49 +00:00
func (inc *SMA) LoadK(allKLines []types.KLine) {
for _, k := range allKLines {
inc.PushK(k)
}
}
func calculateSMA(kLines []types.KLine, window int, priceF KLineValueMapper) (float64, error) {
2020-10-28 01:13:57 +00:00
length := len(kLines)
2020-12-05 05:04:32 +00:00
if length == 0 || length < window {
return 0.0, fmt.Errorf("insufficient elements for calculating SMA with window = %d", window)
2020-10-28 09:47:43 +00:00
}
if length != window {
return 0.0, fmt.Errorf("too much klines passed in, requires only %d klines", window)
}
2020-10-28 09:47:43 +00:00
sum := 0.0
2020-10-28 01:13:57 +00:00
for _, k := range kLines {
2020-12-05 05:32:16 +00:00
sum += priceF(k)
2020-10-28 01:13:57 +00:00
}
2020-12-05 05:04:32 +00:00
avg := sum / float64(window)
return avg, nil
2020-10-28 01:13:57 +00:00
}