mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-25 08:15:15 +00:00
indicator: add pivothigh v2 indicator
This commit is contained in:
parent
9a486388fa
commit
15d1caef31
27
pkg/indicator/v2_pivothigh.go
Normal file
27
pkg/indicator/v2_pivothigh.go
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
package indicator
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/c9s/bbgo/pkg/datatype/floats"
|
||||||
|
)
|
||||||
|
|
||||||
|
type PivotHighStream struct {
|
||||||
|
Float64Series
|
||||||
|
rawValues floats.Slice
|
||||||
|
window, rightWindow int
|
||||||
|
}
|
||||||
|
|
||||||
|
func PivotHigh2(source Float64Source, window, rightWindow int) *PivotHighStream {
|
||||||
|
s := &PivotHighStream{
|
||||||
|
Float64Series: NewFloat64Series(),
|
||||||
|
window: window,
|
||||||
|
rightWindow: rightWindow,
|
||||||
|
}
|
||||||
|
|
||||||
|
s.Subscribe(source, func(x float64) {
|
||||||
|
s.rawValues.Push(x)
|
||||||
|
if low, ok := calculatePivotHigh(s.rawValues, s.window, s.rightWindow); ok {
|
||||||
|
s.PushAndEmit(low)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return s
|
||||||
|
}
|
|
@ -6,9 +6,7 @@ import (
|
||||||
|
|
||||||
type PivotLowStream struct {
|
type PivotLowStream struct {
|
||||||
Float64Series
|
Float64Series
|
||||||
|
rawValues floats.Slice
|
||||||
rawValues floats.Slice
|
|
||||||
|
|
||||||
window, rightWindow int
|
window, rightWindow int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user