bbgo_origin/pkg/indicator/stoch.go

84 lines
1.6 KiB
Go
Raw Normal View History

2021-05-21 19:24:09 +00:00
package indicator
import (
"time"
"github.com/c9s/bbgo/pkg/types"
)
const DPeriod int = 3
/*
2021-05-21 21:52:10 +00:00
stoch implements stochastic oscillator indicator
2021-05-21 19:24:09 +00:00
Stochastic Oscillator
- https://www.investopedia.com/terms/s/stochasticoscillator.asp
*/
2021-05-21 21:52:10 +00:00
//go:generate callbackgen -type STOCH
type STOCH struct {
2021-05-21 19:24:09 +00:00
types.IntervalWindow
K Float64Slice
D Float64Slice
KLineWindow types.KLineWindow
EndTime time.Time
UpdateCallbacks []func(k float64, d float64)
}
2021-05-21 21:52:10 +00:00
func (inc *STOCH) update(kLine types.KLine) {
2021-05-21 19:24:09 +00:00
inc.KLineWindow.Add(kLine)
inc.KLineWindow.Truncate(inc.Window)
lowest := inc.KLineWindow.GetLow()
highest := inc.KLineWindow.GetHigh()
k := 100.0 * (kLine.Close - lowest) / (highest - lowest)
inc.K.Push(k)
d := inc.K.Tail(DPeriod).Mean()
inc.D.Push(d)
}
2021-05-21 21:52:10 +00:00
func (inc *STOCH) LastK() float64 {
2021-05-21 19:24:09 +00:00
if len(inc.K) == 0 {
return 0.0
}
return inc.K[len(inc.K)-1]
}
2021-05-21 21:52:10 +00:00
func (inc *STOCH) LastD() float64 {
2021-05-21 19:24:09 +00:00
if len(inc.K) == 0 {
return 0.0
}
return inc.D[len(inc.D)-1]
}
2021-05-21 21:52:10 +00:00
func (inc *STOCH) calculateAndUpdate(kLines []types.KLine) {
2021-05-21 19:24:09 +00:00
if len(kLines) < inc.Window || len(kLines) < DPeriod {
return
}
for i, k := range kLines {
if inc.EndTime != zeroTime && k.EndTime.Before(inc.EndTime) {
continue
}
inc.update(k)
inc.EmitUpdate(inc.LastK(), inc.LastD())
inc.EndTime = kLines[i].EndTime
}
}
2021-05-21 21:52:10 +00:00
func (inc *STOCH) handleKLineWindowUpdate(interval types.Interval, window types.KLineWindow) {
2021-05-21 19:24:09 +00:00
if inc.Interval != interval {
return
}
inc.calculateAndUpdate(window)
}
2021-05-21 21:52:10 +00:00
func (inc *STOCH) Bind(updater KLineWindowUpdater) {
2021-05-21 19:24:09 +00:00
updater.OnKLineWindowUpdate(inc.handleKLineWindowUpdate)
}