From 66c8a3bb0d27f2bcee6c10d213d7d5904e618d6b Mon Sep 17 00:00:00 2001 From: zenix Date: Tue, 6 Sep 2022 19:15:13 +0900 Subject: [PATCH] fix: rename getSource to sourceGetter --- pkg/bbgo/source.go | 22 +++++++++++----------- pkg/bbgo/source_test.go | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pkg/bbgo/source.go b/pkg/bbgo/source.go index 876b56109..25f7becbd 100644 --- a/pkg/bbgo/source.go +++ b/pkg/bbgo/source.go @@ -12,8 +12,8 @@ import ( type SourceFunc func(*types.KLine) fixedpoint.Value type selectorInternal struct { - Source string - getSource SourceFunc + Source string + sourceGetter SourceFunc } func (s *selectorInternal) UnmarshalJSON(d []byte) error { @@ -39,26 +39,26 @@ type SourceSelector struct { func (s *selectorInternal) init() { switch strings.ToLower(s.Source) { case "close": - s.getSource = func(kline *types.KLine) fixedpoint.Value { return kline.Close } + s.sourceGetter = func(kline *types.KLine) fixedpoint.Value { return kline.Close } case "high": - s.getSource = func(kline *types.KLine) fixedpoint.Value { return kline.High } + s.sourceGetter = func(kline *types.KLine) fixedpoint.Value { return kline.High } case "low": - s.getSource = func(kline *types.KLine) fixedpoint.Value { return kline.Low } + s.sourceGetter = func(kline *types.KLine) fixedpoint.Value { return kline.Low } case "hl2": - s.getSource = func(kline *types.KLine) fixedpoint.Value { return kline.High.Add(kline.Low).Div(fixedpoint.Two) } + s.sourceGetter = func(kline *types.KLine) fixedpoint.Value { return kline.High.Add(kline.Low).Div(fixedpoint.Two) } case "hlc3": - s.getSource = func(kline *types.KLine) fixedpoint.Value { + s.sourceGetter = func(kline *types.KLine) fixedpoint.Value { return kline.High.Add(kline.Low).Add(kline.Close).Div(fixedpoint.Three) } case "ohlc4": - s.getSource = func(kline *types.KLine) fixedpoint.Value { + s.sourceGetter = func(kline *types.KLine) fixedpoint.Value { return kline.High.Add(kline.Low).Add(kline.Close).Add(kline.Open).Div(fixedpoint.Four) } case "open": - s.getSource = func(kline *types.KLine) fixedpoint.Value { return kline.Open } + s.sourceGetter = func(kline *types.KLine) fixedpoint.Value { return kline.Open } default: log.Infof("source not set: %s, use hl2 by default", s.Source) - s.getSource = func(kline *types.KLine) fixedpoint.Value { return kline.High.Add(kline.Low).Div(fixedpoint.Two) } + s.sourceGetter = func(kline *types.KLine) fixedpoint.Value { return kline.High.Add(kline.Low).Div(fixedpoint.Two) } } } @@ -76,5 +76,5 @@ func (s *SourceSelector) GetSource(kline *types.KLine) fixedpoint.Value { s.Source.Source = "close" s.Source.init() } - return s.Source.getSource(kline) + return s.Source.sourceGetter(kline) } diff --git a/pkg/bbgo/source_test.go b/pkg/bbgo/source_test.go index dc231a0ed..cfcee3c08 100644 --- a/pkg/bbgo/source_test.go +++ b/pkg/bbgo/source_test.go @@ -17,7 +17,7 @@ func TestSource(t *testing.T) { s := Strategy{} assert.NoError(t, json.Unmarshal([]byte(input), &s)) assert.Equal(t, s.Source.Source, "high") - assert.NotNil(t, s.Source.getSource) + assert.NotNil(t, s.Source.sourceGetter) e, err := json.Marshal(&s) assert.NoError(t, err) assert.Equal(t, input, string(e))