mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-26 00:35:15 +00:00
cmd: fix submitOrder cmd
This commit is contained in:
parent
4b0e721580
commit
5103088675
|
@ -9,7 +9,6 @@ import (
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/google/uuid"
|
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
@ -17,7 +16,6 @@ import (
|
||||||
"github.com/c9s/bbgo/pkg/fixedpoint"
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
||||||
|
|
||||||
"github.com/c9s/bbgo/pkg/bbgo"
|
"github.com/c9s/bbgo/pkg/bbgo"
|
||||||
"github.com/c9s/bbgo/pkg/exchange/ftx"
|
|
||||||
"github.com/c9s/bbgo/pkg/types"
|
"github.com/c9s/bbgo/pkg/types"
|
||||||
"github.com/c9s/bbgo/pkg/util"
|
"github.com/c9s/bbgo/pkg/util"
|
||||||
)
|
)
|
||||||
|
@ -322,9 +320,8 @@ var submitOrderCmd = &cobra.Command{
|
||||||
}
|
}
|
||||||
|
|
||||||
so := types.SubmitOrder{
|
so := types.SubmitOrder{
|
||||||
ClientOrderID: uuid.New().String(),
|
|
||||||
Symbol: symbol,
|
Symbol: symbol,
|
||||||
Side: types.SideType(ftx.TrimUpperString(side)),
|
Side: types.SideType(strings.ToUpper(side)),
|
||||||
Type: types.OrderTypeLimit,
|
Type: types.OrderTypeLimit,
|
||||||
Quantity: util.MustParseFloat(quantity),
|
Quantity: util.MustParseFloat(quantity),
|
||||||
QuantityString: quantity,
|
QuantityString: quantity,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user