mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 14:55:16 +00:00
xalign: fix instanceID
This commit is contained in:
parent
cbb9cc7722
commit
7a6000a316
|
@ -4,6 +4,7 @@ import (
|
|||
"context"
|
||||
"errors"
|
||||
"fmt"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
log "github.com/sirupsen/logrus"
|
||||
|
@ -40,7 +41,13 @@ func (s *Strategy) ID() string {
|
|||
}
|
||||
|
||||
func (s *Strategy) InstanceID() string {
|
||||
return fmt.Sprintf("%s", ID)
|
||||
var cs []string
|
||||
|
||||
for cur := range s.ExpectedBalances {
|
||||
cs = append(cs, cur)
|
||||
}
|
||||
|
||||
return ID + strings.Join(s.PreferredSessions, "-") + strings.Join(cs, "-")
|
||||
}
|
||||
|
||||
func (s *Strategy) Subscribe(session *bbgo.ExchangeSession) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user