mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
53 lines
999 B
Go
53 lines
999 B
Go
package indicator
|
|
|
|
import (
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
type KLineSubscription interface {
|
|
AddSubscriber(f func(k types.KLine))
|
|
Length() int
|
|
Last(i int) *types.KLine
|
|
}
|
|
|
|
type PriceStream struct {
|
|
Float64Series
|
|
|
|
mapper KLineValueMapper
|
|
}
|
|
|
|
func Price(source KLineSubscription, mapper KLineValueMapper) *PriceStream {
|
|
s := &PriceStream{
|
|
mapper: mapper,
|
|
}
|
|
|
|
s.SeriesBase.Series = s.slice
|
|
|
|
source.AddSubscriber(func(k types.KLine) {
|
|
v := s.mapper(k)
|
|
s.PushAndEmit(v)
|
|
})
|
|
return s
|
|
}
|
|
|
|
func (s *PriceStream) PushAndEmit(v float64) {
|
|
s.slice.Push(v)
|
|
s.EmitUpdate(v)
|
|
}
|
|
|
|
func ClosePrices(source KLineSubscription) *PriceStream {
|
|
return Price(source, KLineClosePriceMapper)
|
|
}
|
|
|
|
func LowPrices(source KLineSubscription) *PriceStream {
|
|
return Price(source, KLineLowPriceMapper)
|
|
}
|
|
|
|
func HighPrices(source KLineSubscription) *PriceStream {
|
|
return Price(source, KLineHighPriceMapper)
|
|
}
|
|
|
|
func OpenPrices(source KLineSubscription) *PriceStream {
|
|
return Price(source, KLineOpenPriceMapper)
|
|
}
|