2021-05-10 10:12:10 +00:00
|
|
|
package indicator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2022-08-25 09:31:42 +00:00
|
|
|
"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 {
|
2022-06-29 12:49:02 +00:00
|
|
|
types.SeriesBase
|
2021-05-10 10:12:10 +00:00
|
|
|
types.IntervalWindow
|
2022-08-25 09:31:42 +00:00
|
|
|
Values floats.Slice
|
2021-05-10 10:12:10 +00:00
|
|
|
PrePrice float64
|
|
|
|
|
|
|
|
EndTime time.Time
|
|
|
|
UpdateCallbacks []func(value float64)
|
|
|
|
}
|
|
|
|
|
2022-04-18 04:08:21 +00:00
|
|
|
func (inc *AD) Update(high, low, cloze, volume float64) {
|
2022-06-29 12:49:02 +00:00
|
|
|
if len(inc.Values) == 0 {
|
|
|
|
inc.SeriesBase.Series = inc
|
|
|
|
}
|
2022-04-04 09:19:17 +00:00
|
|
|
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
|
|
|
|
2023-05-31 11:35:44 +00:00
|
|
|
ad := inc.Last(0) + moneyFlowVolume
|
2021-05-10 10:12:10 +00:00
|
|
|
inc.Values.Push(ad)
|
|
|
|
}
|
|
|
|
|
2023-05-31 11:35:44 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-04-04 04:14:17 +00:00
|
|
|
func (inc *AD) Index(i int) float64 {
|
2023-05-31 23:46:50 +00:00
|
|
|
return inc.Last(i)
|
2022-04-04 04:14:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *AD) Length() int {
|
|
|
|
return len(inc.Values)
|
|
|
|
}
|
|
|
|
|
2022-06-29 12:49:02 +00:00
|
|
|
var _ types.SeriesExtend = &AD{}
|
2022-04-04 04:14:17 +00:00
|
|
|
|
2022-07-13 16:41:20 +00:00
|
|
|
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
|
|
|
|
}
|
2022-04-18 04:08:21 +00:00
|
|
|
inc.Update(k.High.Float64(), k.Low.Float64(), k.Close.Float64(), k.Volume.Float64())
|
2021-05-10 10:12:10 +00:00
|
|
|
}
|
|
|
|
|
2023-05-31 11:35:44 +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
|
|
|
}
|