2021-05-10 09:17:50 +00:00
|
|
|
package indicator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
/*
|
|
|
|
obv implements on-balance volume indicator
|
|
|
|
|
|
|
|
On-Balance Volume (OBV) Definition
|
|
|
|
- https://www.investopedia.com/terms/o/onbalancevolume.asp
|
|
|
|
*/
|
|
|
|
//go:generate callbackgen -type OBV
|
|
|
|
type OBV struct {
|
|
|
|
types.IntervalWindow
|
2021-05-22 12:20:48 +00:00
|
|
|
Values types.Float64Slice
|
2022-02-03 04:55:25 +00:00
|
|
|
PrePrice float64
|
2021-05-10 09:17:50 +00:00
|
|
|
|
|
|
|
EndTime time.Time
|
2022-02-03 04:55:25 +00:00
|
|
|
UpdateCallbacks []func(value float64)
|
2021-05-10 09:17:50 +00:00
|
|
|
}
|
|
|
|
|
2022-03-28 19:19:29 +00:00
|
|
|
func (inc *OBV) Update(kLine types.KLine, priceF KLinePriceMapper) {
|
2021-05-10 09:17:50 +00:00
|
|
|
price := priceF(kLine)
|
2022-02-03 04:55:25 +00:00
|
|
|
volume := kLine.Volume.Float64()
|
2021-05-10 09:17:50 +00:00
|
|
|
|
|
|
|
if len(inc.Values) == 0 {
|
|
|
|
inc.PrePrice = price
|
|
|
|
inc.Values.Push(volume)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-02-08 04:41:24 +00:00
|
|
|
if volume < inc.PrePrice {
|
|
|
|
inc.Values.Push(inc.Last() - volume)
|
|
|
|
} else {
|
|
|
|
inc.Values.Push(inc.Last() + volume)
|
2021-05-10 09:17:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *OBV) Last() float64 {
|
|
|
|
if len(inc.Values) == 0 {
|
|
|
|
return 0.0
|
|
|
|
}
|
|
|
|
return inc.Values[len(inc.Values)-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *OBV) calculateAndUpdate(kLines []types.KLine) {
|
|
|
|
var priceF = KLineClosePriceMapper
|
|
|
|
|
2022-03-28 19:19:29 +00:00
|
|
|
for _, k := range kLines {
|
2021-05-10 09:17:50 +00:00
|
|
|
if inc.EndTime != zeroTime && k.EndTime.Before(inc.EndTime) {
|
|
|
|
continue
|
|
|
|
}
|
2022-03-28 19:19:29 +00:00
|
|
|
inc.Update(k, priceF)
|
2021-05-10 09:17:50 +00:00
|
|
|
}
|
2022-03-28 19:19:29 +00:00
|
|
|
inc.EmitUpdate(inc.Last())
|
|
|
|
inc.EndTime = kLines[len(kLines)-1].EndTime.Time()
|
2021-05-10 09:17:50 +00:00
|
|
|
}
|
|
|
|
func (inc *OBV) handleKLineWindowUpdate(interval types.Interval, window types.KLineWindow) {
|
|
|
|
if inc.Interval != interval {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
inc.calculateAndUpdate(window)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *OBV) Bind(updater KLineWindowUpdater) {
|
|
|
|
updater.OnKLineWindowUpdate(inc.handleKLineWindowUpdate)
|
|
|
|
}
|