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 ( import (
"math" "math"
"strconv" "strconv"
"github.com/c9s/bbgo/types"
) )
type Market struct { type Market struct {
@ -14,15 +12,14 @@ type Market struct {
QuoteCurrency string QuoteCurrency string
BaseCurrency 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 // 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 MinNotional float64
MinAmount float64 MinAmount float64
// The LOT_SIZE filter defines the quantity // The LOT_SIZE filter defines the quantity
MinLot float64 MinLot float64
MinQuantity float64 MinQuantity float64
MaxQuantity float64 MaxQuantity float64
MinPrice float64 MinPrice float64
MaxPrice float64 MaxPrice float64