mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-26 08:45:16 +00:00
grid2: remove order group cancel
This commit is contained in:
parent
958e49deb4
commit
1dd6f9ef3e
|
@ -899,20 +899,6 @@ func (s *Strategy) cancelAll(ctx context.Context) error {
|
|||
|
||||
s.logger.Infof("found %d open orders left, using cancel all orders api", len(openOrders))
|
||||
|
||||
if s.OrderGroupID > 0 {
|
||||
s.logger.Infof("found OrderGroupID (%d), using group ID for canceling grid orders...", s.OrderGroupID)
|
||||
|
||||
op := func() error {
|
||||
_, cancelErr := service.CancelOrdersByGroupID(ctx, s.OrderGroupID)
|
||||
return cancelErr
|
||||
}
|
||||
err := backoff.Retry(op, backoff.WithMaxRetries(backoff.NewExponentialBackOff(), 101))
|
||||
if err != nil {
|
||||
s.logger.WithError(err).Errorf("CancelOrdersByGroupID api call error")
|
||||
werr = multierr.Append(werr, err)
|
||||
}
|
||||
|
||||
} else {
|
||||
s.logger.Infof("using cancal all orders api for canceling grid orders...")
|
||||
op := func() error {
|
||||
_, cancelErr := service.CancelAllOrders(ctx)
|
||||
|
@ -924,7 +910,6 @@ func (s *Strategy) cancelAll(ctx context.Context) error {
|
|||
s.logger.WithError(err).Errorf("CancelAllOrders api call error")
|
||||
werr = multierr.Append(werr, err)
|
||||
}
|
||||
}
|
||||
|
||||
time.Sleep(1 * time.Second)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user