mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 14:55:16 +00:00
bbgo: fix macdIndicators map initialization
This commit is contained in:
parent
67b526120a
commit
3ab5d35b77
|
@ -42,11 +42,12 @@ type indicatorKey struct {
|
||||||
|
|
||||||
func NewStandardIndicatorSet(symbol string, stream types.Stream, store *MarketDataStore) *StandardIndicatorSet {
|
func NewStandardIndicatorSet(symbol string, stream types.Stream, store *MarketDataStore) *StandardIndicatorSet {
|
||||||
return &StandardIndicatorSet{
|
return &StandardIndicatorSet{
|
||||||
Symbol: symbol,
|
Symbol: symbol,
|
||||||
store: store,
|
store: store,
|
||||||
stream: stream,
|
stream: stream,
|
||||||
iwIndicators: make(map[indicatorKey]indicator.KLinePusher),
|
iwIndicators: make(map[indicatorKey]indicator.KLinePusher),
|
||||||
iwbIndicators: make(map[types.IntervalWindowBandWidth]*indicator.BOLL),
|
iwbIndicators: make(map[types.IntervalWindowBandWidth]*indicator.BOLL),
|
||||||
|
macdIndicators: make(map[indicator.MACDConfig]*indicator.MACD),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user