bbgo_origin/pkg/indicator/pivot.go

126 lines
2.4 KiB
Go
Raw Normal View History

2022-05-13 10:04:22 +00:00
package indicator
import (
"fmt"
"time"
2022-06-09 04:25:36 +00:00
log "github.com/sirupsen/logrus"
"github.com/c9s/bbgo/pkg/datatype/floats"
2022-05-13 10:04:22 +00:00
"github.com/c9s/bbgo/pkg/types"
)
//go:generate callbackgen -type Pivot
type Pivot struct {
types.IntervalWindow
// Values
Lows floats.Slice // higher low
Highs floats.Slice // lower high
2022-05-13 10:04:22 +00:00
EndTime time.Time
updateCallbacks []func(valueLow, valueHigh float64)
2022-05-13 10:04:22 +00:00
}
func (inc *Pivot) LastLow() float64 {
if len(inc.Lows) == 0 {
return 0.0
}
return inc.Lows[len(inc.Lows)-1]
}
func (inc *Pivot) LastHigh() float64 {
if len(inc.Highs) == 0 {
return 0.0
}
return inc.Highs[len(inc.Highs)-1]
}
func (inc *Pivot) CalculateAndUpdate(klines []types.KLine) {
2022-05-13 10:04:22 +00:00
if len(klines) < inc.Window {
return
}
var end = len(klines) - 1
var lastKLine = klines[end]
2022-06-09 04:25:36 +00:00
// skip old data
2022-05-13 10:04:22 +00:00
if inc.EndTime != zeroTime && lastKLine.GetEndTime().Before(inc.EndTime) {
return
}
2022-06-09 04:25:36 +00:00
recentT := klines[end-(inc.Window-1) : end+1]
2022-05-13 10:04:22 +00:00
l, h, err := calculatePivot(recentT, inc.Window, KLineLowPriceMapper, KLineHighPriceMapper)
if err != nil {
log.WithError(err).Error("can not calculate pivots")
return
}
2022-06-09 04:25:36 +00:00
if l > 0.0 {
inc.Lows.Push(l)
}
if h > 0.0 {
inc.Highs.Push(h)
}
2022-05-13 10:04:22 +00:00
if len(inc.Lows) > MaxNumOfVOL {
inc.Lows = inc.Lows[MaxNumOfVOLTruncateSize-1:]
}
if len(inc.Highs) > MaxNumOfVOL {
inc.Highs = inc.Highs[MaxNumOfVOLTruncateSize-1:]
}
inc.EndTime = klines[end].GetEndTime().Time()
inc.EmitUpdate(l, h)
}
func (inc *Pivot) handleKLineWindowUpdate(interval types.Interval, window types.KLineWindow) {
if inc.Interval != interval {
return
}
inc.CalculateAndUpdate(window)
2022-05-13 10:04:22 +00:00
}
func (inc *Pivot) Bind(updater KLineWindowUpdater) {
updater.OnKLineWindowUpdate(inc.handleKLineWindowUpdate)
}
func calculatePivot(klines []types.KLine, window int, valLow KLineValueMapper, valHigh KLineValueMapper) (float64, float64, error) {
length := len(klines)
if length == 0 || length < window {
2022-06-09 04:25:36 +00:00
return 0., 0., fmt.Errorf("insufficient elements for calculating with window = %d", window)
2022-05-13 10:04:22 +00:00
}
2022-06-09 04:25:36 +00:00
var lows floats.Slice
var highs floats.Slice
2022-05-13 10:04:22 +00:00
for _, k := range klines {
lows.Push(valLow(k))
highs.Push(valHigh(k))
}
pl := 0.
if lows.Min() == lows.Last(int(window/2.)-1) {
2022-05-13 10:04:22 +00:00
pl = lows.Min()
}
2022-06-09 04:25:36 +00:00
2022-05-13 10:04:22 +00:00
ph := 0.
if highs.Max() == highs.Last(int(window/2.)-1) {
2022-05-13 10:04:22 +00:00
ph = highs.Max()
}
return pl, ph, nil
}
func KLineLowPriceMapper(k types.KLine) float64 {
return k.Low.Float64()
}
func KLineHighPriceMapper(k types.KLine) float64 {
return k.High.Float64()
}