bbgo_origin/pkg/indicator/ewma.go

152 lines
3.6 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
"math"
2020-10-28 01:13:57 +00:00
"time"
2020-12-05 05:04:32 +00:00
log "github.com/sirupsen/logrus"
2020-10-28 01:13:57 +00:00
"github.com/c9s/bbgo/pkg/types"
)
// These numbers should be aligned with bbgo MaxNumOfKLines and MaxNumOfKLinesTruncate
const MaxNumOfEWMA = 5_000
2021-11-21 14:18:07 +00:00
const MaxNumOfEWMATruncateSize = 100
2020-12-03 08:46:02 +00:00
//go:generate callbackgen -type EWMA
2020-10-28 01:13:57 +00:00
type EWMA struct {
types.IntervalWindow
2021-05-22 12:20:48 +00:00
Values types.Float64Slice
2020-12-05 05:04:32 +00:00
LastOpenTime time.Time
2020-12-03 08:46:02 +00:00
UpdateCallbacks []func(value float64)
2020-10-28 01:13:57 +00:00
}
2021-05-08 16:56:44 +00:00
func (inc *EWMA) Update(value float64) {
var multiplier = 2.0 / float64(1+inc.Window)
if len(inc.Values) == 0 {
inc.Values.Push(value)
return
} else if len(inc.Values) > MaxNumOfEWMA {
2021-11-21 18:14:44 +00:00
inc.Values = inc.Values[MaxNumOfEWMATruncateSize-1:]
2021-05-08 16:56:44 +00:00
}
ema := (1-multiplier)*inc.Last() + multiplier*value
inc.Values.Push(ema)
}
func (inc *EWMA) Last() float64 {
2020-12-08 02:26:20 +00:00
if len(inc.Values) == 0 {
return 0
}
return inc.Values[len(inc.Values)-1]
}
2020-12-05 05:04:32 +00:00
func (inc *EWMA) calculateAndUpdate(allKLines []types.KLine) {
if len(allKLines) < inc.Window {
2020-10-28 01:13:57 +00:00
// we can't calculate
return
}
2020-12-05 05:04:32 +00:00
var priceF = KLineClosePriceMapper
var dataLen = len(allKLines)
var multiplier = 2.0 / (float64(inc.Window) + 1)
2021-11-21 18:14:44 +00:00
// init the values fromNthK the kline data
var fromNthK = 1
2020-12-05 05:04:32 +00:00
if len(inc.Values) == 0 {
// for the first value, we should use the close price
inc.Values = []float64{priceF(allKLines[0])}
} else {
2021-11-21 18:14:44 +00:00
fromNthK = len(inc.Values)
2020-12-05 05:32:16 +00:00
2020-12-05 05:04:32 +00:00
// update ewma with the existing values
for i := dataLen - 1; i > 0; i-- {
2020-12-05 05:32:16 +00:00
var k = allKLines[i]
if k.StartTime.After(inc.LastOpenTime) {
2021-11-21 18:14:44 +00:00
fromNthK = i
2020-12-05 05:04:32 +00:00
} else {
break
}
}
}
2021-11-21 18:14:44 +00:00
if len(inc.Values) >= MaxNumOfEWMA {
inc.Values = inc.Values[MaxNumOfEWMATruncateSize-1:]
}
2021-11-21 18:14:44 +00:00
for i := fromNthK; i < dataLen; i++ {
2020-12-05 05:04:32 +00:00
var k = allKLines[i]
var ewma = priceF(k)*multiplier + (1-multiplier)*inc.Values[i-1]
inc.Values.Push(ewma)
inc.LastOpenTime = k.StartTime.Time()
2020-12-05 05:04:32 +00:00
inc.EmitUpdate(ewma)
2020-10-28 01:13:57 +00:00
}
2020-12-05 05:04:32 +00:00
if len(inc.Values) != dataLen {
2021-11-21 18:14:44 +00:00
// check error
log.Warnf("%s EMA (%d) value length (%d) != kline window length (%d)", inc.Interval, inc.Window, len(inc.Values), dataLen)
2020-12-05 05:04:32 +00:00
}
v1 := math.Floor(inc.Values[len(inc.Values)-1]*100.0) / 100.0
2020-12-07 15:03:06 +00:00
v2 := math.Floor(CalculateKLinesEMA(allKLines, priceF, inc.Window)*100.0) / 100.0
2020-12-05 05:04:32 +00:00
if v1 != v2 {
2020-12-05 05:32:16 +00:00
log.Warnf("ACCUMULATED %s EMA (%d) %f != EMA %f", inc.Interval, inc.Window, v1, v2)
2020-12-05 05:04:32 +00:00
}
}
2020-12-07 15:03:06 +00:00
func CalculateKLinesEMA(allKLines []types.KLine, priceF KLinePriceMapper, window int) float64 {
2020-12-05 05:04:32 +00:00
var multiplier = 2.0 / (float64(window) + 1)
return ewma(MapKLinePrice(allKLines, priceF), multiplier)
2020-12-04 11:40:05 +00:00
}
// see https://www.investopedia.com/ask/answers/122314/what-exponential-moving-average-ema-formula-and-how-ema-calculated.asp
2020-12-05 05:04:32 +00:00
func ewma(prices []float64, multiplier float64) float64 {
var end = len(prices) - 1
2020-12-04 11:40:05 +00:00
if end == 0 {
2020-12-05 05:04:32 +00:00
return prices[0]
}
return prices[end]*multiplier + (1-multiplier)*ewma(prices[:end], multiplier)
}
type KLinePriceMapper func(k types.KLine) float64
func KLineOpenPriceMapper(k types.KLine) float64 {
return k.Open
}
func KLineClosePriceMapper(k types.KLine) float64 {
return k.Close
}
func KLineTypicalPriceMapper(k types.KLine) float64 {
return (k.High + k.Low + k.Close) / float64(3)
}
2020-12-05 05:04:32 +00:00
func MapKLinePrice(kLines []types.KLine, f KLinePriceMapper) (prices []float64) {
for _, k := range kLines {
prices = append(prices, f(k))
2020-10-28 01:13:57 +00:00
}
2020-12-04 11:40:05 +00:00
2020-12-05 05:04:32 +00:00
return prices
2020-10-28 01:13:57 +00:00
}
type KLineWindowUpdater interface {
OnKLineWindowUpdate(func(interval types.Interval, window types.KLineWindow))
}
func (inc *EWMA) handleKLineWindowUpdate(interval types.Interval, window types.KLineWindow) {
if inc.Interval != interval {
return
}
inc.calculateAndUpdate(window)
}
2020-10-28 01:13:57 +00:00
func (inc *EWMA) Bind(updater KLineWindowUpdater) {
updater.OnKLineWindowUpdate(inc.handleKLineWindowUpdate)
2020-10-28 01:13:57 +00:00
}