2022-05-09 10:55:14 +00:00
|
|
|
package indicator
|
|
|
|
|
|
|
|
import (
|
2022-05-10 08:15:26 +00:00
|
|
|
"math"
|
|
|
|
|
2022-08-25 09:31:42 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/datatype/floats"
|
2022-05-09 10:55:14 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Refer: Commodity Channel Index
|
2022-05-10 08:15:26 +00:00
|
|
|
// Refer URL: http://www.andrewshamlet.net/2017/07/08/python-tutorial-cci
|
|
|
|
// with modification of ddof=0 to let standard deviation to be divided by N instead of N-1
|
2022-05-09 10:55:14 +00:00
|
|
|
//go:generate callbackgen -type CCI
|
|
|
|
type CCI struct {
|
2022-06-29 12:49:02 +00:00
|
|
|
types.SeriesBase
|
2022-05-09 10:55:14 +00:00
|
|
|
types.IntervalWindow
|
2022-08-25 09:31:42 +00:00
|
|
|
Input floats.Slice
|
|
|
|
TypicalPrice floats.Slice
|
|
|
|
MA floats.Slice
|
|
|
|
Values floats.Slice
|
2022-05-09 10:55:14 +00:00
|
|
|
|
|
|
|
UpdateCallbacks []func(value float64)
|
|
|
|
}
|
|
|
|
|
2022-05-10 08:15:26 +00:00
|
|
|
func (inc *CCI) Update(value float64) {
|
2022-05-09 10:55:14 +00:00
|
|
|
if len(inc.TypicalPrice) == 0 {
|
2022-06-29 12:49:02 +00:00
|
|
|
inc.SeriesBase.Series = inc
|
2022-05-10 08:15:26 +00:00
|
|
|
inc.TypicalPrice.Push(value)
|
|
|
|
inc.Input.Push(value)
|
2022-05-09 10:55:14 +00:00
|
|
|
return
|
|
|
|
} else if len(inc.TypicalPrice) > MaxNumOfEWMA {
|
|
|
|
inc.TypicalPrice = inc.TypicalPrice[MaxNumOfEWMATruncateSize-1:]
|
2022-05-10 08:15:26 +00:00
|
|
|
inc.Input = inc.Input[MaxNumOfEWMATruncateSize-1:]
|
2022-05-09 10:55:14 +00:00
|
|
|
}
|
|
|
|
|
2022-05-10 08:15:26 +00:00
|
|
|
inc.Input.Push(value)
|
|
|
|
tp := inc.TypicalPrice.Last() - inc.Input.Index(inc.Window) + value
|
2022-05-09 10:55:14 +00:00
|
|
|
inc.TypicalPrice.Push(tp)
|
2022-05-10 08:15:26 +00:00
|
|
|
if len(inc.Input) < inc.Window {
|
2022-05-09 10:55:14 +00:00
|
|
|
return
|
|
|
|
}
|
2022-05-10 08:15:26 +00:00
|
|
|
ma := tp / float64(inc.Window)
|
2022-05-09 10:55:14 +00:00
|
|
|
inc.MA.Push(ma)
|
2022-05-10 08:15:26 +00:00
|
|
|
if len(inc.MA) > MaxNumOfEWMA {
|
2022-05-09 10:55:14 +00:00
|
|
|
inc.MA = inc.MA[MaxNumOfEWMATruncateSize-1:]
|
|
|
|
}
|
|
|
|
md := 0.
|
|
|
|
for i := 0; i < inc.Window; i++ {
|
2022-05-10 08:15:26 +00:00
|
|
|
diff := inc.Input.Index(i) - ma
|
|
|
|
md += diff * diff
|
2022-05-09 10:55:14 +00:00
|
|
|
}
|
2022-05-10 08:15:26 +00:00
|
|
|
md = math.Sqrt(md / float64(inc.Window))
|
2022-05-09 10:55:14 +00:00
|
|
|
|
2022-05-10 08:15:26 +00:00
|
|
|
cci := (value - ma) / (0.015 * md)
|
2022-05-09 10:55:14 +00:00
|
|
|
|
|
|
|
inc.Values.Push(cci)
|
|
|
|
if len(inc.Values) > MaxNumOfEWMA {
|
|
|
|
inc.Values = inc.Values[MaxNumOfEWMATruncateSize-1:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *CCI) Last() float64 {
|
|
|
|
if len(inc.Values) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
2022-05-10 08:15:26 +00:00
|
|
|
return inc.Values[len(inc.Values)-1]
|
2022-05-09 10:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *CCI) Index(i int) float64 {
|
|
|
|
if i >= len(inc.Values) {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return inc.Values[len(inc.Values)-1-i]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *CCI) Length() int {
|
|
|
|
return len(inc.Values)
|
|
|
|
}
|
|
|
|
|
2022-06-29 12:49:02 +00:00
|
|
|
var _ types.SeriesExtend = &CCI{}
|
2022-05-09 10:55:14 +00:00
|
|
|
|
2022-07-13 17:12:36 +00:00
|
|
|
func (inc *CCI) PushK(k types.KLine) {
|
|
|
|
inc.Update(k.High.Add(k.Low).Add(k.Close).Div(three).Float64())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *CCI) CalculateAndUpdate(allKLines []types.KLine) {
|
2022-05-10 08:15:26 +00:00
|
|
|
if inc.TypicalPrice.Length() == 0 {
|
2022-05-09 10:55:14 +00:00
|
|
|
for _, k := range allKLines {
|
2022-07-13 17:12:36 +00:00
|
|
|
inc.PushK(k)
|
2022-05-09 10:55:14 +00:00
|
|
|
inc.EmitUpdate(inc.Last())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
k := allKLines[len(allKLines)-1]
|
2022-07-13 17:12:36 +00:00
|
|
|
inc.PushK(k)
|
2022-05-09 10:55:14 +00:00
|
|
|
inc.EmitUpdate(inc.Last())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *CCI) handleKLineWindowUpdate(interval types.Interval, window types.KLineWindow) {
|
|
|
|
if inc.Interval != interval {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-07-13 17:12:36 +00:00
|
|
|
inc.CalculateAndUpdate(window)
|
2022-05-09 10:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *CCI) Bind(updater KLineWindowUpdater) {
|
|
|
|
updater.OnKLineWindowUpdate(inc.handleKLineWindowUpdate)
|
|
|
|
}
|