From 6d00a7ba072b50bd80c9b564c7ad5810bebbacbb Mon Sep 17 00:00:00 2001 From: c9s Date: Wed, 14 Oct 2020 10:39:50 +0800 Subject: [PATCH] fix import --- pkg/types/market.go | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkg/types/market.go b/pkg/types/market.go index a4287caa6..4af98d6ec 100644 --- a/pkg/types/market.go +++ b/pkg/types/market.go @@ -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