2022-05-29 13:27:58 +00:00
|
|
|
package fmaker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2022-08-25 09:31:42 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/datatype/floats"
|
2022-05-29 13:27:58 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/indicator"
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
//go:generate callbackgen -type S4
|
|
|
|
type S4 struct {
|
|
|
|
types.IntervalWindow
|
|
|
|
|
|
|
|
// Values
|
2022-08-25 09:31:42 +00:00
|
|
|
Values floats.Slice
|
2022-05-29 13:27:58 +00:00
|
|
|
|
|
|
|
EndTime time.Time
|
|
|
|
|
|
|
|
UpdateCallbacks []func(val float64)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *S4) Last() float64 {
|
|
|
|
if len(inc.Values) == 0 {
|
|
|
|
return 0.0
|
|
|
|
}
|
|
|
|
return inc.Values[len(inc.Values)-1]
|
|
|
|
}
|
|
|
|
|
2022-07-14 02:28:53 +00:00
|
|
|
func (inc *S4) CalculateAndUpdate(klines []types.KLine) {
|
2022-05-29 13:27:58 +00:00
|
|
|
if len(klines) < inc.Window {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var end = len(klines) - 1
|
|
|
|
var lastKLine = klines[end]
|
|
|
|
|
|
|
|
if inc.EndTime != zeroTime && lastKLine.GetEndTime().Before(inc.EndTime) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var recentT = klines[end-(inc.Window-1) : end+1]
|
|
|
|
|
|
|
|
val, err := calculateS4(recentT, indicator.KLineClosePriceMapper)
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("can not calculate")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
inc.Values.Push(val)
|
|
|
|
|
|
|
|
if len(inc.Values) > indicator.MaxNumOfVOL {
|
|
|
|
inc.Values = inc.Values[indicator.MaxNumOfVOLTruncateSize-1:]
|
|
|
|
}
|
|
|
|
|
|
|
|
inc.EndTime = klines[end].GetEndTime().Time()
|
|
|
|
|
|
|
|
inc.EmitUpdate(val)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *S4) handleKLineWindowUpdate(interval types.Interval, window types.KLineWindow) {
|
|
|
|
if inc.Interval != interval {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-07-14 02:28:53 +00:00
|
|
|
inc.CalculateAndUpdate(window)
|
2022-05-29 13:27:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (inc *S4) Bind(updater indicator.KLineWindowUpdater) {
|
|
|
|
updater.OnKLineWindowUpdate(inc.handleKLineWindowUpdate)
|
|
|
|
}
|
|
|
|
|
|
|
|
func calculateS4(klines []types.KLine, valClose KLineValueMapper) (float64, error) {
|
|
|
|
window := 2
|
|
|
|
length := len(klines)
|
|
|
|
if length == 0 || length < window {
|
|
|
|
return 0., fmt.Errorf("insufficient elements for calculating with window = %d", window)
|
|
|
|
}
|
2022-08-25 09:31:42 +00:00
|
|
|
var closes floats.Slice
|
2022-05-29 13:27:58 +00:00
|
|
|
|
|
|
|
for _, k := range klines {
|
|
|
|
closes.Push(valClose(k))
|
|
|
|
}
|
|
|
|
|
|
|
|
currC := closes.Index(0)
|
|
|
|
alpha := 1 / currC
|
|
|
|
|
|
|
|
return alpha, nil
|
|
|
|
}
|