mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 01:01:56 +00:00
Merge pull request #1696 from c9s/c9s/fix-convert-nil-issue
FIX: [core] setting.InitializeConverter could return a nil converter object
This commit is contained in:
commit
daa1def6d9
|
@ -32,9 +32,11 @@ func (s *ConverterSetting) InitializeConverter() (Converter, error) {
|
|||
|
||||
logrus.Infof("initializing converter %T ...", converter)
|
||||
err := converter.Initialize()
|
||||
return nil, err
|
||||
return converter, err
|
||||
}
|
||||
|
||||
// ConverterManager manages the converters for trade conversion
|
||||
// It can be used to convert the trade symbol into the target symbol, or convert the price, volume into different units.
|
||||
type ConverterManager struct {
|
||||
ConverterSettings []ConverterSetting `json:"converters,omitempty" yaml:"converters,omitempty"`
|
||||
|
||||
|
@ -43,15 +45,18 @@ type ConverterManager struct {
|
|||
|
||||
func (c *ConverterManager) Initialize() error {
|
||||
for _, setting := range c.ConverterSettings {
|
||||
|
||||
converter, err := setting.InitializeConverter()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if converter != nil {
|
||||
c.AddConverter(converter)
|
||||
}
|
||||
}
|
||||
|
||||
numConverters := len(c.converters)
|
||||
logrus.Infof("%d converters loaded", numConverters)
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
@ -9,6 +9,28 @@ import (
|
|||
"github.com/c9s/bbgo/pkg/types"
|
||||
)
|
||||
|
||||
func TestTradeCollector_NilConvertManager(t *testing.T) {
|
||||
symbol := "BTCUSDT"
|
||||
position := types.NewPosition(symbol, "BTC", "USDT")
|
||||
orderStore := NewOrderStore(symbol)
|
||||
collector := NewTradeCollector(symbol, position, orderStore)
|
||||
|
||||
trade := types.Trade{
|
||||
ID: 1,
|
||||
OrderID: 399,
|
||||
Exchange: types.ExchangeBinance,
|
||||
Price: fixedpoint.NewFromInt(40000),
|
||||
Quantity: fixedpoint.One,
|
||||
QuoteQuantity: fixedpoint.NewFromInt(40000),
|
||||
Symbol: "BTCUSDT",
|
||||
Side: types.SideTypeBuy,
|
||||
IsBuyer: true,
|
||||
}
|
||||
|
||||
trade = collector.ConvertTrade(trade)
|
||||
assert.Equal(t, "BTCUSDT", trade.Symbol)
|
||||
}
|
||||
|
||||
func TestTradeCollector_ShouldNotCountDuplicatedTrade(t *testing.T) {
|
||||
symbol := "BTCUSDT"
|
||||
position := types.NewPosition(symbol, "BTC", "USDT")
|
||||
|
|
|
@ -190,6 +190,7 @@ func (p *Position) NewMarketCloseOrder(percentage fixedpoint.Value) *SubmitOrder
|
|||
}
|
||||
}
|
||||
|
||||
// IsDust checks if the position is dust, the first argument is the price to calculate the dust quantity
|
||||
func (p *Position) IsDust(a ...fixedpoint.Value) bool {
|
||||
price := p.AverageCost
|
||||
if len(a) > 0 {
|
||||
|
@ -448,6 +449,7 @@ func (p *Position) String() string {
|
|||
)
|
||||
}
|
||||
|
||||
// BindStream binds the trade update callback and update the position
|
||||
func (p *Position) BindStream(stream Stream) {
|
||||
stream.OnTradeUpdate(func(trade Trade) {
|
||||
if p.Symbol == trade.Symbol {
|
||||
|
|
Loading…
Reference in New Issue
Block a user