mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 06:53:52 +00:00
fix import
This commit is contained in:
parent
88461396f1
commit
6d00a7ba07
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user