mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
pass string format quantity and price
This commit is contained in:
parent
9f77236999
commit
471e0a4c45
|
@ -163,10 +163,12 @@ var placeOrderCmd = &cobra.Command{
|
|||
if err != nil {
|
||||
return fmt.Errorf("can't get side: %w", err)
|
||||
}
|
||||
|
||||
price, err := cmd.Flags().GetString("price")
|
||||
if err != nil {
|
||||
return fmt.Errorf("can't get price: %w", err)
|
||||
}
|
||||
|
||||
quantity, err := cmd.Flags().GetString("quantity")
|
||||
if err != nil {
|
||||
return fmt.Errorf("can't get quantity: %w", err)
|
||||
|
@ -178,7 +180,9 @@ var placeOrderCmd = &cobra.Command{
|
|||
Side: types.SideType(ftx.TrimUpperString(side)),
|
||||
Type: types.OrderTypeLimit,
|
||||
Quantity: util.MustParseFloat(quantity),
|
||||
QuantityString: quantity,
|
||||
Price: util.MustParseFloat(price),
|
||||
PriceString: price,
|
||||
Market: types.Market{Symbol: symbol},
|
||||
TimeInForce: "GTC",
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user