bbgo_origin/pkg/indicator/ad.go

67 lines
1.3 KiB
Go
Raw Permalink Normal View History

2021-05-10 10:12:10 +00:00
package indicator
import (
"time"
"github.com/c9s/bbgo/pkg/datatype/floats"
2021-05-10 10:12:10 +00:00
"github.com/c9s/bbgo/pkg/types"
)
/*
ad implements accumulation/distribution indicator
Accumulation/Distribution Indicator (A/D)
- https://www.investopedia.com/terms/a/accumulationdistribution.asp
*/
//go:generate callbackgen -type AD
type AD struct {
types.SeriesBase
2021-05-10 10:12:10 +00:00
types.IntervalWindow
Values floats.Slice
2021-05-10 10:12:10 +00:00
PrePrice float64
EndTime time.Time
UpdateCallbacks []func(value float64)
}
func (inc *AD) Update(high, low, cloze, volume float64) {
if len(inc.Values) == 0 {
inc.SeriesBase.Series = inc
}
var moneyFlowVolume float64
if high == low {
moneyFlowVolume = 0
} else {
moneyFlowVolume = ((2*cloze - high - low) / (high - low)) * volume
}
2021-05-10 10:12:10 +00:00
ad := inc.Last(0) + moneyFlowVolume
2021-05-10 10:12:10 +00:00
inc.Values.Push(ad)
}
func (inc *AD) Last(i int) float64 {
2023-05-31 23:46:50 +00:00
return inc.Values.Last(i)
2021-05-10 10:12:10 +00:00
}
func (inc *AD) Index(i int) float64 {
2023-05-31 23:46:50 +00:00
return inc.Last(i)
}
func (inc *AD) Length() int {
return len(inc.Values)
}
var _ types.SeriesExtend = &AD{}
func (inc *AD) CalculateAndUpdate(kLines []types.KLine) {
2022-03-28 19:19:29 +00:00
for _, k := range kLines {
2022-04-14 21:43:04 +00:00
if inc.EndTime != zeroTime && !k.EndTime.After(inc.EndTime) {
2021-05-10 10:12:10 +00:00
continue
}
inc.Update(k.High.Float64(), k.Low.Float64(), k.Close.Float64(), k.Volume.Float64())
2021-05-10 10:12:10 +00:00
}
inc.EmitUpdate(inc.Last(0))
2022-03-28 19:19:29 +00:00
inc.EndTime = kLines[len(kLines)-1].EndTime.Time()
2021-05-10 10:12:10 +00:00
}