bbgo_origin/pkg/indicator/v2/rma.go

61 lines
1006 B
Go
Raw Normal View History

2023-07-10 08:54:22 +00:00
package indicatorv2
import (
"github.com/c9s/bbgo/pkg/types"
)
const MaxNumOfRMA = 1000
2023-05-30 03:35:24 +00:00
type RMAStream struct {
// embedded structs
2023-07-10 08:54:22 +00:00
*types.Float64Series
2023-05-30 03:35:24 +00:00
// config fields
Adjust bool
2023-05-30 04:29:50 +00:00
window int
counter int
sum, previous float64
2023-05-30 03:35:24 +00:00
}
2023-07-10 08:54:22 +00:00
func RMA2(source types.Float64Source, window int, adjust bool) *RMAStream {
checkWindow(window)
2023-05-30 03:35:24 +00:00
s := &RMAStream{
2023-07-10 08:54:22 +00:00
Float64Series: types.NewFloat64Series(),
2023-05-30 04:29:50 +00:00
window: window,
Adjust: adjust,
2023-05-30 03:35:24 +00:00
}
s.Bind(source, s)
2023-05-30 03:35:24 +00:00
return s
}
func (s *RMAStream) Calculate(x float64) float64 {
2023-05-30 04:29:50 +00:00
lambda := 1 / float64(s.window)
2023-05-30 03:35:24 +00:00
if s.counter == 0 {
s.sum = 1
2023-10-24 08:37:44 +00:00
s.previous = x
2023-05-30 03:35:24 +00:00
} else {
if s.Adjust {
s.sum = s.sum*(1-lambda) + 1
2023-10-24 08:37:44 +00:00
s.previous = s.previous + (x-s.previous)/s.sum
2023-05-30 03:35:24 +00:00
} else {
2023-10-24 08:37:44 +00:00
s.previous = s.previous*(1-lambda) + x*lambda
2023-05-30 03:35:24 +00:00
}
}
s.counter++
2023-10-24 08:37:44 +00:00
return s.previous
}
2023-05-30 03:35:24 +00:00
func (s *RMAStream) Truncate() {
s.Slice = generalTruncate(s.Slice)
2023-05-30 03:35:24 +00:00
}
func checkWindow(window int) {
if window == 0 {
panic("window can not be zero")
}
}