fix import

This commit is contained in:
c9s 2020-10-14 10:39:50 +08:00
parent 88461396f1
commit 6d00a7ba07

View File

@ -3,8 +3,6 @@ package types
import (
"math"
"strconv"
"github.com/c9s/bbgo/types"
)
type Market struct {
@ -14,15 +12,14 @@ type Market struct {
QuoteCurrency string
BaseCurrency string
// The MIN_NOTIONAL filter defines the minimum notional value allowed for an order on a symbol. An order's notional value is the price * quantity
MinNotional float64
MinAmount float64
MinNotional float64
MinAmount float64
// The LOT_SIZE filter defines the quantity
MinLot float64
MinQuantity float64
MaxQuantity float64
MinLot float64
MinQuantity float64
MaxQuantity float64
MinPrice float64
MaxPrice float64