mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-26 16:55:15 +00:00
xalign: fix instanceID
This commit is contained in:
parent
cbb9cc7722
commit
7a6000a316
|
@ -4,6 +4,7 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
@ -40,7 +41,13 @@ func (s *Strategy) ID() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Strategy) InstanceID() 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) {
|
func (s *Strategy) Subscribe(session *bbgo.ExchangeSession) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user