diff --git a/.appveyor.yml b/.appveyor.yml
index dbf5ad25115..11be377cfa5 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -30,7 +30,12 @@ test_script:
# test back-end
- go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.16.0
- '%GOPATH%\bin\golangci-lint.exe run --verbose'
- - go test -race ./...
+ - ps: >-
+ if($env:APPVEYOR_SCHEDULED_BUILD -eq 'true') {
+ go test -race ./... -tags=mock_test_off
+ }else {
+ go test -race ./...
+ }
# test front-end
- node --version
diff --git a/Makefile b/Makefile
index 6a34f44eb3f..2409ef92c50 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,7 @@ LINTPKG = github.com/golangci/golangci-lint/cmd/golangci-lint@v1.16.0
LINTBIN = $(GOPATH)/bin/golangci-lint
GCTLISTENPORT=9050
GCTPROFILERLISTENPORT=8085
+CRON = $(TRAVIS_EVENT_TYPE)
get:
GO111MODULE=on go get $(GCTPKG)
@@ -16,7 +17,11 @@ linter:
check: linter test
test:
+ifeq ($(CRON), cron)
+ go test -race -tags=mock_test_off -coverprofile=coverage.txt -covermode=atomic ./...
+else
go test -race -coverprofile=coverage.txt -covermode=atomic ./...
+endif
build:
GO111MODULE=on go build $(LDFLAGS)
diff --git a/currency/coinmarketcap/coinmarketcap.go b/currency/coinmarketcap/coinmarketcap.go
index 669c2b11c0d..bebaa7917fc 100644
--- a/currency/coinmarketcap/coinmarketcap.go
+++ b/currency/coinmarketcap/coinmarketcap.go
@@ -732,6 +732,7 @@ func (c *Coinmarketcap) SendHTTPRequest(method, endpoint string, v url.Values, r
false,
false,
c.Verbose,
+ false,
false)
}
diff --git a/currency/forexprovider/currencyconverterapi/currencyconverterapi.go b/currency/forexprovider/currencyconverterapi/currencyconverterapi.go
index 98a0b987a21..856003e76b9 100644
--- a/currency/forexprovider/currencyconverterapi/currencyconverterapi.go
+++ b/currency/forexprovider/currencyconverterapi/currencyconverterapi.go
@@ -192,6 +192,7 @@ func (c *CurrencyConverter) SendHTTPRequest(endPoint string, values url.Values,
auth,
false,
c.Verbose,
+ false,
false)
if err != nil {
return fmt.Errorf("currency converter API SendHTTPRequest error %s with path %s",
diff --git a/currency/forexprovider/currencylayer/currencylayer.go b/currency/forexprovider/currencylayer/currencylayer.go
index c6049b48212..add3ff4383e 100644
--- a/currency/forexprovider/currencylayer/currencylayer.go
+++ b/currency/forexprovider/currencylayer/currencylayer.go
@@ -241,5 +241,6 @@ func (c *CurrencyLayer) SendHTTPRequest(endPoint string, values url.Values, resu
auth,
false,
c.Verbose,
+ false,
false)
}
diff --git a/currency/forexprovider/exchangeratesapi.io/exchangeratesapi.go b/currency/forexprovider/exchangeratesapi.io/exchangeratesapi.go
index d5b99b8bf83..661db58895f 100644
--- a/currency/forexprovider/exchangeratesapi.io/exchangeratesapi.go
+++ b/currency/forexprovider/exchangeratesapi.io/exchangeratesapi.go
@@ -178,6 +178,7 @@ func (e *ExchangeRates) SendHTTPRequest(endPoint string, values url.Values, resu
false,
false,
e.Verbose,
+ false,
false)
if err != nil {
return fmt.Errorf("exchangeRatesAPI SendHTTPRequest error %s with path %s",
diff --git a/currency/forexprovider/fixer.io/fixer.go b/currency/forexprovider/fixer.io/fixer.go
index 802f62b5b1e..2ab84c8c669 100644
--- a/currency/forexprovider/fixer.io/fixer.go
+++ b/currency/forexprovider/fixer.io/fixer.go
@@ -265,5 +265,6 @@ func (f *Fixer) SendOpenHTTPRequest(endpoint string, v url.Values, result interf
auth,
false,
f.Verbose,
+ false,
false)
}
diff --git a/currency/forexprovider/openexchangerates/openexchangerates.go b/currency/forexprovider/openexchangerates/openexchangerates.go
index 41ae9dee80e..071279b563e 100644
--- a/currency/forexprovider/openexchangerates/openexchangerates.go
+++ b/currency/forexprovider/openexchangerates/openexchangerates.go
@@ -265,5 +265,6 @@ func (o *OXR) SendHTTPRequest(endpoint string, values url.Values, result interfa
false,
false,
o.Verbose,
+ false,
false)
}
diff --git a/exchanges/alphapoint/alphapoint.go b/exchanges/alphapoint/alphapoint.go
index 212e842a141..25bea99fce4 100644
--- a/exchanges/alphapoint/alphapoint.go
+++ b/exchanges/alphapoint/alphapoint.go
@@ -534,7 +534,16 @@ func (a *Alphapoint) SendHTTPRequest(method, path string, data map[string]interf
return errors.New("unable to JSON request")
}
- return a.SendPayload(method, path, headers, bytes.NewBuffer(PayloadJSON), result, false, false, a.Verbose, a.HTTPDebugging)
+ return a.SendPayload(method,
+ path,
+ headers,
+ bytes.NewBuffer(PayloadJSON),
+ result,
+ false,
+ false,
+ a.Verbose,
+ a.HTTPDebugging,
+ a.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated request
@@ -559,5 +568,14 @@ func (a *Alphapoint) SendAuthenticatedHTTPRequest(method, path string, data map[
return errors.New("unable to JSON request")
}
- return a.SendPayload(method, path, headers, bytes.NewBuffer(PayloadJSON), result, true, true, a.Verbose, a.HTTPDebugging)
+ return a.SendPayload(method,
+ path,
+ headers,
+ bytes.NewBuffer(PayloadJSON),
+ result,
+ true,
+ true,
+ a.Verbose,
+ a.HTTPDebugging,
+ a.HTTPRecording)
}
diff --git a/exchanges/anx/anx.go b/exchanges/anx/anx.go
index 25e7992fa40..684d6b9eaab 100644
--- a/exchanges/anx/anx.go
+++ b/exchanges/anx/anx.go
@@ -83,7 +83,7 @@ func (a *ANX) Setup(exch *config.ExchangeConfig) {
} else {
a.Enabled = true
a.AuthenticatedAPISupport = exch.AuthenticatedAPISupport
- a.SetAPIKeys(exch.APIKey, exch.APISecret, "", false)
+ a.SetAPIKeys(exch.APIKey, exch.APISecret, "", true)
a.SetHTTPClientTimeout(exch.HTTPTimeout)
a.SetHTTPClientUserAgent(exch.HTTPUserAgent)
a.RESTPollingDelay = exch.RESTPollingDelay
@@ -248,9 +248,13 @@ func (a *ANX) NewOrder(orderType string, buy bool, tradedCurrency string, traded
// CancelOrderByIDs cancels orders, requires already knowing order IDs
// There is no existing API call to retrieve orderIds
func (a *ANX) CancelOrderByIDs(orderIds []string) (OrderCancelResponse, error) {
+ var response OrderCancelResponse
+ if len(orderIds) == 0 {
+ return response, errors.New("no order ids provided")
+ }
+
req := make(map[string]interface{})
req["orderIds"] = orderIds
- var response OrderCancelResponse
err := a.SendAuthenticatedHTTPRequest(anxOrderCancel, req, &response)
if response.ResultCode != "OK" {
@@ -266,7 +270,7 @@ func (a *ANX) GetOrderList(isActiveOrdersOnly bool) ([]OrderResponse, error) {
req["activeOnly"] = isActiveOrdersOnly
type OrderListResponse struct {
- Timestamp int64 `json:"timestamp"`
+ Timestamp int64 `json:"timestamp,string"`
ResultCode string `json:"resultCode"`
Count int64 `json:"count"`
OrderResponses []OrderResponse `json:"orders"`
@@ -278,7 +282,6 @@ func (a *ANX) GetOrderList(isActiveOrdersOnly bool) ([]OrderResponse, error) {
}
if response.ResultCode != "OK" {
- log.Errorf("Response code is not OK: %s\n", response.ResultCode)
return nil, errors.New(response.ResultCode)
}
@@ -304,7 +307,6 @@ func (a *ANX) OrderInfo(orderID string) (OrderResponse, error) {
}
if response.ResultCode != "OK" {
- log.Errorf("Response code is not OK: %s\n", response.ResultCode)
return OrderResponse{}, errors.New(response.ResultCode)
}
return response.Order, nil
@@ -324,7 +326,7 @@ func (a *ANX) Send(currency, address, otp, amount string) (string, error) {
type SendResponse struct {
TransactionID string `json:"transactionId"`
ResultCode string `json:"resultCode"`
- Timestamp int64 `json:"timestamp"`
+ Timestamp int64 `json:"timestamp,string"`
}
var response SendResponse
@@ -335,7 +337,6 @@ func (a *ANX) Send(currency, address, otp, amount string) (string, error) {
}
if response.ResultCode != "OK" {
- log.Errorf("Response code is not OK: %s\n", response.ResultCode)
return "", errors.New(response.ResultCode)
}
return response.TransactionID, nil
@@ -361,7 +362,6 @@ func (a *ANX) CreateNewSubAccount(currency, name string) (string, error) {
}
if response.ResultCode != "OK" {
- log.Errorf("Response code is not OK: %s\n", response.ResultCode)
return "", errors.New(response.ResultCode)
}
return response.SubAccount, nil
@@ -380,7 +380,7 @@ func (a *ANX) GetDepositAddressByCurrency(currency, name string, newAddr bool) (
Address string `json:"address"`
SubAccount string `json:"subAccount"`
ResultCode string `json:"resultCode"`
- Timestamp int64 `json:"timestamp"`
+ Timestamp int64 `json:"timestamp,string"`
}
var response AddressResponse
@@ -395,7 +395,6 @@ func (a *ANX) GetDepositAddressByCurrency(currency, name string, newAddr bool) (
}
if response.ResultCode != "OK" {
- log.Errorf("Response code is not OK: %s\n", response.ResultCode)
return "", errors.New(response.ResultCode)
}
@@ -404,7 +403,16 @@ func (a *ANX) GetDepositAddressByCurrency(currency, name string, newAddr bool) (
// SendHTTPRequest sends an unauthenticated HTTP request
func (a *ANX) SendHTTPRequest(path string, result interface{}) error {
- return a.SendPayload(http.MethodGet, path, nil, nil, result, false, false, a.Verbose, a.HTTPDebugging)
+ return a.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ a.Verbose,
+ a.HTTPDebugging,
+ a.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends a authenticated HTTP request
@@ -437,7 +445,16 @@ func (a *ANX) SendAuthenticatedHTTPRequest(path string, params map[string]interf
headers["Rest-Sign"] = common.Base64Encode(hmac)
headers["Content-Type"] = "application/json"
- return a.SendPayload(http.MethodPost, a.APIUrl+path, headers, bytes.NewBuffer(PayloadJSON), result, true, true, a.Verbose, a.HTTPDebugging)
+ return a.SendPayload(http.MethodPost,
+ a.APIUrl+path,
+ headers,
+ bytes.NewBuffer(PayloadJSON),
+ result,
+ true,
+ true,
+ a.Verbose,
+ a.HTTPDebugging,
+ a.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/anx/anx_live_test.go b/exchanges/anx/anx_live_test.go
new file mode 100644
index 00000000000..d0abe9ce533
--- /dev/null
+++ b/exchanges/anx/anx_live_test.go
@@ -0,0 +1,32 @@
+//+build mock_test_off
+
+// This will build if build tag mock_test_off is parsed and will do live testing
+// using all tests in (exchange)_test.go
+package anx
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+var mockTests = false
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ anxConfig, err := cfg.GetExchangeConfig("ANX")
+ if err != nil {
+ log.Fatalf("Test Failed - ANX Setup() init error", err)
+ }
+ anxConfig.AuthenticatedAPISupport = true
+ anxConfig.APIKey = apiKey
+ anxConfig.APISecret = apiSecret
+ a.SetDefaults()
+ a.Setup(&anxConfig)
+ log.Printf(sharedtestvalues.LiveTesting, a.GetName(), a.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/anx/anx_mock_test.go b/exchanges/anx/anx_mock_test.go
new file mode 100644
index 00000000000..4f92879bd5f
--- /dev/null
+++ b/exchanges/anx/anx_mock_test.go
@@ -0,0 +1,44 @@
+//+build !mock_test_off
+
+// This will build if build tag mock_test_off is not parsed and will try to mock
+// all tests in _test.go
+package anx
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/mock"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+const mockFile = "../../testdata/http_mock/anx/anx.json"
+
+var mockTests = true
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ anxConfig, err := cfg.GetExchangeConfig("ANX")
+ if err != nil {
+ log.Fatal("Test Failed - Mock server error", err)
+ }
+ anxConfig.AuthenticatedAPISupport = true
+ anxConfig.APIKey = apiKey
+ anxConfig.APISecret = apiSecret
+ a.SetDefaults()
+ a.Setup(&anxConfig)
+
+ serverDetails, newClient, err := mock.NewVCRServer(mockFile)
+ if err != nil {
+ log.Fatalf("Test Failed - Mock server error %s", err)
+ }
+
+ a.HTTPClient = newClient
+ a.APIUrl = serverDetails + "/"
+
+ log.Printf(sharedtestvalues.MockTesting, a.GetName(), a.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/anx/anx_test.go b/exchanges/anx/anx_test.go
index 31aae652669..b5f760a3358 100644
--- a/exchanges/anx/anx_test.go
+++ b/exchanges/anx/anx_test.go
@@ -4,7 +4,6 @@ import (
"testing"
"github.com/thrasher-corp/gocryptotrader/common"
- "github.com/thrasher-corp/gocryptotrader/config"
"github.com/thrasher-corp/gocryptotrader/currency"
exchange "github.com/thrasher-corp/gocryptotrader/exchanges"
)
@@ -18,70 +17,8 @@ const (
var a ANX
-func TestSetDefaults(t *testing.T) {
- a.SetDefaults()
-
- if a.Name != "ANX" {
- t.Error("Test Failed - ANX SetDefaults() incorrect values set")
- }
- if a.Enabled {
- t.Error("Test Failed - ANX SetDefaults() incorrect values set")
- }
- if a.TakerFee != 0.02 {
- t.Error("Test Failed - ANX SetDefaults() incorrect values set")
- }
- if a.MakerFee != 0.01 {
- t.Error("Test Failed - ANX SetDefaults() incorrect values set")
- }
- if a.Verbose {
- t.Error("Test Failed - ANX SetDefaults() incorrect values set")
- }
- if a.Websocket.IsEnabled() {
- t.Error("Test Failed - ANX SetDefaults() incorrect values set")
- }
- if a.RESTPollingDelay != 10 {
- t.Error("Test Failed - ANX SetDefaults() incorrect values set")
- }
-}
-
-func TestSetup(t *testing.T) {
- anxSetupConfig := config.GetConfig()
- anxSetupConfig.LoadConfig("../../testdata/configtest.json")
- anxConfig, err := anxSetupConfig.GetExchangeConfig("ANX")
- anxConfig.AuthenticatedAPISupport = true
-
- if err != nil {
- t.Error("Test Failed - ANX Setup() init error")
- }
- a.Setup(&anxConfig)
- a.APIKey = apiKey
- a.APISecret = apiSecret
- a.AuthenticatedAPISupport = true
-
- if !a.Enabled {
- t.Error("Test Failed - ANX Setup() incorrect values set")
- }
- if a.RESTPollingDelay != 10 {
- t.Error("Test Failed - ANX Setup() incorrect values set")
- }
- if a.Verbose {
- t.Error("Test Failed - ANX Setup() incorrect values set")
- }
- if a.Websocket.IsEnabled() {
- t.Error("Test Failed - ANX Setup() incorrect values set")
- }
- if len(a.BaseCurrencies) == 0 {
- t.Error("Test Failed - ANX Setup() incorrect values set")
- }
- if len(a.AvailablePairs) == 0 {
- t.Error("Test Failed - ANX Setup() incorrect values set")
- }
- if len(a.EnabledPairs) == 0 {
- t.Error("Test Failed - ANX Setup() incorrect values set")
- }
-}
-
func TestGetCurrencies(t *testing.T) {
+ t.Parallel()
_, err := a.GetCurrencies()
if err != nil {
t.Fatalf("Test failed. TestGetCurrencies failed. Err: %s", err)
@@ -89,6 +26,7 @@ func TestGetCurrencies(t *testing.T) {
}
func TestGetTradablePairs(t *testing.T) {
+ t.Parallel()
_, err := a.GetTradablePairs()
if err != nil {
t.Fatalf("Test failed. TestGetTradablePairs failed. Err: %s", err)
@@ -96,6 +34,7 @@ func TestGetTradablePairs(t *testing.T) {
}
func TestGetTicker(t *testing.T) {
+ t.Parallel()
ticker, err := a.GetTicker("BTCUSD")
if err != nil {
t.Errorf("Test Failed - ANX GetTicker() error: %s", err)
@@ -106,16 +45,18 @@ func TestGetTicker(t *testing.T) {
}
func TestGetDepth(t *testing.T) {
- ticker, err := a.GetDepth("BTCUSD")
+ t.Parallel()
+ depth, err := a.GetDepth("BTCUSD")
if err != nil {
t.Errorf("Test Failed - ANX GetDepth() error: %s", err)
}
- if ticker.Result != "success" {
+ if depth.Result != "success" {
t.Error("Test Failed - ANX GetDepth() unsuccessful")
}
}
func TestGetAPIKey(t *testing.T) {
+ t.Parallel()
apiKey, apiSecret, err := a.GetAPIKey("userName", "passWord", "", "1337")
if err == nil {
t.Error("Test Failed - ANX GetAPIKey() Incorrect")
@@ -140,6 +81,7 @@ func setFeeBuilder() *exchange.FeeBuilder {
// TestGetFeeByTypeOfflineTradeFee logic test
func TestGetFeeByTypeOfflineTradeFee(t *testing.T) {
+ t.Parallel()
var feeBuilder = setFeeBuilder()
a.GetFeeByType(feeBuilder)
if apiKey == "" || apiSecret == "" {
@@ -154,9 +96,7 @@ func TestGetFeeByTypeOfflineTradeFee(t *testing.T) {
}
func TestGetFee(t *testing.T) {
- a.SetDefaults()
- TestSetup(t)
-
+ t.Parallel()
var feeBuilder = setFeeBuilder()
// CryptocurrencyTradeFee Basic
@@ -226,7 +166,7 @@ func TestGetFee(t *testing.T) {
}
func TestFormatWithdrawPermissions(t *testing.T) {
- a.SetDefaults()
+ t.Parallel()
expectedResult := exchange.AutoWithdrawCryptoWithSetupText + " & " + exchange.WithdrawCryptoWith2FAText + " & " +
exchange.WithdrawCryptoWithEmailText + " & " + exchange.WithdrawFiatViaWebsiteOnlyText
@@ -238,34 +178,36 @@ func TestFormatWithdrawPermissions(t *testing.T) {
}
func TestGetActiveOrders(t *testing.T) {
- a.SetDefaults()
- TestSetup(t)
-
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
}
_, err := a.GetActiveOrders(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not get open orders: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Could not get open orders: %s", err)
}
}
func TestGetOrderHistory(t *testing.T) {
- a.SetDefaults()
- TestSetup(t)
-
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
}
_, err := a.GetOrderHistory(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not get order history: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - GetBalance() error", err)
}
}
@@ -281,10 +223,8 @@ func areTestAPIKeysSet() bool {
}
func TestSubmitOrder(t *testing.T) {
- a.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
var p = currency.Pair{
@@ -292,8 +232,9 @@ func TestSubmitOrder(t *testing.T) {
Base: currency.BTC,
Quote: currency.USD,
}
- response, err := a.SubmitOrder(p, exchange.BuyOrderSide, exchange.MarketOrderType, 1, 1, "clientId")
- if areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced) {
+ // TODO: QA Pass to submit order
+ response, err := a.SubmitOrder(p, exchange.BuyOrderSide, exchange.MarketOrderType, 1, 1, "")
+ if areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced) && !mockTests {
t.Errorf("Order failed to be placed: %v", err)
} else if !areTestAPIKeysSet() && err == nil {
t.Error("Expecting an error when no keys are set")
@@ -301,10 +242,8 @@ func TestSubmitOrder(t *testing.T) {
}
func TestCancelExchangeOrder(t *testing.T) {
- a.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -318,18 +257,19 @@ func TestCancelExchangeOrder(t *testing.T) {
}
err := a.CancelOrder(orderCancellation)
- if areTestAPIKeysSet() && err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not cancel order: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Could not cancel order: %s", err)
}
}
func TestCancelAllExchangeOrders(t *testing.T) {
- a.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -343,11 +283,13 @@ func TestCancelAllExchangeOrders(t *testing.T) {
}
resp, err := a.CancelAllOrders(orderCancellation)
-
- if areTestAPIKeysSet() && err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not cancel order: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err == nil:
+ t.Errorf("QA pass needs to be completed and mock needs to be updated error cannot be nil")
}
if len(resp.OrderStatus) > 0 {
@@ -356,20 +298,20 @@ func TestCancelAllExchangeOrders(t *testing.T) {
}
func TestGetAccountInfo(t *testing.T) {
- if apiKey != "" || apiSecret != "" {
- _, err := a.GetAccountInfo()
- if err != nil {
- t.Error("test failed - GetAccountInfo() error:", err)
- }
- } else {
- _, err := a.GetAccountInfo()
- if err == nil {
- t.Error("test failed - GetAccountInfo() error")
- }
+ t.Parallel()
+ _, err := a.GetAccountInfo()
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Error("test failed - GetAccountInfo() error:", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("test failed - GetAccountInfo() error")
+ case mockTests && err != nil:
+ t.Error("test failed - GetAccountInfo() error:", err)
}
}
func TestModifyOrder(t *testing.T) {
+ t.Parallel()
_, err := a.ModifyOrder(&exchange.ModifyOrder{})
if err == nil {
t.Error("Test failed - ModifyOrder() error")
@@ -377,10 +319,8 @@ func TestModifyOrder(t *testing.T) {
}
func TestWithdraw(t *testing.T) {
- a.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -393,61 +333,47 @@ func TestWithdraw(t *testing.T) {
}
_, err := a.WithdrawCryptocurrencyFunds(&withdrawCryptoRequest)
- if areTestAPIKeysSet() && err != nil {
+ if areTestAPIKeysSet() && err != nil && !mockTests {
t.Errorf("Withdraw failed to be placed: %v", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ } else if !areTestAPIKeysSet() && err == nil && mockTests {
t.Error("Expecting an error when no keys are set")
}
}
func TestWithdrawFiat(t *testing.T) {
- a.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
- t.Skip("API keys set, canManipulateRealOrders false, skipping test")
- }
-
+ t.Parallel()
var withdrawFiatRequest = exchange.WithdrawRequest{}
-
_, err := a.WithdrawFiatFunds(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
- t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
+ t.Errorf("Expected '%v', received: '%v'",
+ common.ErrFunctionNotSupported,
+ err)
}
}
func TestWithdrawInternationalBank(t *testing.T) {
- a.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
- t.Skip("API keys set, canManipulateRealOrders false, skipping test")
- }
-
+ t.Parallel()
var withdrawFiatRequest = exchange.WithdrawRequest{}
-
_, err := a.WithdrawFiatFundsToInternationalBank(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
- t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
+ t.Errorf("Expected '%v', received: '%v'",
+ common.ErrFunctionNotSupported,
+ err)
}
}
func TestGetDepositAddress(t *testing.T) {
- if areTestAPIKeysSet() {
- _, err := a.GetDepositAddress(currency.BTC, "")
- if err != nil {
- t.Error("Test Failed - GetDepositAddress() error", err)
- }
- } else {
- _, err := a.GetDepositAddress(currency.BTC, "")
- if err == nil {
- t.Error("Test Failed - GetDepositAddress() error cannot be nil")
- }
+ t.Parallel()
+ _, err := a.GetDepositAddress(currency.BTC, "")
+ if areTestAPIKeysSet() && err != nil && !mockTests {
+ t.Error("Test Failed - GetDepositAddress() error", err)
+ } else if !areTestAPIKeysSet() && err == nil {
+ t.Error("Test Failed - GetDepositAddress() error cannot be nil")
}
}
func TestUpdateOrderbook(t *testing.T) {
- a.SetDefaults()
+ t.Parallel()
q := currency.Pair{
Delimiter: "_",
Base: currency.BTC,
diff --git a/exchanges/binance/binance.go b/exchanges/binance/binance.go
index da164add96e..0a3e214d6e8 100644
--- a/exchanges/binance/binance.go
+++ b/exchanges/binance/binance.go
@@ -279,20 +279,10 @@ func (b *Binance) GetRecentTrades(rtr RecentTradeRequestParams) ([]RecentTrade,
// limit: Optional. Default 500; max 1000.
// fromID:
func (b *Binance) GetHistoricalTrades(symbol string, limit int, fromID int64) ([]HistoricalTrade, error) {
- var resp []HistoricalTrade
-
- if err := b.CheckLimit(limit); err != nil {
- return resp, err
- }
-
- params := url.Values{}
- params.Set("symbol", common.StringToUpper(symbol))
- params.Set("limit", strconv.Itoa(limit))
- params.Set("fromid", strconv.FormatInt(fromID, 10))
-
- path := fmt.Sprintf("%s%s?%s", b.APIUrl, historicalTrades, params.Encode())
-
- return resp, b.SendHTTPRequest(path, &resp)
+ // Dropping support due to response for market data is always
+ // {"code":-2014,"msg":"API-key format invalid."}
+ // TODO: replace with newer API vs REST endpoint
+ return nil, common.ErrFunctionNotSupported
}
// GetAggregatedTrades returns aggregated trade activity
@@ -617,7 +607,16 @@ func (b *Binance) GetAccount() (*Account, error) {
// SendHTTPRequest sends an unauthenticated request
func (b *Binance) SendHTTPRequest(path string, result interface{}) error {
- return b.SendPayload(http.MethodGet, path, nil, nil, result, false, false, b.Verbose, b.HTTPDebugging)
+ return b.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// SendAuthHTTPRequest sends an authenticated HTTP request
@@ -653,7 +652,16 @@ func (b *Binance) SendAuthHTTPRequest(method, path string, params url.Values, re
Message string `json:"msg"`
}{}
- err := b.SendPayload(method, path, headers, bytes.NewBuffer(nil), &interim, true, false, b.Verbose, b.HTTPDebugging)
+ err := b.SendPayload(method,
+ path,
+ headers,
+ bytes.NewBuffer(nil),
+ &interim,
+ true,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
if err != nil {
return err
}
@@ -773,7 +781,7 @@ func getCryptocurrencyWithdrawalFee(c currency.Code) float64 {
}
// WithdrawCrypto sends cryptocurrency to the address of your choosing
-func (b *Binance) WithdrawCrypto(asset, address, addressTag, name, amount string) (int64, error) {
+func (b *Binance) WithdrawCrypto(asset, address, addressTag, name, amount string) (string, error) {
var resp WithdrawResponse
path := fmt.Sprintf("%s%s", b.APIUrl, withdraw)
@@ -789,7 +797,7 @@ func (b *Binance) WithdrawCrypto(asset, address, addressTag, name, amount string
}
if err := b.SendAuthHTTPRequest(http.MethodPost, path, params, &resp); err != nil {
- return -1, err
+ return "", err
}
if !resp.Success {
diff --git a/exchanges/binance/binance_live_test.go b/exchanges/binance/binance_live_test.go
new file mode 100644
index 00000000000..afb46716ef0
--- /dev/null
+++ b/exchanges/binance/binance_live_test.go
@@ -0,0 +1,32 @@
+//+build mock_test_off
+
+// This will build if build tag mock_test_off is parsed and will do live testing
+// using all tests in (exchange)_test.go
+package binance
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+var mockTests = false
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ binanceConfig, err := cfg.GetExchangeConfig("Binance")
+ if err != nil {
+ log.Fatal("Test Failed - Binance Setup() init error", err)
+ }
+ binanceConfig.AuthenticatedAPISupport = true
+ binanceConfig.APIKey = apiKey
+ binanceConfig.APISecret = apiSecret
+ b.SetDefaults()
+ b.Setup(&binanceConfig)
+ log.Printf(sharedtestvalues.LiveTesting, b.GetName(), b.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/binance/binance_mock_test.go b/exchanges/binance/binance_mock_test.go
new file mode 100644
index 00000000000..9c9869558f3
--- /dev/null
+++ b/exchanges/binance/binance_mock_test.go
@@ -0,0 +1,44 @@
+//+build !mock_test_off
+
+// This will build if build tag mock_test_off is not parsed and will try to mock
+// all tests in _test.go
+package binance
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/mock"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+const mockfile = "../../testdata/http_mock/binance/binance.json"
+
+var mockTests = true
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ binanceConfig, err := cfg.GetExchangeConfig("Binance")
+ if err != nil {
+ log.Fatal("Test Failed - Binance Setup() init error", err)
+ }
+ binanceConfig.AuthenticatedAPISupport = true
+ binanceConfig.APIKey = apiKey
+ binanceConfig.APISecret = apiSecret
+ b.SetDefaults()
+ b.Setup(&binanceConfig)
+
+ serverDetails, newClient, err := mock.NewVCRServer(mockfile)
+ if err != nil {
+ log.Fatalf("Test Failed - Mock server error %s", err)
+ }
+
+ b.HTTPClient = newClient
+ b.APIUrl = serverDetails
+
+ log.Printf(sharedtestvalues.MockTesting, b.GetName(), b.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/binance/binance_test.go b/exchanges/binance/binance_test.go
index 9693d6080e6..674fc67a0df 100644
--- a/exchanges/binance/binance_test.go
+++ b/exchanges/binance/binance_test.go
@@ -4,7 +4,6 @@ import (
"testing"
"github.com/thrasher-corp/gocryptotrader/common"
- "github.com/thrasher-corp/gocryptotrader/config"
"github.com/thrasher-corp/gocryptotrader/currency"
exchange "github.com/thrasher-corp/gocryptotrader/exchanges"
)
@@ -18,26 +17,26 @@ const (
var b Binance
-func TestSetDefaults(t *testing.T) {
- b.SetDefaults()
+func areTestAPIKeysSet() bool {
+ if b.APIKey != "" && b.APIKey != "Key" &&
+ b.APISecret != "" && b.APISecret != "Secret" {
+ return true
+ }
+ return false
}
-func TestSetup(t *testing.T) {
- cfg := config.GetConfig()
- cfg.LoadConfig("../../testdata/configtest.json")
- binanceConfig, err := cfg.GetExchangeConfig("Binance")
- if err != nil {
- t.Error("Test Failed - Binance Setup() init error")
+func setFeeBuilder() *exchange.FeeBuilder {
+ return &exchange.FeeBuilder{
+ Amount: 1,
+ FeeType: exchange.CryptocurrencyTradeFee,
+ Pair: currency.NewPair(currency.BTC, currency.LTC),
+ PurchasePrice: 1,
}
-
- binanceConfig.AuthenticatedAPISupport = true
- binanceConfig.APIKey = apiKey
- binanceConfig.APISecret = apiSecret
- b.Setup(&binanceConfig)
}
func TestGetExchangeValidCurrencyPairs(t *testing.T) {
t.Parallel()
+
_, err := b.GetExchangeValidCurrencyPairs()
if err != nil {
t.Error("Test Failed - Binance GetExchangeValidCurrencyPairs() error", err)
@@ -46,6 +45,7 @@ func TestGetExchangeValidCurrencyPairs(t *testing.T) {
func TestGetOrderBook(t *testing.T) {
t.Parallel()
+
_, err := b.GetOrderBook(OrderBookDataRequestParams{
Symbol: "BTCUSDT",
Limit: 10,
@@ -71,14 +71,19 @@ func TestGetRecentTrades(t *testing.T) {
func TestGetHistoricalTrades(t *testing.T) {
t.Parallel()
- _, err := b.GetHistoricalTrades("BTCUSDT", 5, 1337)
- if err == nil {
+
+ _, err := b.GetHistoricalTrades("BTCUSDT", 5, 0)
+ if !mockTests && err == nil {
+ t.Error("Test Failed - Binance GetHistoricalTrades() expecting error")
+ }
+ if mockTests && err == nil {
t.Error("Test Failed - Binance GetHistoricalTrades() error", err)
}
}
func TestGetAggregatedTrades(t *testing.T) {
t.Parallel()
+
_, err := b.GetAggregatedTrades("BTCUSDT", 5)
if err != nil {
t.Error("Test Failed - Binance GetAggregatedTrades() error", err)
@@ -87,6 +92,7 @@ func TestGetAggregatedTrades(t *testing.T) {
func TestGetSpotKline(t *testing.T) {
t.Parallel()
+
_, err := b.GetSpotKline(KlinesRequestParams{
Symbol: "BTCUSDT",
Interval: TimeIntervalFiveMinutes,
@@ -99,6 +105,7 @@ func TestGetSpotKline(t *testing.T) {
func TestGetAveragePrice(t *testing.T) {
t.Parallel()
+
_, err := b.GetAveragePrice("BTCUSDT")
if err != nil {
t.Error("Test Failed - Binance GetAveragePrice() error", err)
@@ -107,6 +114,7 @@ func TestGetAveragePrice(t *testing.T) {
func TestGetPriceChangeStats(t *testing.T) {
t.Parallel()
+
_, err := b.GetPriceChangeStats("BTCUSDT")
if err != nil {
t.Error("Test Failed - Binance GetPriceChangeStats() error", err)
@@ -115,6 +123,7 @@ func TestGetPriceChangeStats(t *testing.T) {
func TestGetTickers(t *testing.T) {
t.Parallel()
+
_, err := b.GetTickers()
if err != nil {
t.Error("Test Failed - Binance TestGetTickers error", err)
@@ -123,6 +132,7 @@ func TestGetTickers(t *testing.T) {
func TestGetLatestSpotPrice(t *testing.T) {
t.Parallel()
+
_, err := b.GetLatestSpotPrice("BTCUSDT")
if err != nil {
t.Error("Test Failed - Binance GetLatestSpotPrice() error", err)
@@ -131,120 +141,62 @@ func TestGetLatestSpotPrice(t *testing.T) {
func TestGetBestPrice(t *testing.T) {
t.Parallel()
+
_, err := b.GetBestPrice("BTCUSDT")
if err != nil {
t.Error("Test Failed - Binance GetBestPrice() error", err)
}
}
-func TestNewOrder(t *testing.T) {
- t.Parallel()
-
- if apiKey == "" || apiSecret == "" {
- t.Skip()
- }
- _, err := b.NewOrder(&NewOrderRequest{
- Symbol: "BTCUSDT",
- Side: BinanceRequestParamsSideSell,
- TradeType: BinanceRequestParamsOrderLimit,
- TimeInForce: BinanceRequestParamsTimeGTC,
- Quantity: 0.01,
- Price: 1536.1,
- })
-
- if err == nil {
- t.Error("Test Failed - Binance NewOrder() error", err)
- }
-}
-
-func TestCancelExistingOrder(t *testing.T) {
- t.Parallel()
-
- if apiKey == "" || apiSecret == "" {
- t.Skip()
- }
-
- _, err := b.CancelExistingOrder("BTCUSDT", 82584683, "")
- if err != nil {
- t.Error("Test Failed - Binance CancelExistingOrder() error", err)
- }
-}
-
func TestQueryOrder(t *testing.T) {
t.Parallel()
- if apiKey == "" || apiSecret == "" {
- t.Skip()
- }
-
_, err := b.QueryOrder("BTCUSDT", "", 1337)
- if err == nil {
- t.Error("Test Failed - Binance QueryOrder() error", err)
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - QueryOrder() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - QueryOrder() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock QueryOrder() error", err)
}
}
func TestOpenOrders(t *testing.T) {
t.Parallel()
- if apiKey == "" || apiSecret == "" {
- t.Skip()
- }
-
_, err := b.OpenOrders("BTCUSDT")
- if err != nil {
- t.Error("Test Failed - Binance OpenOrders() error", err)
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - OpenOrders() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - OpenOrders() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock OpenOrders() error", err)
}
}
func TestAllOrders(t *testing.T) {
t.Parallel()
- if apiKey == "" || apiSecret == "" {
- t.Skip()
- }
-
_, err := b.AllOrders("BTCUSDT", "", "")
- if err != nil {
- t.Error("Test Failed - Binance AllOrders() error", err)
- }
-}
-
-func TestGetAccount(t *testing.T) {
- if apiKey == "" || apiSecret == "" {
- t.Skip()
- }
- t.Parallel()
- b.SetDefaults()
- TestSetup(t)
- account, err := b.GetAccount()
- if err != nil {
- t.Fatal("Test Failed - Binance GetAccount() error", err)
- }
- if account.MakerCommission <= 0 {
- t.Fatalf("Test Failed. Expected > 0, Received %d", account.MakerCommission)
- }
- if account.TakerCommission <= 0 {
- t.Fatalf("Test Failed. Expected > 0, Received %d", account.TakerCommission)
- }
-
- t.Logf("Current makerFee: %d", account.MakerCommission)
- t.Logf("Current takerFee: %d", account.TakerCommission)
-}
-
-func setFeeBuilder() *exchange.FeeBuilder {
- return &exchange.FeeBuilder{
- Amount: 1,
- FeeType: exchange.CryptocurrencyTradeFee,
- Pair: currency.NewPair(currency.BTC, currency.LTC),
- PurchasePrice: 1,
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - AllOrders() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - AllOrders() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock AllOrders() error", err)
}
}
// TestGetFeeByTypeOfflineTradeFee logic test
func TestGetFeeByTypeOfflineTradeFee(t *testing.T) {
+ t.Parallel()
+
var feeBuilder = setFeeBuilder()
b.GetFeeByType(feeBuilder)
- if apiKey == "" || apiSecret == "" {
+ if !areTestAPIKeysSet() {
if feeBuilder.FeeType != exchange.OfflineTradeFee {
t.Errorf("Expected %v, received %v", exchange.OfflineTradeFee, feeBuilder.FeeType)
}
@@ -256,12 +208,11 @@ func TestGetFeeByTypeOfflineTradeFee(t *testing.T) {
}
func TestGetFee(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
var feeBuilder = setFeeBuilder()
- if apiKey != "" || apiSecret != "" {
+ if areTestAPIKeysSet() || mockTests {
// CryptocurrencyTradeFee Basic
if resp, err := b.GetFee(feeBuilder); resp != float64(0.1) || err != nil {
t.Error(err)
@@ -331,19 +282,18 @@ func TestGetFee(t *testing.T) {
}
func TestFormatWithdrawPermissions(t *testing.T) {
- b.SetDefaults()
+ t.Parallel()
+
expectedResult := exchange.AutoWithdrawCryptoText + " & " + exchange.NoFiatWithdrawalsText
withdrawPermissions := b.FormatWithdrawPermissions()
-
if withdrawPermissions != expectedResult {
t.Errorf("Expected: %s, Received: %s", expectedResult, withdrawPermissions)
}
}
func TestGetActiveOrders(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
@@ -358,16 +308,18 @@ func TestGetActiveOrders(t *testing.T) {
}
_, err = b.GetActiveOrders(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
- t.Errorf("Could not get open orders: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
- t.Error("Expecting an error when no keys are set")
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - GetActiveOrders() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - GetActiveOrders() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock GetActiveOrders() error", err)
}
}
func TestGetOrderHistory(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
@@ -383,144 +335,144 @@ func TestGetOrderHistory(t *testing.T) {
currency.BTC)}
_, err = b.GetOrderHistory(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
- t.Errorf("Could not get order history: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
- t.Error("Expecting an error when no keys are set")
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - GetOrderHistory() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - GetOrderHistory() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock GetOrderHistory() error", err)
}
}
// Any tests below this line have the ability to impact your orders on the exchange. Enable canManipulateRealOrders to run them
// -----------------------------------------------------------------------------------------------------------------------------
-func areTestAPIKeysSet() bool {
- if b.APIKey != "" && b.APIKey != "Key" &&
- b.APISecret != "" && b.APISecret != "Secret" {
- return true
- }
- return false
-}
-
func TestSubmitOrder(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- var p = currency.Pair{
- Delimiter: "",
- Base: currency.LTC,
- Quote: currency.BTC,
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
+ t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
- response, err := b.SubmitOrder(p, exchange.BuyOrderSide, exchange.MarketOrderType, 1, 1, "clientId")
- if areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced) {
- t.Errorf("Order failed to be placed: %v", err)
- } else if !areTestAPIKeysSet() && err == nil {
- t.Error("Expecting an error when no keys are set")
+
+ _, err := b.SubmitOrder(currency.NewPair(currency.LTC, currency.BTC),
+ exchange.BuyOrderSide,
+ exchange.MarketOrderType,
+ 1,
+ 1,
+ "clientId")
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - SubmitOrder() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - SubmitOrder() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock SubmitOrder() error", err)
}
}
func TestCancelExchangeOrder(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- currencyPair := currency.NewPair(currency.LTC, currency.BTC)
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
+ t.Skip("API keys set, canManipulateRealOrders false, skipping test")
+ }
var orderCancellation = &exchange.OrderCancellation{
OrderID: "1",
WalletAddress: "1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB",
AccountID: "1",
- CurrencyPair: currencyPair,
+ CurrencyPair: currency.NewPair(currency.LTC, currency.BTC),
}
err := b.CancelOrder(orderCancellation)
- if !areTestAPIKeysSet() && err == nil {
- t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
- t.Errorf("Could not cancel orders: %v", err)
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - CancelExchangeOrder() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - CancelExchangeOrder() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock CancelExchangeOrder() error", err)
}
}
func TestCancelAllExchangeOrders(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- currencyPair := currency.NewPair(currency.LTC, currency.BTC)
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
+ t.Skip("API keys set, canManipulateRealOrders false, skipping test")
+ }
var orderCancellation = &exchange.OrderCancellation{
OrderID: "1",
WalletAddress: "1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB",
AccountID: "1",
- CurrencyPair: currencyPair,
- }
-
- resp, err := b.CancelAllOrders(orderCancellation)
-
- if !areTestAPIKeysSet() && err == nil {
- t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
- t.Errorf("Could not cancel order: %v", err)
+ CurrencyPair: currency.NewPair(currency.LTC, currency.BTC),
}
- if len(resp.OrderStatus) > 0 {
- t.Errorf("%v orders failed to cancel", len(resp.OrderStatus))
+ _, err := b.CancelAllOrders(orderCancellation)
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - CancelAllExchangeOrders() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - CancelAllExchangeOrders() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock CancelAllExchangeOrders() error", err)
}
}
func TestGetAccountInfo(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
- if apiKey == "" || apiSecret == "" {
- t.Skip()
- }
+ t.Parallel()
_, err := b.GetAccountInfo()
- if err != nil {
- t.Error("test failed - GetAccountInfo() error", err)
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - GetAccountInfo() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - GetAccountInfo() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock GetAccountInfo() error", err)
}
}
func TestModifyOrder(t *testing.T) {
+ t.Parallel()
+
_, err := b.ModifyOrder(&exchange.ModifyOrder{})
if err == nil {
- t.Error("Test failed - ModifyOrder() error")
+ t.Error("Test failed - ModifyOrder() error cannot be nil")
}
}
func TestWithdraw(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
var withdrawCryptoRequest = exchange.WithdrawRequest{
- Amount: 100,
+ Amount: 0,
Currency: currency.BTC,
Address: "1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB",
Description: "WITHDRAW IT ALL",
}
_, err := b.WithdrawCryptocurrencyFunds(&withdrawCryptoRequest)
- if !areTestAPIKeysSet() && err == nil {
- t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
- t.Errorf("Withdraw failed to be placed: %v", err)
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - Withdraw() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - Withdraw() expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock Withdraw() error", err)
}
}
func TestWithdrawFiat(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
- t.Skip("API keys set, canManipulateRealOrders false, skipping test")
- }
-
- var withdrawFiatRequest = exchange.WithdrawRequest{}
+ t.Parallel()
+ var withdrawFiatRequest exchange.WithdrawRequest
_, err := b.WithdrawFiatFunds(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
@@ -528,15 +480,9 @@ func TestWithdrawFiat(t *testing.T) {
}
func TestWithdrawInternationalBank(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
- t.Skip("API keys set, canManipulateRealOrders false, skipping test")
- }
-
- var withdrawFiatRequest = exchange.WithdrawRequest{}
+ t.Parallel()
+ var withdrawFiatRequest exchange.WithdrawRequest
_, err := b.WithdrawFiatFundsToInternationalBank(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
@@ -544,15 +490,15 @@ func TestWithdrawInternationalBank(t *testing.T) {
}
func TestGetDepositAddress(t *testing.T) {
- if areTestAPIKeysSet() {
- _, err := b.GetDepositAddress(currency.BTC, "")
- if err != nil {
- t.Error("Test Failed - GetDepositAddress() error", err)
- }
- } else {
- _, err := b.GetDepositAddress(currency.BTC, "")
- if err == nil {
- t.Error("Test Failed - GetDepositAddress() error cannot be nil")
- }
+ t.Parallel()
+
+ _, err := b.GetDepositAddress(currency.BTC, "")
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - GetDepositAddress() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - GetDepositAddress() error cannot be nil")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock GetDepositAddress() error", err)
}
}
diff --git a/exchanges/binance/binance_types.go b/exchanges/binance/binance_types.go
index 666fee91ec4..ee586ad035a 100644
--- a/exchanges/binance/binance_types.go
+++ b/exchanges/binance/binance_types.go
@@ -314,7 +314,7 @@ type NewOrderResponse struct {
Price float64 `json:"price,string"`
Qty float64 `json:"qty,string"`
Commission float64 `json:"commission,string"`
- CommissionAsset float64 `json:"commissionAsset,string"`
+ CommissionAsset string `json:"commissionAsset"`
} `json:"fills"`
}
@@ -621,5 +621,5 @@ var WithdrawalFees = map[currency.Code]float64{
type WithdrawResponse struct {
Success bool `json:"success"`
Msg string `json:"msg"`
- ID int64 `json:"id"`
+ ID string `json:"id"`
}
diff --git a/exchanges/binance/binance_wrapper.go b/exchanges/binance/binance_wrapper.go
index f0241904338..71a0d748d06 100644
--- a/exchanges/binance/binance_wrapper.go
+++ b/exchanges/binance/binance_wrapper.go
@@ -301,9 +301,10 @@ func (b *Binance) GetDepositAddress(cryptocurrency currency.Code, _ string) (str
// submitted
func (b *Binance) WithdrawCryptocurrencyFunds(withdrawRequest *exchange.WithdrawRequest) (string, error) {
amountStr := strconv.FormatFloat(withdrawRequest.Amount, 'f', -1, 64)
- id, err := b.WithdrawCrypto(withdrawRequest.Currency.String(), withdrawRequest.Address, withdrawRequest.AddressTag, withdrawRequest.Description, amountStr)
-
- return strconv.FormatInt(id, 10), err
+ return b.WithdrawCrypto(withdrawRequest.Currency.String(),
+ withdrawRequest.Address,
+ withdrawRequest.AddressTag,
+ withdrawRequest.Description, amountStr)
}
// WithdrawFiatFunds returns a withdrawal ID when a
diff --git a/exchanges/bitfinex/bitfinex.go b/exchanges/bitfinex/bitfinex.go
index 58fa3dc4cd8..c1a17d92862 100644
--- a/exchanges/bitfinex/bitfinex.go
+++ b/exchanges/bitfinex/bitfinex.go
@@ -1030,7 +1030,16 @@ func (b *Bitfinex) CloseMarginFunding(swapID int64) (Offer, error) {
// SendHTTPRequest sends an unauthenticated request
func (b *Bitfinex) SendHTTPRequest(path string, result interface{}, verbose bool) error {
- return b.SendPayload(http.MethodGet, path, nil, nil, result, false, false, verbose, b.HTTPDebugging)
+ return b.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an autheticated http request and json
@@ -1076,7 +1085,8 @@ func (b *Bitfinex) SendAuthenticatedHTTPRequest(method, path string, params map[
true,
true,
b.Verbose,
- b.HTTPDebugging)
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/bitflyer/bitflyer.go b/exchanges/bitflyer/bitflyer.go
index 78dd3dc596b..95bf0d94564 100644
--- a/exchanges/bitflyer/bitflyer.go
+++ b/exchanges/bitflyer/bitflyer.go
@@ -380,7 +380,16 @@ func (b *Bitflyer) GetTradingCommission() {
// SendHTTPRequest sends an unauthenticated request
func (b *Bitflyer) SendHTTPRequest(path string, result interface{}) error {
- return b.SendPayload(http.MethodGet, path, nil, nil, result, false, false, b.Verbose, b.HTTPDebugging)
+ return b.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// SendAuthHTTPRequest sends an authenticated HTTP request
diff --git a/exchanges/bithumb/bithumb.go b/exchanges/bithumb/bithumb.go
index cd6f0961625..2d9e0c7e11b 100644
--- a/exchanges/bithumb/bithumb.go
+++ b/exchanges/bithumb/bithumb.go
@@ -531,7 +531,16 @@ func (b *Bithumb) MarketSellOrder(currency string, units float64) (MarketSell, e
// SendHTTPRequest sends an unauthenticated HTTP request
func (b *Bithumb) SendHTTPRequest(path string, result interface{}) error {
- return b.SendPayload(http.MethodGet, path, nil, nil, result, false, false, b.Verbose, b.HTTPDebugging)
+ return b.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated HTTP request to bithumb
@@ -575,7 +584,8 @@ func (b *Bithumb) SendAuthenticatedHTTPRequest(path string, params url.Values, r
true,
true,
b.Verbose,
- b.HTTPDebugging)
+ b.HTTPDebugging,
+ b.HTTPRecording)
if err != nil {
return err
}
diff --git a/exchanges/bitmex/bitmex.go b/exchanges/bitmex/bitmex.go
index b1410eb5898..80c71c6fdcb 100644
--- a/exchanges/bitmex/bitmex.go
+++ b/exchanges/bitmex/bitmex.go
@@ -879,14 +879,32 @@ func (b *Bitmex) SendHTTPRequest(path string, params Parameter, result interface
if err != nil {
return err
}
- err = b.SendPayload(http.MethodGet, encodedPath, nil, nil, &respCheck, false, false, b.Verbose, b.HTTPDebugging)
+ err = b.SendPayload(http.MethodGet,
+ encodedPath,
+ nil,
+ nil,
+ &respCheck,
+ false,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
if err != nil {
return err
}
return b.CaptureError(respCheck, result)
}
}
- err := b.SendPayload(http.MethodGet, path, nil, nil, &respCheck, false, false, b.Verbose, b.HTTPDebugging)
+ err := b.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ &respCheck,
+ false,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
if err != nil {
return err
}
@@ -938,7 +956,8 @@ func (b *Bitmex) SendAuthenticatedHTTPRequest(verb, path string, params Paramete
true,
false,
b.Verbose,
- b.HTTPDebugging)
+ b.HTTPDebugging,
+ b.HTTPRecording)
if err != nil {
return err
}
diff --git a/exchanges/bitstamp/bitstamp.go b/exchanges/bitstamp/bitstamp.go
index 765d31a0267..baf74d30786 100644
--- a/exchanges/bitstamp/bitstamp.go
+++ b/exchanges/bitstamp/bitstamp.go
@@ -1,6 +1,7 @@
package bitstamp
import (
+ "bytes"
"encoding/json"
"errors"
"fmt"
@@ -176,7 +177,6 @@ func (b *Bitstamp) GetFee(feeBuilder *exchange.FeeBuilder) (float64, error) {
switch feeBuilder.FeeType {
case exchange.CryptocurrencyTradeFee:
var err error
-
b.Balance, err = b.GetBalance()
if err != nil {
return 0, err
@@ -368,16 +368,15 @@ func (b *Bitstamp) GetEURUSDConversionRate() (EURUSDConversionRate, error) {
// GetBalance returns full balance of currency held on the exchange
func (b *Bitstamp) GetBalance() (Balances, error) {
- balance := Balances{}
- path := fmt.Sprintf("%s/%s", b.APIUrl, bitstampAPIBalance)
-
- return balance, b.SendHTTPRequest(path, &balance)
+ var balance Balances
+ return balance,
+ b.SendAuthenticatedHTTPRequest(bitstampAPIBalance, true, nil, &balance)
}
// GetUserTransactions returns an array of transactions
func (b *Bitstamp) GetUserTransactions(currencyPair string) ([]UserTransactions, error) {
type Response struct {
- Date int64 `json:"datetime"`
+ Date string `json:"datetime"`
TransID int64 `json:"id"`
Type int `json:"type,string"`
USD interface{} `json:"usd"`
@@ -390,12 +389,18 @@ func (b *Bitstamp) GetUserTransactions(currencyPair string) ([]UserTransactions,
}
var response []Response
- if currencyPair != "" {
- if err := b.SendAuthenticatedHTTPRequest(bitstampAPIUserTransactions, true, url.Values{}, &response); err != nil {
+ if currencyPair == "" {
+ if err := b.SendAuthenticatedHTTPRequest(bitstampAPIUserTransactions,
+ true,
+ url.Values{},
+ &response); err != nil {
return nil, err
}
} else {
- if err := b.SendAuthenticatedHTTPRequest(bitstampAPIUserTransactions+"/"+currencyPair, true, url.Values{}, &response); err != nil {
+ if err := b.SendAuthenticatedHTTPRequest(bitstampAPIUserTransactions+"/"+currencyPair,
+ true,
+ url.Values{},
+ &response); err != nil {
return nil, err
}
}
@@ -491,10 +496,11 @@ func (b *Bitstamp) PlaceOrder(currencyPair string, price, amount float64, buy, m
orderType = bitstampAPISell
}
- path := fmt.Sprintf("%s/%s", orderType, common.StringToLower(currencyPair))
-
+ var path string
if market {
path = fmt.Sprintf("%s/%s/%s", orderType, bitstampAPIMarket, common.StringToLower(currencyPair))
+ } else {
+ path = fmt.Sprintf("%s/%s", orderType, common.StringToLower(currencyPair))
}
return response,
@@ -651,28 +657,41 @@ func (b *Bitstamp) GetUnconfirmedBitcoinDeposits() ([]UnconfirmedBTCTransactions
// currency - which currency to transfer
// subaccount - name of account
// toMain - bool either to or from account
-func (b *Bitstamp) TransferAccountBalance(amount float64, currency, subAccount string, toMain bool) (bool, error) {
+func (b *Bitstamp) TransferAccountBalance(amount float64, currency, subAccount string, toMain bool) error {
var req = url.Values{}
req.Add("amount", strconv.FormatFloat(amount, 'f', -1, 64))
req.Add("currency", currency)
+
+ if subAccount == "" {
+ return errors.New("missing subAccount parameter")
+ }
+
req.Add("subAccount", subAccount)
- path := bitstampAPITransferToMain
- if !toMain {
+ var path string
+ if toMain {
+ path = bitstampAPITransferToMain
+ } else {
path = bitstampAPITransferFromMain
}
- err := b.SendAuthenticatedHTTPRequest(path, true, req, nil)
- if err != nil {
- return false, err
- }
+ var resp interface{}
- return true, nil
+ return b.SendAuthenticatedHTTPRequest(path, true, req, &resp)
}
// SendHTTPRequest sends an unauthenticated HTTP request
func (b *Bitstamp) SendHTTPRequest(path string, result interface{}) error {
- return b.SendPayload(http.MethodGet, path, nil, nil, result, false, false, b.Verbose, b.HTTPDebugging)
+ return b.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated request
@@ -706,15 +725,26 @@ func (b *Bitstamp) SendAuthenticatedHTTPRequest(path string, v2 bool, values url
headers["Content-Type"] = "application/x-www-form-urlencoded"
encodedValues := values.Encode()
- readerValues := strings.NewReader(encodedValues)
+ readerValues := bytes.NewBufferString(encodedValues)
interim := json.RawMessage{}
errCap := struct {
- Error string `json:"error"`
+ Error string `json:"error"`
+ Status string `json:"status"`
+ Reason interface{} `json:"reason"`
}{}
- err := b.SendPayload(http.MethodPost, path, headers, readerValues, &interim, true, true, b.Verbose, b.HTTPDebugging)
+ err := b.SendPayload(http.MethodPost,
+ path,
+ headers,
+ readerValues,
+ &interim,
+ true,
+ true,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
if err != nil {
return err
}
@@ -723,6 +753,21 @@ func (b *Bitstamp) SendAuthenticatedHTTPRequest(path string, v2 bool, values url
if errCap.Error != "" {
return errors.New(errCap.Error)
}
+ if data, ok := errCap.Reason.(map[string][]string); ok {
+ var details string
+ for _, v := range data {
+ details += strings.Join(v, "")
+ }
+ return errors.New(details)
+ }
+
+ if data, ok := errCap.Reason.(string); ok {
+ return errors.New(data)
+ }
+
+ if errCap.Status != "" {
+ return errors.New(errCap.Status)
+ }
}
return common.JSONDecode(interim, result)
diff --git a/exchanges/bitstamp/bitstamp_live_test.go b/exchanges/bitstamp/bitstamp_live_test.go
new file mode 100644
index 00000000000..5c6a6edc64a
--- /dev/null
+++ b/exchanges/bitstamp/bitstamp_live_test.go
@@ -0,0 +1,33 @@
+//+build mock_test_off
+
+// This will build if build tag mock_test_off is parsed and will do live testing
+// using all tests in (exchange)_test.go
+package bitstamp
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+var mockTests = false
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ bitstampConfig, err := cfg.GetExchangeConfig("Bitstamp")
+ if err != nil {
+ log.Fatal("Test Failed - Bitstamp Setup() init error", err)
+ }
+ bitstampConfig.AuthenticatedAPISupport = true
+ bitstampConfig.APIKey = apiKey
+ bitstampConfig.APISecret = apiSecret
+ bitstampConfig.ClientID = customerID
+ b.SetDefaults()
+ b.Setup(&bitstampConfig)
+ log.Printf(sharedtestvalues.LiveTesting, b.GetName(), b.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/bitstamp/bitstamp_mock_test.go b/exchanges/bitstamp/bitstamp_mock_test.go
new file mode 100644
index 00000000000..fa956c96dda
--- /dev/null
+++ b/exchanges/bitstamp/bitstamp_mock_test.go
@@ -0,0 +1,45 @@
+//+build !mock_test_off
+
+// This will build if build tag mock_test_off is not parsed and will try to mock
+// all tests in _test.go
+package bitstamp
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/mock"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+const mockfile = "../../testdata/http_mock/bitstamp/bitstamp.json"
+
+var mockTests = true
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ bitstampConfig, err := cfg.GetExchangeConfig("Bitstamp")
+ if err != nil {
+ log.Fatal("Test Failed - Bitstamp Setup() init error", err)
+ }
+ bitstampConfig.AuthenticatedAPISupport = true
+ bitstampConfig.APIKey = apiKey
+ bitstampConfig.APISecret = apiSecret
+ bitstampConfig.ClientID = customerID
+ b.SetDefaults()
+ b.Setup(&bitstampConfig)
+
+ serverDetails, newClient, err := mock.NewVCRServer(mockfile)
+ if err != nil {
+ log.Fatalf("Test Failed - Mock server error %s", err)
+ }
+
+ b.HTTPClient = newClient
+ b.APIUrl = serverDetails + "/api"
+
+ log.Printf(sharedtestvalues.MockTesting, b.GetName(), b.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/bitstamp/bitstamp_test.go b/exchanges/bitstamp/bitstamp_test.go
index bb7fe766520..c4bf229887c 100644
--- a/exchanges/bitstamp/bitstamp_test.go
+++ b/exchanges/bitstamp/bitstamp_test.go
@@ -3,9 +3,7 @@ package bitstamp
import (
"net/url"
"testing"
- "time"
- "github.com/thrasher-corp/gocryptotrader/config"
"github.com/thrasher-corp/gocryptotrader/currency"
exchange "github.com/thrasher-corp/gocryptotrader/exchanges"
)
@@ -20,45 +18,12 @@ const (
var b Bitstamp
-func TestSetDefaults(t *testing.T) {
- b.SetDefaults()
-
- if b.Name != "Bitstamp" {
- t.Error("Test Failed - SetDefaults() error")
- }
- if b.Enabled {
- t.Error("Test Failed - SetDefaults() error")
- }
- if b.Verbose {
- t.Error("Test Failed - SetDefaults() error")
- }
- if b.Websocket.IsEnabled() {
- t.Error("Test Failed - SetDefaults() error")
- }
- if b.RESTPollingDelay != 10 {
- t.Error("Test Failed - SetDefaults() error")
- }
-}
-
-func TestSetup(t *testing.T) {
- cfg := config.GetConfig()
- cfg.LoadConfig("../../testdata/configtest.json")
- bConfig, err := cfg.GetExchangeConfig("Bitstamp")
- if err != nil {
- t.Error("Test Failed - Bitstamp Setup() init error")
- }
- bConfig.APIKey = apiKey
- bConfig.APISecret = apiSecret
- bConfig.ClientID = customerID
-
- b.Setup(&bConfig)
- b.ClientID = customerID
-
- if !b.IsEnabled() || b.RESTPollingDelay != time.Duration(10) ||
- b.Verbose || b.Websocket.IsEnabled() || len(b.BaseCurrencies) < 1 ||
- len(b.AvailablePairs) < 1 || len(b.EnabledPairs) < 1 {
- t.Error("Test Failed - Bitstamp Setup values not set correctly")
+func areTestAPIKeysSet() bool {
+ if b.APIKey != "" && b.APIKey != "Key" &&
+ b.APISecret != "" && b.APISecret != "Secret" {
+ return true
}
+ return false
}
func setFeeBuilder() *exchange.FeeBuilder {
@@ -72,53 +37,66 @@ func setFeeBuilder() *exchange.FeeBuilder {
// TestGetFeeByTypeOfflineTradeFee logic test
func TestGetFeeByTypeOfflineTradeFee(t *testing.T) {
+ t.Parallel()
+
var feeBuilder = setFeeBuilder()
b.GetFeeByType(feeBuilder)
- if apiKey == "" || apiSecret == "" {
+ if !areTestAPIKeysSet() || mockTests {
if feeBuilder.FeeType != exchange.OfflineTradeFee {
- t.Errorf("Expected %v, received %v", exchange.OfflineTradeFee, feeBuilder.FeeType)
+ t.Errorf("Expected %v, received %v",
+ exchange.OfflineTradeFee,
+ feeBuilder.FeeType)
}
} else {
if feeBuilder.FeeType != exchange.CryptocurrencyTradeFee {
- t.Errorf("Expected %v, received %v", exchange.CryptocurrencyTradeFee, feeBuilder.FeeType)
+ t.Errorf("Expected %v, received %v",
+ exchange.CryptocurrencyTradeFee,
+ feeBuilder.FeeType)
}
}
}
func TestGetFee(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
var feeBuilder = setFeeBuilder()
// CryptocurrencyTradeFee Basic
- if resp, err := b.GetFee(feeBuilder); resp != float64(0) || err != nil {
+ if resp, err := b.GetFee(feeBuilder); resp != float64(0) || (areTestAPIKeysSet() && err != nil) {
t.Error(err)
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
}
// CryptocurrencyTradeFee High quantity
feeBuilder = setFeeBuilder()
feeBuilder.Amount = 1000
feeBuilder.PurchasePrice = 1000
- if resp, err := b.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ if resp, err := b.GetFee(feeBuilder); resp != float64(0) || (areTestAPIKeysSet() && err != nil) {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
// CryptocurrencyTradeFee IsMaker
feeBuilder = setFeeBuilder()
feeBuilder.IsMaker = true
- if resp, err := b.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ if resp, err := b.GetFee(feeBuilder); resp != float64(0) || (areTestAPIKeysSet() && err != nil) {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
// CryptocurrencyTradeFee Negative purchase price
feeBuilder = setFeeBuilder()
feeBuilder.PurchasePrice = -1000
- if resp, err := b.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ if resp, err := b.GetFee(feeBuilder); resp != float64(0) || (areTestAPIKeysSet() && err != nil) {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
@@ -126,7 +104,9 @@ func TestGetFee(t *testing.T) {
feeBuilder = setFeeBuilder()
feeBuilder.FeeType = exchange.CryptocurrencyWithdrawalFee
if resp, err := b.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
@@ -134,7 +114,9 @@ func TestGetFee(t *testing.T) {
feeBuilder = setFeeBuilder()
feeBuilder.FeeType = exchange.CyptocurrencyDepositFee
if resp, err := b.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
@@ -143,7 +125,9 @@ func TestGetFee(t *testing.T) {
feeBuilder.FeeType = exchange.InternationalBankDepositFee
feeBuilder.FiatCurrency = currency.HKD
if resp, err := b.GetFee(feeBuilder); resp != float64(7.5) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(7.5), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(7.5),
+ resp)
t.Error(err)
}
@@ -152,15 +136,15 @@ func TestGetFee(t *testing.T) {
feeBuilder.FeeType = exchange.InternationalBankWithdrawalFee
feeBuilder.FiatCurrency = currency.HKD
if resp, err := b.GetFee(feeBuilder); resp != float64(15) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(15), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(15),
+ resp)
t.Error(err)
}
}
func TestCalculateTradingFee(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
- b.Balance = Balances{}
+ t.Parallel()
b.Balance.BTCUSDFee = 1
b.Balance.BTCEURFee = 0
@@ -182,18 +166,16 @@ func TestCalculateTradingFee(t *testing.T) {
func TestGetTicker(t *testing.T) {
t.Parallel()
+
_, err := b.GetTicker(currency.BTC.String()+currency.USD.String(), false)
if err != nil {
t.Error("Test Failed - GetTicker() error", err)
}
- _, err = b.GetTicker(currency.BTC.String()+currency.USD.String(), true)
- if err != nil {
- t.Error("Test Failed - GetTicker() error", err)
- }
}
func TestGetOrderbook(t *testing.T) {
t.Parallel()
+
_, err := b.GetOrderbook(currency.BTC.String() + currency.USD.String())
if err != nil {
t.Error("Test Failed - GetOrderbook() error", err)
@@ -202,6 +184,7 @@ func TestGetOrderbook(t *testing.T) {
func TestGetTradingPairs(t *testing.T) {
t.Parallel()
+
_, err := b.GetTradingPairs()
if err != nil {
t.Error("Test Failed - GetTradingPairs() error", err)
@@ -210,6 +193,7 @@ func TestGetTradingPairs(t *testing.T) {
func TestGetTransactions(t *testing.T) {
t.Parallel()
+
value := url.Values{}
value.Set("time", "hour")
@@ -217,14 +201,11 @@ func TestGetTransactions(t *testing.T) {
if err != nil {
t.Error("Test Failed - GetTransactions() error", err)
}
- _, err = b.GetTransactions("wigwham", value)
- if err == nil {
- t.Error("Test Failed - GetTransactions() error")
- }
}
func TestGetEURUSDConversionRate(t *testing.T) {
t.Parallel()
+
_, err := b.GetEURUSDConversionRate()
if err != nil {
t.Error("Test Failed - GetEURUSDConversionRate() error", err)
@@ -233,21 +214,28 @@ func TestGetEURUSDConversionRate(t *testing.T) {
func TestGetBalance(t *testing.T) {
t.Parallel()
+
_, err := b.GetBalance()
- if err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Error("Test Failed - GetBalance() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
t.Error("Test Failed - GetBalance() error", err)
}
}
func TestGetUserTransactions(t *testing.T) {
t.Parallel()
- _, err := b.GetUserTransactions("")
- if err == nil {
- t.Error("Test Failed - GetUserTransactions() error", err)
- }
- _, err = b.GetUserTransactions("btcusd")
- if err == nil {
+ _, err := b.GetUserTransactions("btcusd")
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Error("Test Failed - GetUserTransactions() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
t.Error("Test Failed - GetUserTransactions() error", err)
}
}
@@ -256,56 +244,27 @@ func TestGetOpenOrders(t *testing.T) {
t.Parallel()
_, err := b.GetOpenOrders("btcusd")
- if err == nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Error("Test Failed - GetOpenOrders() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
t.Error("Test Failed - GetOpenOrders() error", err)
- }
- _, err = b.GetOpenOrders("wigwham")
- if err == nil {
- t.Error("Test Failed - GetOpenOrders() error")
}
}
func TestGetOrderStatus(t *testing.T) {
t.Parallel()
- if !areTestAPIKeysSet() {
- t.Skip()
- }
-
_, err := b.GetOrderStatus(1337)
- if err == nil {
- t.Error("Test Failed - GetOpenOrders() error")
- }
-}
-
-func TestCancelExistingOrder(t *testing.T) {
- t.Parallel()
-
- resp, err := b.CancelExistingOrder(1337)
- if err == nil || resp {
- t.Error("Test Failed - CancelExistingOrder() error")
- }
-}
-
-func TestCancelAllExistingOrders(t *testing.T) {
- t.Parallel()
-
- _, err := b.CancelAllExistingOrders()
- if err == nil {
- t.Error("Test Failed - CancelAllExistingOrders() error", err)
- }
-}
-
-func TestPlaceOrder(t *testing.T) {
- t.Parallel()
-
- if !areTestAPIKeysSet() {
- t.Skip()
- }
-
- _, err := b.PlaceOrder("btcusd", 0.01, 1, true, true)
- if err == nil {
- t.Error("Test Failed - PlaceOrder() error")
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Error("Test Failed - GetOrderStatus() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err == nil:
+ t.Error("Expecting an error until a QA pass can be completed")
}
}
@@ -313,34 +272,13 @@ func TestGetWithdrawalRequests(t *testing.T) {
t.Parallel()
_, err := b.GetWithdrawalRequests(0)
- if err == nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Error("Test Failed - GetWithdrawalRequests() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
t.Error("Test Failed - GetWithdrawalRequests() error", err)
- }
- _, err = b.GetWithdrawalRequests(-1)
- if err == nil {
- t.Error("Test Failed - GetWithdrawalRequests() error")
- }
-}
-
-func TestCryptoWithdrawal(t *testing.T) {
- t.Parallel()
-
- if !areTestAPIKeysSet() {
- t.Skip()
- }
-
- _, err := b.CryptoWithdrawal(0, "bla", "btc", "", true)
- if err == nil {
- t.Error("Test Failed - CryptoWithdrawal() error", err)
- }
-}
-
-func TestGetBitcoinDepositAddress(t *testing.T) {
- t.Parallel()
-
- _, err := b.GetCryptoDepositAddress(currency.BTC)
- if err == nil {
- t.Error("Test Failed - GetCryptoDepositAddress() error", err)
}
}
@@ -348,7 +286,12 @@ func TestGetUnconfirmedBitcoinDeposits(t *testing.T) {
t.Parallel()
_, err := b.GetUnconfirmedBitcoinDeposits()
- if err == nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Error("Test Failed - GetUnconfirmedBitcoinDeposits() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
t.Error("Test Failed - GetUnconfirmedBitcoinDeposits() error", err)
}
}
@@ -356,78 +299,77 @@ func TestGetUnconfirmedBitcoinDeposits(t *testing.T) {
func TestTransferAccountBalance(t *testing.T) {
t.Parallel()
- if !areTestAPIKeysSet() {
+ if !areTestAPIKeysSet() && !mockTests {
t.Skip()
}
- _, err := b.TransferAccountBalance(1, "", "", true)
- if err == nil {
+ err := b.TransferAccountBalance(0.01, "btc", "testAccount", true)
+ if !mockTests && err != nil {
t.Error("Test Failed - TransferAccountBalance() error", err)
}
-
- _, err = b.TransferAccountBalance(1, "btc", "", false)
- if err == nil {
- t.Error("Test Failed - TransferAccountBalance() error", err)
+ if mockTests && err == nil {
+ t.Error("Expecting an error until a QA pass can be completed")
}
}
func TestFormatWithdrawPermissions(t *testing.T) {
- b.SetDefaults()
- expectedResult := exchange.AutoWithdrawCryptoText + " & " + exchange.AutoWithdrawFiatText
+ t.Parallel()
- withdrawPermissions := b.FormatWithdrawPermissions()
+ expectedResult := exchange.AutoWithdrawCryptoText +
+ " & " +
+ exchange.AutoWithdrawFiatText
+ withdrawPermissions := b.FormatWithdrawPermissions()
if withdrawPermissions != expectedResult {
- t.Errorf("Expected: %s, Received: %s", expectedResult, withdrawPermissions)
+ t.Errorf("Expected: %s, Received: %s",
+ expectedResult,
+ withdrawPermissions)
}
}
func TestGetActiveOrders(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
}
_, err := b.GetActiveOrders(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not get open orders: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Could not get open orders: %s", err)
}
}
func TestGetOrderHistory(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
}
_, err := b.GetOrderHistory(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not get order history: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Could not get order history: %s", err)
}
}
// Any tests below this line have the ability to impact your orders on the exchange. Enable canManipulateRealOrders to run them
// ----------------------------------------------------------------------------------------------------------------------------
-func areTestAPIKeysSet() bool {
- if b.APIKey != "" && b.APIKey != "Key" &&
- b.APISecret != "" && b.APISecret != "Secret" {
- return true
- }
- return false
-}
func TestSubmitOrder(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -436,19 +378,26 @@ func TestSubmitOrder(t *testing.T) {
Base: currency.BTC,
Quote: currency.USD,
}
- response, err := b.SubmitOrder(p, exchange.BuyOrderSide, exchange.MarketOrderType, 1, 1, "clientId")
- if areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced) {
+ response, err := b.SubmitOrder(p,
+ exchange.BuyOrderSide,
+ exchange.MarketOrderType,
+ 1,
+ 1,
+ "clientId")
+ switch {
+ case areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced) && !mockTests:
t.Errorf("Order failed to be placed: %v", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err == nil:
+ t.Error("Expecting an error until QA pass is completed")
}
}
func TestCancelExchangeOrder(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -462,19 +411,20 @@ func TestCancelExchangeOrder(t *testing.T) {
}
err := b.CancelOrder(orderCancellation)
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not cancel orders: %v", err)
+ case mockTests && err == nil:
+ t.Error("Expecting an error until QA pass is completed")
}
}
func TestCancelAllExchangeOrders(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -488,11 +438,12 @@ func TestCancelAllExchangeOrders(t *testing.T) {
}
resp, err := b.CancelAllOrders(orderCancellation)
-
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Errorf("Could not cancel orders: %v", err)
+ case mockTests && err != nil:
t.Errorf("Could not cancel orders: %v", err)
}
@@ -502,6 +453,8 @@ func TestCancelAllExchangeOrders(t *testing.T) {
}
func TestModifyOrder(t *testing.T) {
+ t.Parallel()
+
_, err := b.ModifyOrder(&exchange.ModifyOrder{})
if err == nil {
t.Error("Test failed - ModifyOrder() error")
@@ -509,8 +462,12 @@ func TestModifyOrder(t *testing.T) {
}
func TestWithdraw(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
+
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
+ t.Skip("API keys set, canManipulateRealOrders false, skipping test")
+ }
+
var withdrawCryptoRequest = exchange.WithdrawRequest{
Amount: 100,
Currency: currency.BTC,
@@ -518,24 +475,21 @@ func TestWithdraw(t *testing.T) {
Description: "WITHDRAW IT ALL",
}
- if areTestAPIKeysSet() && !canManipulateRealOrders {
- t.Skip("API keys set, canManipulateRealOrders false, skipping test")
- }
-
_, err := b.WithdrawCryptocurrencyFunds(&withdrawCryptoRequest)
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Withdraw failed to be placed: %v", err)
+ case mockTests && err == nil:
+ t.Error("Expecting an error until QA pass is completed")
}
}
func TestWithdrawFiat(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -558,19 +512,20 @@ func TestWithdrawFiat(t *testing.T) {
}
_, err := b.WithdrawFiatFunds(&withdrawFiatRequest)
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Withdraw failed to be placed: %v", err)
+ case mockTests && err == nil:
+ t.Error("Expecting an error until QA pass is completed")
}
}
func TestWithdrawInternationalBank(t *testing.T) {
- b.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -599,24 +554,26 @@ func TestWithdrawInternationalBank(t *testing.T) {
}
_, err := b.WithdrawFiatFundsToInternationalBank(&withdrawFiatRequest)
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Withdraw failed to be placed: %v", err)
+ case mockTests && err == nil:
+ t.Error("Expecting an error until QA pass is completed")
}
}
func TestGetDepositAddress(t *testing.T) {
- if areTestAPIKeysSet() && customerID != "" {
- _, err := b.GetDepositAddress(currency.BTC, "")
- if err != nil {
- t.Error("Test Failed - GetDepositAddress error", err)
- }
- } else {
- _, err := b.GetDepositAddress(currency.BTC, "")
- if err == nil {
- t.Error("Test Failed - GetDepositAddress error cannot be nil")
- }
+ t.Parallel()
+
+ _, err := b.GetDepositAddress(currency.BTC, "")
+ switch {
+ case areTestAPIKeysSet() && customerID != "" && err != nil && !mockTests:
+ t.Error("Test Failed - GetDepositAddress error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - GetDepositAddress error cannot be nil")
+ case mockTests && err != nil:
+ t.Error("Test Failed - GetDepositAddress error", err)
}
}
diff --git a/exchanges/bitstamp/bitstamp_types.go b/exchanges/bitstamp/bitstamp_types.go
index 1cdc63a934a..e8d8a676204 100644
--- a/exchanges/bitstamp/bitstamp_types.go
+++ b/exchanges/bitstamp/bitstamp_types.go
@@ -77,7 +77,7 @@ type Balances struct {
// UserTransactions holds user transaction information
type UserTransactions struct {
- Date int64 `json:"datetime"`
+ Date string `json:"datetime"`
TransID int64 `json:"id"`
Type int `json:"type,string"`
USD float64 `json:"usd"`
@@ -125,15 +125,15 @@ type WithdrawalRequests struct {
// CryptoWithdrawalResponse response from a crypto withdrawal request
type CryptoWithdrawalResponse struct {
- ID string `json:"id"`
- Error string `json:"error"`
+ ID string `json:"id"`
+ Error map[string][]string `json:"error"`
}
// FIATWithdrawalResponse response from a fiat withdrawal request
type FIATWithdrawalResponse struct {
- ID string `json:"id"`
- Status string `json:"status"`
- Reason string `json:"reason"`
+ ID string `json:"id"`
+ Status string `json:"status"`
+ Reason map[string][]string `json:"reason"`
}
// UnconfirmedBTCTransactions holds address information about unconfirmed
diff --git a/exchanges/bitstamp/bitstamp_wrapper.go b/exchanges/bitstamp/bitstamp_wrapper.go
index 85960e7d1b8..802f8682a6f 100644
--- a/exchanges/bitstamp/bitstamp_wrapper.go
+++ b/exchanges/bitstamp/bitstamp_wrapper.go
@@ -262,8 +262,12 @@ func (b *Bitstamp) WithdrawCryptocurrencyFunds(withdrawRequest *exchange.Withdra
if err != nil {
return "", err
}
- if resp.Error != "" {
- return "", errors.New(resp.Error)
+ if len(resp.Error) != 0 {
+ var details string
+ for _, v := range resp.Error {
+ details += strings.Join(v, "")
+ }
+ return "", errors.New(details)
}
return resp.ID, nil
@@ -280,7 +284,11 @@ func (b *Bitstamp) WithdrawFiatFunds(withdrawRequest *exchange.WithdrawRequest)
return "", err
}
if resp.Status == errStr {
- return "", errors.New(resp.Reason)
+ var details string
+ for _, v := range resp.Reason {
+ details += strings.Join(v, "")
+ }
+ return "", errors.New(details)
}
return resp.ID, nil
@@ -299,7 +307,11 @@ func (b *Bitstamp) WithdrawFiatFundsToInternationalBank(withdrawRequest *exchang
return "", err
}
if resp.Status == errStr {
- return "", errors.New(resp.Reason)
+ var details string
+ for _, v := range resp.Reason {
+ details += strings.Join(v, "")
+ }
+ return "", errors.New(details)
}
return resp.ID, nil
@@ -387,7 +399,11 @@ func (b *Bitstamp) GetOrderHistory(getOrdersRequest *exchange.GetOrdersRequest)
quoteCurrency.String(),
b.ConfigCurrencyPairFormat.Delimiter)
}
- orderDate := time.Unix(order.Date, 0)
+
+ orderDate, err := time.Parse("2006-01-02 15:04:05", order.Date)
+ if err != nil {
+ return nil, err
+ }
orders = append(orders, exchange.OrderDetail{
ID: fmt.Sprintf("%v", order.OrderID),
diff --git a/exchanges/bittrex/bittrex.go b/exchanges/bittrex/bittrex.go
index 6e071be0d62..b9b0a18bf8c 100644
--- a/exchanges/bittrex/bittrex.go
+++ b/exchanges/bittrex/bittrex.go
@@ -495,7 +495,16 @@ func (b *Bittrex) GetDepositHistory(currency string) (WithdrawalHistory, error)
// SendHTTPRequest sends an unauthenticated HTTP request
func (b *Bittrex) SendHTTPRequest(path string, result interface{}) error {
- return b.SendPayload(http.MethodGet, path, nil, nil, result, false, false, b.Verbose, b.HTTPDebugging)
+ return b.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated http request to a desired
@@ -516,7 +525,16 @@ func (b *Bittrex) SendAuthenticatedHTTPRequest(path string, values url.Values, r
headers := make(map[string]string)
headers["apisign"] = common.HexEncodeToString(hmac)
- return b.SendPayload(http.MethodGet, rawQuery, headers, nil, result, true, true, b.Verbose, b.HTTPDebugging)
+ return b.SendPayload(http.MethodGet,
+ rawQuery,
+ headers,
+ nil,
+ result,
+ true,
+ true,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/btcmarkets/btcmarkets.go b/exchanges/btcmarkets/btcmarkets.go
index 0c5701c73cd..695ab31e25c 100644
--- a/exchanges/btcmarkets/btcmarkets.go
+++ b/exchanges/btcmarkets/btcmarkets.go
@@ -433,7 +433,16 @@ func (b *BTCMarkets) WithdrawAUD(accountName, accountNumber, bankName, bsbNumber
// SendHTTPRequest sends an unauthenticated HTTP request
func (b *BTCMarkets) SendHTTPRequest(path string, result interface{}) error {
- return b.SendPayload(http.MethodGet, path, nil, nil, result, false, false, b.Verbose, b.HTTPDebugging)
+ return b.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// SendAuthenticatedRequest sends an authenticated HTTP request
@@ -484,7 +493,8 @@ func (b *BTCMarkets) SendAuthenticatedRequest(reqType, path string, data, result
true,
true,
b.Verbose,
- b.HTTPDebugging)
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/btse/btse.go b/exchanges/btse/btse.go
index 29de64a2d59..87e9e550743 100644
--- a/exchanges/btse/btse.go
+++ b/exchanges/btse/btse.go
@@ -275,8 +275,16 @@ func (b *BTSE) GetFills(orderID, productID, before, after, limit string) (*Fille
// SendHTTPRequest sends an HTTP request to the desired endpoint
func (b *BTSE) SendHTTPRequest(method, endpoint string, result interface{}) error {
- p := fmt.Sprintf("%s/%s", btseAPIURL, endpoint)
- return b.SendPayload(method, p, nil, nil, &result, false, false, b.Verbose, b.HTTPDebugging)
+ return b.SendPayload(method,
+ fmt.Sprintf("%s/%s", btseAPIURL, endpoint),
+ nil,
+ nil,
+ &result,
+ false,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated HTTP request to the desired endpoint
@@ -301,8 +309,16 @@ func (b *BTSE) SendAuthenticatedHTTPRequest(method, endpoint string, req map[str
if b.Verbose {
log.Debugf("Sending %s request to URL %s with params %s\n", method, p, string(payload))
}
- return b.SendPayload(method, p, headers, strings.NewReader(string(payload)),
- &result, true, false, b.Verbose, b.HTTPDebugging)
+ return b.SendPayload(method,
+ p,
+ headers,
+ strings.NewReader(string(payload)),
+ &result,
+ true,
+ false,
+ b.Verbose,
+ b.HTTPDebugging,
+ b.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/coinbasepro/coinbasepro.go b/exchanges/coinbasepro/coinbasepro.go
index d63fed4b24c..b2ffe8d4e95 100644
--- a/exchanges/coinbasepro/coinbasepro.go
+++ b/exchanges/coinbasepro/coinbasepro.go
@@ -820,7 +820,16 @@ func (c *CoinbasePro) GetTrailingVolume() ([]Volume, error) {
// SendHTTPRequest sends an unauthenticated HTTP request
func (c *CoinbasePro) SendHTTPRequest(path string, result interface{}) error {
- return c.SendPayload(http.MethodGet, path, nil, nil, result, false, false, c.Verbose, c.HTTPDebugging)
+ return c.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ c.Verbose,
+ c.HTTPDebugging,
+ c.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated HTTP reque
@@ -861,7 +870,8 @@ func (c *CoinbasePro) SendAuthenticatedHTTPRequest(method, path string, params m
true,
true,
c.Verbose,
- c.HTTPDebugging)
+ c.HTTPDebugging,
+ c.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/coinut/coinut.go b/exchanges/coinut/coinut.go
index 5a1c954d027..270ae1ce8ff 100644
--- a/exchanges/coinut/coinut.go
+++ b/exchanges/coinut/coinut.go
@@ -405,7 +405,7 @@ func (c *COINUT) SendHTTPRequest(apiRequest string, params map[string]interface{
true,
c.Verbose,
c.HTTPDebugging,
- )
+ c.HTTPRecording)
if err != nil {
return err
}
diff --git a/exchanges/exchange.go b/exchanges/exchange.go
index 84b01c6ac4f..19e34fd3af1 100644
--- a/exchanges/exchange.go
+++ b/exchanges/exchange.go
@@ -286,6 +286,7 @@ type Base struct {
HTTPTimeout time.Duration
HTTPUserAgent string
HTTPDebugging bool
+ HTTPRecording bool
WebsocketURL string
APIUrl string
APIUrlDefault string
diff --git a/exchanges/exmo/exmo.go b/exchanges/exmo/exmo.go
index a4694a2ffc1..8c257a4753e 100644
--- a/exchanges/exmo/exmo.go
+++ b/exchanges/exmo/exmo.go
@@ -373,7 +373,16 @@ func (e *EXMO) GetWalletHistory(date int64) (WalletHistory, error) {
// SendHTTPRequest sends an unauthenticated HTTP request
func (e *EXMO) SendHTTPRequest(path string, result interface{}) error {
- return e.SendPayload(http.MethodGet, path, nil, nil, result, false, false, e.Verbose, e.HTTPDebugging)
+ return e.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ e.Verbose,
+ e.HTTPDebugging,
+ e.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated HTTP request
@@ -413,7 +422,8 @@ func (e *EXMO) SendAuthenticatedHTTPRequest(method, endpoint string, vals url.Va
true,
true,
e.Verbose,
- e.HTTPDebugging)
+ e.HTTPDebugging,
+ e.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/gateio/gateio.go b/exchanges/gateio/gateio.go
index c3b55dfe8ea..07d3069cc31 100644
--- a/exchanges/gateio/gateio.go
+++ b/exchanges/gateio/gateio.go
@@ -421,7 +421,16 @@ func (g *Gateio) CancelExistingOrder(orderID int64, symbol string) (bool, error)
// SendHTTPRequest sends an unauthenticated HTTP request
func (g *Gateio) SendHTTPRequest(path string, result interface{}) error {
- return g.SendPayload(http.MethodGet, path, nil, nil, result, false, false, g.Verbose, g.HTTPDebugging)
+ return g.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ g.Verbose,
+ g.HTTPDebugging,
+ g.HTTPRecording)
}
// CancelAllExistingOrders all orders for a given symbol and side
@@ -521,7 +530,8 @@ func (g *Gateio) SendAuthenticatedHTTPRequest(method, endpoint, param string, re
true,
false,
g.Verbose,
- g.HTTPDebugging)
+ g.HTTPDebugging,
+ g.HTTPRecording)
if err != nil {
return err
}
diff --git a/exchanges/gemini/gemini.go b/exchanges/gemini/gemini.go
index a69d11a984f..b4ed2fa1cb4 100644
--- a/exchanges/gemini/gemini.go
+++ b/exchanges/gemini/gemini.go
@@ -6,7 +6,6 @@ import (
"net/http"
"net/url"
"strconv"
- "strings"
"time"
"github.com/thrasher-corp/gocryptotrader/common"
@@ -56,11 +55,6 @@ const (
geminiRoleFundManager = "fundmanager"
)
-var (
- // Session manager
- Session map[int]*Gemini
-)
-
// Gemini is the overarching type across the Gemini package, create multiple
// instances with differing APIkeys for segregation of roles for authenticated
// requests & sessions by appending new sessions to the Session map using
@@ -73,32 +67,6 @@ type Gemini struct {
RequiresHeartBeat bool
}
-// AddSession adds a new session to the gemini base
-func AddSession(g *Gemini, sessionID int, apiKey, apiSecret, role string, needsHeartbeat, isSandbox bool) error {
- if Session == nil {
- Session = make(map[int]*Gemini)
- }
-
- _, ok := Session[sessionID]
- if ok {
- return errors.New("sessionID already being used")
- }
-
- g.APIKey = apiKey
- g.APISecret = apiSecret
- g.Role = role
- g.RequiresHeartBeat = needsHeartbeat
- g.APIUrl = geminiAPIURL
-
- if isSandbox {
- g.APIUrl = geminiSandboxAPIURL
- }
-
- Session[sessionID] = g
-
- return nil
-}
-
// SetDefaults sets package defaults for gemini exchange
func (g *Gemini) SetDefaults() {
g.Name = "Gemini"
@@ -259,9 +227,15 @@ func (g *Gemini) GetTicker(currencyPair string) (Ticker, error) {
// params - limit_bids or limit_asks [OPTIONAL] default 50, 0 returns all Values
// Type is an integer ie "params.Set("limit_asks", 30)"
func (g *Gemini) GetOrderbook(currencyPair string, params url.Values) (Orderbook, error) {
- path := common.EncodeURLValues(fmt.Sprintf("%s/v%s/%s/%s", g.APIUrl, geminiAPIVersion, geminiOrderbook, currencyPair), params)
- orderbook := Orderbook{}
-
+ path := common.EncodeURLValues(
+ fmt.Sprintf("%s/v%s/%s/%s",
+ g.APIUrl,
+ geminiAPIVersion,
+ geminiOrderbook,
+ currencyPair),
+ params)
+
+ var orderbook Orderbook
return orderbook, g.SendHTTPRequest(path, &orderbook)
}
@@ -307,20 +281,9 @@ func (g *Gemini) GetAuctionHistory(currencyPair string, params url.Values) ([]Au
return auctionHist, g.SendHTTPRequest(path, &auctionHist)
}
-func (g *Gemini) isCorrectSession() error {
- if g.Role != geminiRoleTrader {
- return errors.New("incorrect role for APIKEY cannot use this function")
- }
- return nil
-}
-
// NewOrder Only limit orders are supported through the API at present.
// returns order ID if successful
func (g *Gemini) NewOrder(symbol string, amount, price float64, side, orderType string) (int64, error) {
- if err := g.isCorrectSession(); err != nil {
- return 0, err
- }
-
req := make(map[string]interface{})
req["symbol"] = symbol
req["amount"] = strconv.FormatFloat(amount, 'f', -1, 64)
@@ -405,6 +368,7 @@ func (g *Gemini) GetOrders() ([]Order, error) {
if err != nil {
return nil, err
}
+
switch r := response.(type) {
case orders:
return r.orders, nil
@@ -422,7 +386,7 @@ func (g *Gemini) GetTradeHistory(currencyPair string, timestamp int64) ([]TradeH
req := make(map[string]interface{})
req["symbol"] = currencyPair
- if timestamp != 0 {
+ if timestamp > 0 {
req["timestamp"] = timestamp
}
@@ -511,7 +475,16 @@ func (g *Gemini) PostHeartbeat() (string, error) {
// SendHTTPRequest sends an unauthenticated request
func (g *Gemini) SendHTTPRequest(path string, result interface{}) error {
- return g.SendPayload(http.MethodGet, path, nil, nil, result, false, false, g.Verbose, g.HTTPDebugging)
+ return g.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ g.Verbose,
+ g.HTTPDebugging,
+ g.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated HTTP request to the
@@ -521,7 +494,6 @@ func (g *Gemini) SendAuthenticatedHTTPRequest(method, path string, params map[st
return fmt.Errorf(exchange.WarningAuthenticatedRequestWithoutCredentialsSet, g.Name)
}
- headers := make(map[string]string)
req := make(map[string]interface{})
req["request"] = fmt.Sprintf("/v%s/%s", geminiAPIVersion, path)
req["nonce"] = g.Requester.GetNonce(true).String()
@@ -542,6 +514,7 @@ func (g *Gemini) SendAuthenticatedHTTPRequest(method, path string, params map[st
PayloadBase64 := common.Base64Encode(PayloadJSON)
hmac := common.GetHMAC(common.HashSHA512_384, []byte(PayloadBase64), []byte(g.APISecret))
+ headers := make(map[string]string)
headers["Content-Length"] = "0"
headers["Content-Type"] = "text/plain"
headers["X-GEMINI-APIKEY"] = g.APIKey
@@ -549,7 +522,16 @@ func (g *Gemini) SendAuthenticatedHTTPRequest(method, path string, params map[st
headers["X-GEMINI-SIGNATURE"] = common.HexEncodeToString(hmac)
headers["Cache-Control"] = "no-cache"
- return g.SendPayload(method, g.APIUrl+"/v1/"+path, headers, strings.NewReader(""), result, true, false, g.Verbose, g.HTTPDebugging)
+ return g.SendPayload(method,
+ g.APIUrl+"/v1/"+path,
+ headers,
+ nil,
+ result,
+ true,
+ false,
+ g.Verbose,
+ g.HTTPDebugging,
+ g.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
@@ -585,9 +567,9 @@ func getOfflineTradeFee(price, amount float64) float64 {
func calculateTradingFee(notionVolume *NotionalVolume, purchasePrice, amount float64, isMaker bool) float64 {
var volumeFee float64
if isMaker {
- volumeFee = (float64(notionVolume.MakerFee) / 100)
+ volumeFee = (float64(notionVolume.APIMakerFeeBPS) / 10000)
} else {
- volumeFee = (float64(notionVolume.TakerFee) / 100)
+ volumeFee = (float64(notionVolume.APITakerFeeBPS) / 10000)
}
return volumeFee * amount * purchasePrice
diff --git a/exchanges/gemini/gemini_live_test.go b/exchanges/gemini/gemini_live_test.go
new file mode 100644
index 00000000000..2f083e33bd3
--- /dev/null
+++ b/exchanges/gemini/gemini_live_test.go
@@ -0,0 +1,33 @@
+//+build mock_test_off
+
+// This will build if build tag mock_test_off is parsed and will do live testing
+// using all tests in (exchange)_test.go
+package gemini
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+var mockTests = false
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ geminiConfig, err := cfg.GetExchangeConfig("Gemini")
+ if err != nil {
+ log.Fatal("Test Failed - Gemini Setup() init error", err)
+ }
+ geminiConfig.AuthenticatedAPISupport = true
+ geminiConfig.APIKey = apiKey
+ geminiConfig.APISecret = apiSecret
+ g.SetDefaults()
+ g.Setup(&geminiConfig)
+ g.APIUrl = geminiSandboxAPIURL
+ log.Printf(sharedtestvalues.LiveTesting, g.GetName(), g.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/gemini/gemini_mock_test.go b/exchanges/gemini/gemini_mock_test.go
new file mode 100644
index 00000000000..8531265411e
--- /dev/null
+++ b/exchanges/gemini/gemini_mock_test.go
@@ -0,0 +1,44 @@
+//+build !mock_test_off
+
+// This will build if build tag mock_test_off is not parsed and will try to mock
+// all tests in _test.go
+package gemini
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/mock"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+const mockFile = "../../testdata/http_mock/gemini/gemini.json"
+
+var mockTests = true
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ geminiConfig, err := cfg.GetExchangeConfig("Gemini")
+ if err != nil {
+ log.Fatal("Test Failed - Mock server error", err)
+ }
+ geminiConfig.AuthenticatedAPISupport = true
+ geminiConfig.APIKey = apiKey
+ geminiConfig.APISecret = apiSecret
+ g.SetDefaults()
+ g.Setup(&geminiConfig)
+
+ serverDetails, newClient, err := mock.NewVCRServer(mockFile)
+ if err != nil {
+ log.Fatalf("Test Failed - Mock server error %s", err)
+ }
+
+ g.HTTPClient = newClient
+ g.APIUrl = serverDetails
+
+ log.Printf(sharedtestvalues.MockTesting, g.GetName(), g.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/gemini/gemini_test.go b/exchanges/gemini/gemini_test.go
index 54eef877692..83e09aa5d42 100644
--- a/exchanges/gemini/gemini_test.go
+++ b/exchanges/gemini/gemini_test.go
@@ -7,7 +7,6 @@ import (
"github.com/gorilla/websocket"
"github.com/thrasher-corp/gocryptotrader/common"
- "github.com/thrasher-corp/gocryptotrader/config"
"github.com/thrasher-corp/gocryptotrader/currency"
exchange "github.com/thrasher-corp/gocryptotrader/exchanges"
"github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
@@ -15,75 +14,21 @@ import (
)
// Please enter sandbox API keys & assigned roles for better testing procedures
-
const (
- apiKey1 = ""
- apiSecret1 = ""
- apiKeyRole1 = ""
- sessionHeartBeat1 = false
-
- apiKey2 = ""
- apiSecret2 = ""
- apiKeyRole2 = ""
- sessionHeartBeat2 = false
-
+ apiKey = ""
+ apiSecret = ""
+ apiKeyRole = ""
+ sessionHeartBeat = false
canManipulateRealOrders = false
)
-func TestAddSession(t *testing.T) {
- var g1 Gemini
- if Session[1] == nil {
- err := AddSession(&g1, 1, apiKey1, apiSecret1, apiKeyRole1, true, true)
- if err != nil {
- t.Error("Test failed - AddSession() error", err)
- }
- err = AddSession(&g1, 1, apiKey1, apiSecret1, apiKeyRole1, true, true)
- if err == nil {
- t.Error("Test failed - AddSession() error", err)
- }
- }
+const testCurrency = "btcusd"
- if len(Session) <= 1 {
- var g2 Gemini
- err := AddSession(&g2, 2, apiKey2, apiSecret2, apiKeyRole2, false, true)
- if err != nil {
- t.Error("Test failed - AddSession() error", err)
- }
- }
-}
-
-func TestSetDefaults(t *testing.T) {
- Session[1].SetDefaults()
- Session[2].SetDefaults()
-}
-
-func TestSetup(t *testing.T) {
- cfg := config.GetConfig()
- cfg.LoadConfig("../../testdata/configtest.json")
- geminiConfig, err := cfg.GetExchangeConfig("Gemini")
- if err != nil {
- t.Error("Test Failed - Gemini Setup() init error")
- }
-
- geminiConfig.AuthenticatedWebsocketAPISupport = true
- geminiConfig.AuthenticatedAPISupport = true
- geminiConfig.Websocket = true
- Session[1].Setup(&geminiConfig)
- Session[2].Setup(&geminiConfig)
-
- Session[1].APIKey = apiKey1
- Session[1].APISecret = apiSecret1
-
- Session[2].APIKey = apiKey2
- Session[2].APISecret = apiSecret2
-
- Session[1].APIUrl = geminiSandboxAPIURL
- Session[2].APIUrl = geminiSandboxAPIURL
-}
+var g Gemini
func TestGetSymbols(t *testing.T) {
t.Parallel()
- _, err := Session[1].GetSymbols()
+ _, err := g.GetSymbols()
if err != nil {
t.Error("Test Failed - GetSymbols() error", err)
}
@@ -91,11 +36,11 @@ func TestGetSymbols(t *testing.T) {
func TestGetTicker(t *testing.T) {
t.Parallel()
- _, err := Session[2].GetTicker("BTCUSD")
+ _, err := g.GetTicker("BTCUSD")
if err != nil {
t.Error("Test Failed - GetTicker() error", err)
}
- _, err = Session[1].GetTicker("bla")
+ _, err = g.GetTicker("bla")
if err == nil {
t.Error("Test Failed - GetTicker() error", err)
}
@@ -103,7 +48,7 @@ func TestGetTicker(t *testing.T) {
func TestGetOrderbook(t *testing.T) {
t.Parallel()
- _, err := Session[1].GetOrderbook("btcusd", url.Values{})
+ _, err := g.GetOrderbook(testCurrency, url.Values{})
if err != nil {
t.Error("Test Failed - GetOrderbook() error", err)
}
@@ -111,25 +56,25 @@ func TestGetOrderbook(t *testing.T) {
func TestGetTrades(t *testing.T) {
t.Parallel()
- _, err := Session[2].GetTrades("btcusd", url.Values{})
+ _, err := g.GetTrades(testCurrency, url.Values{})
if err != nil {
t.Error("Test Failed - GetTrades() error", err)
}
}
func TestGetNotionalVolume(t *testing.T) {
- if apiKey2 != "" && apiSecret2 != "" {
- t.Parallel()
- _, err := Session[2].GetNotionalVolume()
- if err != nil {
- t.Error("Test Failed - GetNotionalVolume() error", err)
- }
+ t.Parallel()
+ _, err := g.GetNotionalVolume()
+ if err != nil && mockTests {
+ t.Error("Test Failed - GetNotionalVolume() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - GetNotionalVolume() error cannot be nil")
}
}
func TestGetAuction(t *testing.T) {
t.Parallel()
- _, err := Session[1].GetAuction("btcusd")
+ _, err := g.GetAuction(testCurrency)
if err != nil {
t.Error("Test Failed - GetAuction() error", err)
}
@@ -137,7 +82,7 @@ func TestGetAuction(t *testing.T) {
func TestGetAuctionHistory(t *testing.T) {
t.Parallel()
- _, err := Session[2].GetAuctionHistory("btcusd", url.Values{})
+ _, err := g.GetAuctionHistory(testCurrency, url.Values{})
if err != nil {
t.Error("Test Failed - GetAuctionHistory() error", err)
}
@@ -145,79 +90,87 @@ func TestGetAuctionHistory(t *testing.T) {
func TestNewOrder(t *testing.T) {
t.Parallel()
- _, err := Session[1].NewOrder("btcusd", 1, 4500, "buy", "exchange limit")
- if err == nil {
- t.Error("Test Failed - NewOrder() error", err)
- }
- _, err = Session[2].NewOrder("btcusd", 1, 4500, "buy", "exchange limit")
- if err == nil {
+ _, err := g.NewOrder(testCurrency, 1, 9000, "buy", "exchange limit")
+ if err != nil && mockTests {
t.Error("Test Failed - NewOrder() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - NewOrder() error cannot be nil")
}
}
func TestCancelExistingOrder(t *testing.T) {
t.Parallel()
- _, err := Session[1].CancelExistingOrder(1337)
- if err == nil {
+ _, err := g.CancelExistingOrder(265555413)
+ if err != nil && mockTests {
t.Error("Test Failed - CancelExistingOrder() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - CancelExistingOrder() error cannot be nil")
}
}
func TestCancelExistingOrders(t *testing.T) {
t.Parallel()
- _, err := Session[1].CancelExistingOrders(false)
- if err == nil {
- t.Error("Test Failed - CancelExistingOrders() error", err)
- }
- _, err = Session[2].CancelExistingOrders(true)
- if err == nil {
+ _, err := g.CancelExistingOrders(false)
+ if err != nil && mockTests {
t.Error("Test Failed - CancelExistingOrders() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - CancelExistingOrders() error cannot be nil")
}
}
func TestGetOrderStatus(t *testing.T) {
t.Parallel()
- _, err := Session[2].GetOrderStatus(1337)
- if err == nil {
+ _, err := g.GetOrderStatus(265563260)
+ if err != nil && mockTests {
t.Error("Test Failed - GetOrderStatus() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - GetOrderStatus() error cannot be nil")
}
}
func TestGetOrders(t *testing.T) {
t.Parallel()
- _, err := Session[1].GetOrders()
- if err == nil {
+ _, err := g.GetOrders()
+ if err != nil && mockTests {
t.Error("Test Failed - GetOrders() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - GetOrders() error cannot be nil")
}
}
func TestGetTradeHistory(t *testing.T) {
t.Parallel()
- _, err := Session[1].GetTradeHistory("btcusd", 0)
- if err == nil {
+ _, err := g.GetTradeHistory(testCurrency, 0)
+ if err != nil && mockTests {
t.Error("Test Failed - GetTradeHistory() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - GetTradeHistory() error cannot be nil")
}
}
func TestGetTradeVolume(t *testing.T) {
t.Parallel()
- _, err := Session[2].GetTradeVolume()
- if err == nil {
+ _, err := g.GetTradeVolume()
+ if err != nil && mockTests {
t.Error("Test Failed - GetTradeVolume() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - GetTradeVolume() error cannot be nil")
}
}
func TestGetBalances(t *testing.T) {
t.Parallel()
- _, err := Session[1].GetBalances()
- if err == nil {
+ _, err := g.GetBalances()
+ if err != nil && mockTests {
t.Error("Test Failed - GetBalances() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - GetBalances() error cannot be nil")
}
}
func TestGetCryptoDepositAddress(t *testing.T) {
t.Parallel()
- _, err := Session[1].GetCryptoDepositAddress("LOL123", "btc")
+ _, err := g.GetCryptoDepositAddress("LOL123", "btc")
if err == nil {
t.Error("Test Failed - GetCryptoDepositAddress() error", err)
}
@@ -225,7 +178,7 @@ func TestGetCryptoDepositAddress(t *testing.T) {
func TestWithdrawCrypto(t *testing.T) {
t.Parallel()
- _, err := Session[1].WithdrawCrypto("LOL123", "btc", 1)
+ _, err := g.WithdrawCrypto("LOL123", "btc", 1)
if err == nil {
t.Error("Test Failed - WithdrawCrypto() error", err)
}
@@ -233,9 +186,11 @@ func TestWithdrawCrypto(t *testing.T) {
func TestPostHeartbeat(t *testing.T) {
t.Parallel()
- _, err := Session[2].PostHeartbeat()
- if err == nil {
+ _, err := g.PostHeartbeat()
+ if err != nil && mockTests {
t.Error("Test Failed - PostHeartbeat() error", err)
+ } else if err == nil && !mockTests {
+ t.Error("Test Failed - PostHeartbeat() error cannot be nil")
}
}
@@ -254,61 +209,75 @@ func setFeeBuilder() *exchange.FeeBuilder {
// TestGetFeeByTypeOfflineTradeFee logic test
func TestGetFeeByTypeOfflineTradeFee(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
+ t.Parallel()
var feeBuilder = setFeeBuilder()
- Session[1].GetFeeByType(feeBuilder)
- if apiKey1 == "" || apiSecret1 == "" {
+ g.GetFeeByType(feeBuilder)
+
+ if !areTestAPIKeysSet() {
if feeBuilder.FeeType != exchange.OfflineTradeFee {
- t.Errorf("Expected %v, received %v", exchange.OfflineTradeFee, feeBuilder.FeeType)
+ t.Errorf("Expected %v, received %v",
+ exchange.OfflineTradeFee,
+ feeBuilder.FeeType)
}
} else {
if feeBuilder.FeeType != exchange.CryptocurrencyTradeFee {
- t.Errorf("Expected %v, received %v", exchange.CryptocurrencyTradeFee, feeBuilder.FeeType)
+ t.Errorf("Expected %v, received %v",
+ exchange.CryptocurrencyTradeFee,
+ feeBuilder.FeeType)
}
}
}
func TestGetFee(t *testing.T) {
+ t.Parallel()
var feeBuilder = setFeeBuilder()
- if apiKey1 != "" && apiSecret1 != "" {
+ if areTestAPIKeysSet() || mockTests {
// CryptocurrencyTradeFee Basic
- if resp, err := Session[1].GetFee(feeBuilder); resp != float64(0.01) || err != nil {
+ if resp, err := g.GetFee(feeBuilder); resp != float64(0.0035) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0.0035),
+ resp)
t.Error(err)
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0.01), resp)
}
// CryptocurrencyTradeFee High quantity
feeBuilder = setFeeBuilder()
feeBuilder.Amount = 1000
feeBuilder.PurchasePrice = 1000
- if resp, err := Session[1].GetFee(feeBuilder); resp != float64(100) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(100), resp)
+ if resp, err := g.GetFee(feeBuilder); resp != float64(3500) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(3500),
+ resp)
t.Error(err)
}
// CryptocurrencyTradeFee IsMaker
feeBuilder = setFeeBuilder()
feeBuilder.IsMaker = true
- if resp, err := Session[1].GetFee(feeBuilder); resp != float64(0.01) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0.01), resp)
+ if resp, err := g.GetFee(feeBuilder); resp != float64(0.001) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0.001),
+ resp)
t.Error(err)
}
// CryptocurrencyTradeFee Negative purchase price
feeBuilder = setFeeBuilder()
feeBuilder.PurchasePrice = -1000
- if resp, err := Session[1].GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ if resp, err := g.GetFee(feeBuilder); resp != float64(0) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
}
// CryptocurrencyWithdrawalFee Basic
feeBuilder = setFeeBuilder()
feeBuilder.FeeType = exchange.CryptocurrencyWithdrawalFee
- if resp, err := Session[1].GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ if resp, err := g.GetFee(feeBuilder); resp != float64(0) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
@@ -316,24 +285,30 @@ func TestGetFee(t *testing.T) {
feeBuilder = setFeeBuilder()
feeBuilder.Pair.Base = currency.NewCode("hello")
feeBuilder.FeeType = exchange.CryptocurrencyWithdrawalFee
- if resp, err := Session[1].GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ if resp, err := g.GetFee(feeBuilder); resp != float64(0) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
// CyptocurrencyDepositFee Basic
feeBuilder = setFeeBuilder()
feeBuilder.FeeType = exchange.CyptocurrencyDepositFee
- if resp, err := Session[1].GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ if resp, err := g.GetFee(feeBuilder); resp != float64(0) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
// InternationalBankDepositFee Basic
feeBuilder = setFeeBuilder()
feeBuilder.FeeType = exchange.InternationalBankDepositFee
- if resp, err := Session[1].GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ if resp, err := g.GetFee(feeBuilder); resp != float64(0) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
@@ -341,78 +316,82 @@ func TestGetFee(t *testing.T) {
feeBuilder = setFeeBuilder()
feeBuilder.FeeType = exchange.InternationalBankWithdrawalFee
feeBuilder.FiatCurrency = currency.USD
- if resp, err := Session[1].GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ if resp, err := g.GetFee(feeBuilder); resp != float64(0) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0),
+ resp)
t.Error(err)
}
}
func TestFormatWithdrawPermissions(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
-
- expectedResult := exchange.AutoWithdrawCryptoWithAPIPermissionText + " & " + exchange.AutoWithdrawCryptoWithSetupText + " & " + exchange.WithdrawFiatViaWebsiteOnlyText
+ t.Parallel()
+ expectedResult := exchange.AutoWithdrawCryptoWithAPIPermissionText +
+ " & " +
+ exchange.AutoWithdrawCryptoWithSetupText +
+ " & " +
+ exchange.WithdrawFiatViaWebsiteOnlyText
- withdrawPermissions := Session[1].FormatWithdrawPermissions()
+ withdrawPermissions := g.FormatWithdrawPermissions()
if withdrawPermissions != expectedResult {
- t.Errorf("Expected: %s, Received: %s", expectedResult, withdrawPermissions)
+ t.Errorf("Expected: %s, Received: %s",
+ expectedResult,
+ withdrawPermissions)
}
}
func TestGetActiveOrders(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
-
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
- OrderType: exchange.AnyOrderType,
- Currencies: []currency.Pair{currency.NewPair(currency.LTC, currency.BTC)},
+ OrderType: exchange.AnyOrderType,
+ Currencies: []currency.Pair{
+ currency.NewPair(currency.LTC, currency.BTC),
+ },
}
- _, err := Session[1].GetActiveOrders(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
+ _, err := g.GetActiveOrders(&getOrdersRequest)
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not get open orders: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Could not get open orders: %s", err)
}
}
func TestGetOrderHistory(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
-
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
Currencies: []currency.Pair{currency.NewPair(currency.LTC, currency.BTC)},
}
- _, err := Session[1].GetOrderHistory(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
+ _, err := g.GetOrderHistory(&getOrdersRequest)
+ switch {
+ case areTestAPIKeysSet() && err != nil:
t.Errorf("Could not get order history: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case err != nil && mockTests:
+ t.Errorf("Could not get order history: %s", err)
}
}
// Any tests below this line have the ability to impact your orders on the exchange. Enable canManipulateRealOrders to run them
// ----------------------------------------------------------------------------------------------------------------------------
func areTestAPIKeysSet() bool {
- if Session[1].APIKey != "" && Session[1].APIKey != "Key" &&
- Session[1].APISecret != "" && Session[1].APISecret != "Secret" {
+ if g.APIKey != "" && g.APIKey != "Key" &&
+ g.APISecret != "" && g.APISecret != "Secret" {
return true
}
return false
}
func TestSubmitOrder(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -421,47 +400,47 @@ func TestSubmitOrder(t *testing.T) {
Base: currency.LTC,
Quote: currency.BTC,
}
- response, err := Session[1].SubmitOrder(p, exchange.BuyOrderSide, exchange.MarketOrderType, 1, 10, "1234234")
- if areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced) {
+
+ response, err := g.SubmitOrder(p,
+ exchange.BuyOrderSide,
+ exchange.LimitOrderType,
+ 1,
+ 10,
+ "1234234")
+ switch {
+ case areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced):
t.Errorf("Order failed to be placed: %v", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Order failed to be placed: %v", err)
}
}
func TestCancelExchangeOrder(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
- currencyPair := currency.NewPair(currency.LTC, currency.BTC)
-
var orderCancellation = &exchange.OrderCancellation{
- OrderID: "1",
- WalletAddress: "1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB",
- AccountID: "1",
- CurrencyPair: currencyPair,
+ OrderID: "266029865",
}
- err := Session[1].CancelOrder(orderCancellation)
- if !areTestAPIKeysSet() && err == nil {
+ err := g.CancelOrder(orderCancellation)
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil:
+ t.Errorf("Could not cancel orders: %v", err)
+ case err != nil && mockTests:
t.Errorf("Could not cancel orders: %v", err)
}
}
func TestCancelAllExchangeOrders(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -474,12 +453,13 @@ func TestCancelAllExchangeOrders(t *testing.T) {
CurrencyPair: currencyPair,
}
- resp, err := Session[1].CancelAllOrders(orderCancellation)
-
- if !areTestAPIKeysSet() && err == nil {
+ resp, err := g.CancelAllOrders(orderCancellation)
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil:
+ t.Errorf("Could not cancel orders: %v", err)
+ case mockTests && err != nil:
t.Errorf("Could not cancel orders: %v", err)
}
@@ -489,16 +469,15 @@ func TestCancelAllExchangeOrders(t *testing.T) {
}
func TestModifyOrder(t *testing.T) {
- _, err := Session[1].ModifyOrder(&exchange.ModifyOrder{})
+ t.Parallel()
+ _, err := g.ModifyOrder(&exchange.ModifyOrder{})
if err == nil {
t.Error("Test failed - ModifyOrder() error")
}
}
func TestWithdraw(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
+ t.Parallel()
var withdrawCryptoRequest = exchange.WithdrawRequest{
Amount: 100,
Currency: currency.BTC,
@@ -506,55 +485,55 @@ func TestWithdraw(t *testing.T) {
Description: "WITHDRAW IT ALL",
}
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
- _, err := Session[1].WithdrawCryptocurrencyFunds(&withdrawCryptoRequest)
+ _, err := g.WithdrawCryptocurrencyFunds(&withdrawCryptoRequest)
if !areTestAPIKeysSet() && err == nil {
t.Error("Expecting an error when no keys are set")
}
- if areTestAPIKeysSet() && err != nil {
+ if areTestAPIKeysSet() && err != nil && !mockTests {
+ t.Errorf("Withdraw failed to be placed: %v", err)
+ }
+ if areTestAPIKeysSet() && err == nil && mockTests {
t.Errorf("Withdraw failed to be placed: %v", err)
}
}
func TestWithdrawFiat(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
var withdrawFiatRequest = exchange.WithdrawRequest{}
-
- _, err := Session[1].WithdrawFiatFunds(&withdrawFiatRequest)
+ _, err := g.WithdrawFiatFunds(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
- t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
+ t.Errorf("Expected '%v', received: '%v'",
+ common.ErrFunctionNotSupported,
+ err)
}
}
func TestWithdrawInternationalBank(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
var withdrawFiatRequest = exchange.WithdrawRequest{}
-
- _, err := Session[1].WithdrawFiatFundsToInternationalBank(&withdrawFiatRequest)
+ _, err := g.WithdrawFiatFundsToInternationalBank(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
- t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
+ t.Errorf("Expected '%v', received: '%v'",
+ common.ErrFunctionNotSupported,
+ err)
}
}
func TestGetDepositAddress(t *testing.T) {
- _, err := Session[1].GetDepositAddress(currency.BTC, "")
+ t.Parallel()
+ _, err := g.GetDepositAddress(currency.BTC, "")
if err == nil {
t.Error("Test Failed - GetDepositAddress error cannot be nil")
}
@@ -562,13 +541,12 @@ func TestGetDepositAddress(t *testing.T) {
// TestWsAuth dials websocket, sends login request.
func TestWsAuth(t *testing.T) {
- TestAddSession(t)
- TestSetDefaults(t)
- TestSetup(t)
- g := Session[1]
+ t.Parallel()
g.WebsocketURL = geminiWebsocketSandboxEndpoint
- if !g.Websocket.IsEnabled() && !g.AuthenticatedWebsocketAPISupport || !areTestAPIKeysSet() {
+ if !g.Websocket.IsEnabled() &&
+ !g.AuthenticatedWebsocketAPISupport ||
+ !areTestAPIKeysSet() {
t.Skip(wshandler.WebsocketNotEnabled)
}
var dialer websocket.Dialer
diff --git a/exchanges/gemini/gemini_types.go b/exchanges/gemini/gemini_types.go
index 206c9cbe0f2..ebe461ec624 100644
--- a/exchanges/gemini/gemini_types.go
+++ b/exchanges/gemini/gemini_types.go
@@ -145,16 +145,23 @@ type TradeVolume struct {
SellTakerCount float64 `json:"sell_taker_count"`
}
-// NotionalVolume api call for fees
+// NotionalVolume api call for fees, all return fee amounts are in basis points
type NotionalVolume struct {
- MakerFee int64 `json:"maker_fee_bps"`
- TakerFee int64 `json:"taker_fee_bps"`
- AuctionFee int64 `json:"auction_fee_bps"`
+ APIAuctionFeeBPS int64 `json:"api_auction_fee_bps"`
+ APIMakerFeeBPS int64 `json:"api_maker_fee_bps"`
+ APITakerFeeBPS int64 `json:"api_taker_fee_bps"`
+ BlockMakerFeeBPS int64 `json:"block_maker_fee_bps"`
+ BlockTakerFeeBPS int64 `json:"block_taker_fee_bps"`
+ FixAuctionFeeBPS int64 `json:"fix_auction_fee_bps"`
+ FixMakerFeeBPS int64 `json:"fix_maker_fee_bps"`
+ FixTakerFeeBPS int64 `json:"fix_taker_fee_bps"`
+ OneDayNotionalVolumes []OneDayNotionalVolume `json:"notional_1d_volume"`
ThirtyDayVolume float64 `json:"notional_30d_volume"`
+ WebAuctionFeeBPS int64 `json:"web_auction_fee_bps"`
+ WebMakerFeeBPS int64 `json:"web_maker_fee_bps"`
+ WebTakerFeeBPS int64 `json:"web_taker_fee_bps"`
LastedUpdated int64 `json:"last_updated_ms"`
- AccountID int64 `json:"account_id"`
Date string `json:"date"`
- OneDayNotionalVolumes []OneDayNotionalVolume `json:"notional_1d_volume"`
}
// OneDayNotionalVolume Contains the notioanl volume for a single day
diff --git a/exchanges/gemini/gemini_wrapper.go b/exchanges/gemini/gemini_wrapper.go
index 0c7671780a5..74c576a7808 100644
--- a/exchanges/gemini/gemini_wrapper.go
+++ b/exchanges/gemini/gemini_wrapper.go
@@ -161,11 +161,17 @@ func (g *Gemini) GetExchangeHistory(p currency.Pair, assetType string) ([]exchan
// SubmitOrder submits a new order
func (g *Gemini) SubmitOrder(p currency.Pair, side exchange.OrderSide, orderType exchange.OrderType, amount, price float64, _ string) (exchange.SubmitOrderResponse, error) {
var submitOrderResponse exchange.SubmitOrderResponse
+ p = exchange.FormatExchangeCurrency(g.Name, p)
+
+ if orderType != exchange.LimitOrderType {
+ return submitOrderResponse, errors.New("only limit orders are enabled through this API")
+ }
+
response, err := g.NewOrder(p.String(),
amount,
price,
side.ToString(),
- orderType.ToString())
+ "exchange limit")
if response > 0 {
submitOrderResponse.OrderID = fmt.Sprintf("%v", response)
diff --git a/exchanges/hitbtc/hitbtc.go b/exchanges/hitbtc/hitbtc.go
index 4b9b791f9df..2b015163a9d 100644
--- a/exchanges/hitbtc/hitbtc.go
+++ b/exchanges/hitbtc/hitbtc.go
@@ -622,7 +622,16 @@ func (h *HitBTC) TransferBalance(currency, from, to string, amount float64) (boo
// SendHTTPRequest sends an unauthenticated HTTP request
func (h *HitBTC) SendHTTPRequest(path string, result interface{}) error {
- return h.SendPayload(http.MethodGet, path, nil, nil, result, false, false, h.Verbose, h.HTTPDebugging)
+ return h.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ h.Verbose,
+ h.HTTPDebugging,
+ h.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated http request
@@ -644,7 +653,8 @@ func (h *HitBTC) SendAuthenticatedHTTPRequest(method, endpoint string, values ur
true,
false,
h.Verbose,
- h.HTTPDebugging)
+ h.HTTPDebugging,
+ h.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/huobi/huobi.go b/exchanges/huobi/huobi.go
index 19351e0f00f..6a5afa82544 100644
--- a/exchanges/huobi/huobi.go
+++ b/exchanges/huobi/huobi.go
@@ -895,7 +895,16 @@ func (h *HUOBI) CancelWithdraw(withdrawID int64) (int64, error) {
// SendHTTPRequest sends an unauthenticated HTTP request
func (h *HUOBI) SendHTTPRequest(path string, result interface{}) error {
- return h.SendPayload(http.MethodGet, path, nil, nil, result, false, false, h.Verbose, h.HTTPDebugging)
+ return h.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ h.Verbose,
+ h.HTTPDebugging,
+ h.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends authenticated requests to the HUOBI API
@@ -972,7 +981,16 @@ func (h *HUOBI) SendAuthenticatedHTTPRequest(method, endpoint string, values url
body = encoded
}
- return h.SendPayload(method, urlPath, headers, bytes.NewReader(body), result, true, false, h.Verbose, h.HTTPDebugging)
+ return h.SendPayload(method,
+ urlPath,
+ headers,
+ bytes.NewReader(body),
+ result,
+ true,
+ false,
+ h.Verbose,
+ h.HTTPDebugging,
+ h.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/huobihadax/huobihadax.go b/exchanges/huobihadax/huobihadax.go
index 1b6120cdb0a..f312fa721be 100644
--- a/exchanges/huobihadax/huobihadax.go
+++ b/exchanges/huobihadax/huobihadax.go
@@ -890,7 +890,16 @@ func (h *HUOBIHADAX) CancelWithdraw(withdrawID int64) (int64, error) {
// SendHTTPRequest sends an unauthenticated HTTP request
func (h *HUOBIHADAX) SendHTTPRequest(path string, result interface{}) error {
- return h.SendPayload(http.MethodGet, path, nil, nil, result, false, false, h.Verbose, h.HTTPDebugging)
+ return h.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ h.Verbose,
+ h.HTTPDebugging,
+ h.HTTPRecording)
}
// SendAuthenticatedHTTPPostRequest sends authenticated requests to the HUOBI API
@@ -917,7 +926,16 @@ func (h *HUOBIHADAX) SendAuthenticatedHTTPPostRequest(method, endpoint, postBody
signatureParams.Set("Signature", common.Base64Encode(hmac))
urlPath := common.EncodeURLValues(fmt.Sprintf("%s%s", h.APIUrl, endpoint),
signatureParams)
- return h.SendPayload(method, urlPath, headers, bytes.NewBufferString(postBodyValues), result, true, false, h.Verbose, h.HTTPDebugging)
+ return h.SendPayload(method,
+ urlPath,
+ headers,
+ bytes.NewBufferString(postBodyValues),
+ result,
+ true,
+ false,
+ h.Verbose,
+ h.HTTPDebugging,
+ h.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends authenticated requests to the HUOBI API
@@ -943,7 +961,16 @@ func (h *HUOBIHADAX) SendAuthenticatedHTTPRequest(method, endpoint string, value
urlPath := common.EncodeURLValues(fmt.Sprintf("%s%s", h.APIUrl, endpoint),
values)
- return h.SendPayload(method, urlPath, headers, bytes.NewBufferString(""), result, true, false, h.Verbose, h.HTTPDebugging)
+ return h.SendPayload(method,
+ urlPath,
+ headers,
+ bytes.NewBufferString(""),
+ result,
+ true,
+ false,
+ h.Verbose,
+ h.HTTPDebugging,
+ h.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/itbit/itbit.go b/exchanges/itbit/itbit.go
index 1a1019df4ee..a7888d8b350 100644
--- a/exchanges/itbit/itbit.go
+++ b/exchanges/itbit/itbit.go
@@ -345,7 +345,16 @@ func (i *ItBit) WalletTransfer(walletID, sourceWallet, destWallet string, amount
// SendHTTPRequest sends an unauthenticated HTTP request
func (i *ItBit) SendHTTPRequest(path string, result interface{}) error {
- return i.SendPayload(http.MethodGet, path, nil, nil, result, false, false, i.Verbose, i.HTTPDebugging)
+ return i.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ i.Verbose,
+ i.HTTPDebugging,
+ i.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated request to itBit
@@ -405,7 +414,16 @@ func (i *ItBit) SendAuthenticatedHTTPRequest(method, path string, params map[str
RequestID string `json:"requestId"`
}{}
- err = i.SendPayload(method, urlPath, headers, bytes.NewBuffer(PayloadJSON), &intermediary, true, true, i.Verbose, i.HTTPDebugging)
+ err = i.SendPayload(method,
+ urlPath,
+ headers,
+ bytes.NewBuffer(PayloadJSON),
+ &intermediary,
+ true,
+ true,
+ i.Verbose,
+ i.HTTPDebugging,
+ i.HTTPRecording)
if err != nil {
return err
}
diff --git a/exchanges/kraken/kraken.go b/exchanges/kraken/kraken.go
index 539ba36a9c5..9a7737c7578 100644
--- a/exchanges/kraken/kraken.go
+++ b/exchanges/kraken/kraken.go
@@ -952,7 +952,16 @@ func GetError(apiErrors []string) error {
// SendHTTPRequest sends an unauthenticated HTTP requests
func (k *Kraken) SendHTTPRequest(path string, result interface{}) error {
- return k.SendPayload(http.MethodGet, path, nil, nil, result, false, false, k.Verbose, k.HTTPDebugging)
+ return k.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ k.Verbose,
+ k.HTTPDebugging,
+ k.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated HTTP request
@@ -996,7 +1005,8 @@ func (k *Kraken) SendAuthenticatedHTTPRequest(method string, params url.Values,
true,
true,
k.Verbose,
- k.HTTPDebugging)
+ k.HTTPDebugging,
+ k.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/lakebtc/lakebtc.go b/exchanges/lakebtc/lakebtc.go
index afc61cee8dd..14ec9bb63b1 100644
--- a/exchanges/lakebtc/lakebtc.go
+++ b/exchanges/lakebtc/lakebtc.go
@@ -360,7 +360,16 @@ func (l *LakeBTC) CreateWithdraw(amount float64, accountID string) (Withdraw, er
// SendHTTPRequest sends an unauthenticated http request
func (l *LakeBTC) SendHTTPRequest(path string, result interface{}) error {
- return l.SendPayload(http.MethodGet, path, nil, nil, result, false, false, l.Verbose, l.HTTPDebugging)
+ return l.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ l.Verbose,
+ l.HTTPDebugging,
+ l.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an autheticated HTTP request to a LakeBTC
@@ -393,7 +402,16 @@ func (l *LakeBTC) SendAuthenticatedHTTPRequest(method, params string, result int
headers["Authorization"] = "Basic " + common.Base64Encode([]byte(l.APIKey+":"+common.HexEncodeToString(hmac)))
headers["Content-Type"] = "application/json-rpc"
- return l.SendPayload(http.MethodPost, l.APIUrl, headers, strings.NewReader(string(data)), result, true, true, l.Verbose, l.HTTPDebugging)
+ return l.SendPayload(http.MethodPost,
+ l.APIUrl,
+ headers,
+ strings.NewReader(string(data)),
+ result,
+ true,
+ true,
+ l.Verbose,
+ l.HTTPDebugging,
+ l.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/lbank/lbank.go b/exchanges/lbank/lbank.go
index afab0f2f497..07f95f81349 100644
--- a/exchanges/lbank/lbank.go
+++ b/exchanges/lbank/lbank.go
@@ -551,7 +551,16 @@ func ErrorCapture(code int64) error {
// SendHTTPRequest sends an unauthenticated HTTP request
func (l *Lbank) SendHTTPRequest(path string, result interface{}) error {
- return l.SendPayload(http.MethodGet, path, nil, nil, &result, false, false, l.Verbose, l.HTTPDebugging)
+ return l.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ &result,
+ false,
+ false,
+ l.Verbose,
+ l.HTTPDebugging,
+ l.HTTPRecording)
}
func (l *Lbank) loadPrivKey() error {
@@ -618,5 +627,6 @@ func (l *Lbank) SendAuthHTTPRequest(method, endpoint string, vals url.Values, re
true,
false,
l.Verbose,
- l.HTTPDebugging)
+ l.HTTPDebugging,
+ l.HTTPRecording)
}
diff --git a/exchanges/localbitcoins/localbitcoins.go b/exchanges/localbitcoins/localbitcoins.go
index e9d0a581c04..6f323e03926 100644
--- a/exchanges/localbitcoins/localbitcoins.go
+++ b/exchanges/localbitcoins/localbitcoins.go
@@ -1,6 +1,7 @@
package localbitcoins
import (
+ "bytes"
"errors"
"fmt"
"net/http"
@@ -204,16 +205,36 @@ func (l *LocalBitcoins) GetAccountInformation(username string, self bool) (Accou
// adID - [optional] string if omitted returns all ads
func (l *LocalBitcoins) Getads(args ...string) (AdData, error) {
var resp struct {
- Data AdData `json:"data"`
+ Data AdData `json:"data"`
+ Error struct {
+ Message string `json:"message"`
+ Code int `json:"error_code"`
+ } `json:"error"`
}
+ var err error
if len(args) == 0 {
- return resp.Data, l.SendAuthenticatedHTTPRequest(http.MethodGet, localbitcoinsAPIAds, nil, &resp)
+ err = l.SendAuthenticatedHTTPRequest(http.MethodGet,
+ localbitcoinsAPIAds,
+ nil,
+ &resp)
+ } else {
+ params := url.Values{"ads": {strings.Join(args, ",")}}
+
+ err = l.SendAuthenticatedHTTPRequest(http.MethodGet,
+ localbitcoinsAPIAdGet,
+ params,
+ &resp)
}
- params := url.Values{"ads": {strings.Join(args, ",")}}
+ if err != nil {
+ return resp.Data, err
+ }
- return resp.Data, l.SendAuthenticatedHTTPRequest(http.MethodGet, localbitcoinsAPIAdGet, params, &resp)
+ if resp.Error.Message != "" {
+ return resp.Data, errors.New(resp.Error.Message)
+ }
+ return resp.Data, nil
}
// EditAd updates set advertisements
@@ -222,12 +243,27 @@ func (l *LocalBitcoins) Getads(args ...string) (AdData, error) {
// adID - string for the ad you already created
// TODO
func (l *LocalBitcoins) EditAd(_ *AdEdit, adID string) error {
- type response struct {
- Data AdData `json:"data"`
+ resp := struct {
+ Data AdData `json:"data"`
+ Error struct {
+ Message string `json:"message"`
+ Code int `json:"error_code"`
+ }
+ }{}
+
+ err := l.SendAuthenticatedHTTPRequest(http.MethodPost,
+ localbitcoinsAPIAdEdit+adID+"/",
+ nil,
+ &resp)
+ if err != nil {
+ return err
}
- resp := response{}
- return l.SendAuthenticatedHTTPRequest(http.MethodPost, localbitcoinsAPIAdEdit+adID+"/", nil, &resp)
+ if resp.Error.Message != "" {
+ return errors.New(resp.Error.Message)
+ }
+
+ return nil
}
// CreateAd creates a new advertisement
@@ -254,7 +290,26 @@ func (l *LocalBitcoins) UpdatePriceEquation(adID string) error {
// adID - string of specific ad identification
// TODO
func (l *LocalBitcoins) DeleteAd(adID string) error {
- return l.SendAuthenticatedHTTPRequest(http.MethodPost, localbitcoinsAPIDeleteAd+adID, nil, nil)
+ resp := struct {
+ Error struct {
+ Message string `json:"message"`
+ Code int `json:"error_code"`
+ } `json:"error"`
+ }{}
+
+ err := l.SendAuthenticatedHTTPRequest(http.MethodPost,
+ localbitcoinsAPIDeleteAd+adID+"/",
+ nil,
+ &resp)
+ if err != nil {
+ return err
+ }
+
+ if resp.Error.Message != "" {
+ return errors.New(resp.Error.Message)
+ }
+
+ return nil
}
// ReleaseFunds releases Bitcoin trades specified by ID {contact_id}. If the
@@ -579,7 +634,7 @@ func (l *LocalBitcoins) GetWalletBalance() (WalletBalanceInfo, error) {
// On success, the response returns a message indicating success. It is highly
// recommended to minimize the lifetime of access tokens with the money
// permission. Use Logout() to make the current token expire instantly.
-func (l *LocalBitcoins) WalletSend(address string, amount float64, pin int64) (bool, error) {
+func (l *LocalBitcoins) WalletSend(address string, amount float64, pin int64) error {
values := url.Values{}
values.Set("address", address)
values.Set("amount", strconv.FormatFloat(amount, 'f', -1, 64))
@@ -590,23 +645,34 @@ func (l *LocalBitcoins) WalletSend(address string, amount float64, pin int64) (b
path = localbitcoinsAPIWalletSendPin
}
- type response struct {
+ resp := struct {
+ Error struct {
+ Message string `json:"message"`
+ Errors map[string]string `json:"errors"`
+ Code int `json:"error_code"`
+ } `json:"error"`
Data struct {
Message string `json:"message"`
} `json:"data"`
- }
+ }{}
- resp := response{}
err := l.SendAuthenticatedHTTPRequest(http.MethodPost, path, values, &resp)
if err != nil {
- return false, err
+ return err
}
if resp.Data.Message != "Money is being sent" {
- return false, errors.New("unable to send Bitcoins")
+ if len(resp.Error.Errors) != 0 {
+ var details string
+ for _, val := range resp.Error.Errors {
+ details += val
+ }
+ return errors.New(details)
+ }
+ return errors.New(resp.Data.Message)
}
- return true, nil
+ return nil
}
// GetWalletAddress returns an unused receiving address from the token owner's
@@ -728,7 +794,16 @@ func (l *LocalBitcoins) GetOrderbook(currency string) (Orderbook, error) {
// SendHTTPRequest sends an unauthenticated HTTP request
func (l *LocalBitcoins) SendHTTPRequest(path string, result interface{}) error {
- return l.SendPayload(http.MethodGet, path, nil, nil, result, false, false, l.Verbose, l.HTTPDebugging)
+ return l.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ l.Verbose,
+ l.HTTPDebugging,
+ l.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated HTTP request to
@@ -758,7 +833,16 @@ func (l *LocalBitcoins) SendAuthenticatedHTTPRequest(method, path string, params
path += "?" + encoded
}
- return l.SendPayload(method, l.APIUrl+path, headers, strings.NewReader(encoded), result, true, true, l.Verbose, l.HTTPDebugging)
+ return l.SendPayload(method,
+ l.APIUrl+path,
+ headers,
+ bytes.NewBufferString(encoded),
+ result,
+ true,
+ true,
+ l.Verbose,
+ l.HTTPDebugging,
+ l.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/localbitcoins/localbitcoins_live_test.go b/exchanges/localbitcoins/localbitcoins_live_test.go
new file mode 100644
index 00000000000..17365f9b6f9
--- /dev/null
+++ b/exchanges/localbitcoins/localbitcoins_live_test.go
@@ -0,0 +1,32 @@
+//+build mock_test_off
+
+// This will build if build tag mock_test_off is parsed and will do live testing
+// using all tests in (exchange)_test.go
+package localbitcoins
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+var mockTests = false
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ localbitcoinsConfig, err := cfg.GetExchangeConfig("LocalBitcoins")
+ if err != nil {
+ log.Fatal("Test Failed - LocalBitcoins Setup() init error", err)
+ }
+ localbitcoinsConfig.AuthenticatedAPISupport = true
+ localbitcoinsConfig.APIKey = apiKey
+ localbitcoinsConfig.APISecret = apiSecret
+ l.SetDefaults()
+ l.Setup(&localbitcoinsConfig)
+ log.Printf(sharedtestvalues.LiveTesting, l.GetName(), l.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/localbitcoins/localbitcoins_mock_test.go b/exchanges/localbitcoins/localbitcoins_mock_test.go
new file mode 100644
index 00000000000..39de1ed425c
--- /dev/null
+++ b/exchanges/localbitcoins/localbitcoins_mock_test.go
@@ -0,0 +1,44 @@
+//+build !mock_test_off
+
+// This will build if build tag mock_test_off is not parsed and will try to mock
+// all tests in _test.go
+package localbitcoins
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/mock"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+const mockfile = "../../testdata/http_mock/localbitcoins/localbitcoins.json"
+
+var mockTests = true
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ localbitcoinsConfig, err := cfg.GetExchangeConfig("LocalBitcoins")
+ if err != nil {
+ log.Fatal("Test Failed - Localbitcoins Setup() init error", err)
+ }
+ localbitcoinsConfig.AuthenticatedAPISupport = true
+ localbitcoinsConfig.APIKey = apiKey
+ localbitcoinsConfig.APISecret = apiSecret
+ l.SetDefaults()
+ l.Setup(&localbitcoinsConfig)
+
+ serverDetails, newClient, err := mock.NewVCRServer(mockfile)
+ if err != nil {
+ log.Fatalf("Test Failed - Mock server error %s", err)
+ }
+
+ l.HTTPClient = newClient
+ l.APIUrl = serverDetails
+
+ log.Printf(sharedtestvalues.MockTesting, l.GetName(), l.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/localbitcoins/localbitcoins_test.go b/exchanges/localbitcoins/localbitcoins_test.go
index 03bcb886189..34eab667569 100644
--- a/exchanges/localbitcoins/localbitcoins_test.go
+++ b/exchanges/localbitcoins/localbitcoins_test.go
@@ -4,13 +4,10 @@ import (
"testing"
"github.com/thrasher-corp/gocryptotrader/common"
- "github.com/thrasher-corp/gocryptotrader/config"
"github.com/thrasher-corp/gocryptotrader/currency"
exchange "github.com/thrasher-corp/gocryptotrader/exchanges"
)
-var l LocalBitcoins
-
// Please supply your own APIKEYS here for due diligence testing
const (
@@ -19,26 +16,11 @@ const (
canManipulateRealOrders = false
)
-func TestSetDefaults(t *testing.T) {
- l.SetDefaults()
-}
-
-func TestSetup(t *testing.T) {
- cfg := config.GetConfig()
- cfg.LoadConfig("../../testdata/configtest.json")
- localbitcoinsConfig, err := cfg.GetExchangeConfig("LocalBitcoins")
- if err != nil {
- t.Error("Test Failed - LakeBTC Setup() init error")
- }
- localbitcoinsConfig.AuthenticatedAPISupport = true
- localbitcoinsConfig.APIKey = apiKey
- localbitcoinsConfig.APISecret = apiSecret
-
- l.Setup(&localbitcoinsConfig)
-}
+var l LocalBitcoins
func TestGetTicker(t *testing.T) {
t.Parallel()
+
_, err := l.GetTicker()
if err != nil {
t.Errorf("Test failed - GetTicker() returned: %s", err)
@@ -47,6 +29,7 @@ func TestGetTicker(t *testing.T) {
func TestGetTradableCurrencies(t *testing.T) {
t.Parallel()
+
_, err := l.GetTradableCurrencies()
if err != nil {
t.Errorf("Test failed - GetTradableCurrencies() returned: %s", err)
@@ -55,43 +38,44 @@ func TestGetTradableCurrencies(t *testing.T) {
func TestGetAccountInfo(t *testing.T) {
t.Parallel()
- if l.APIKey == "" || l.APISecret == "" {
- t.Skip()
- }
+
_, err := l.GetAccountInformation("", true)
- if err == nil {
- t.Error("Test Failed - GetAccountInformation() error", err)
- }
- _, err = l.GetAccountInformation("bitcoinbaron", false)
- if err != nil {
- t.Error("Test Failed - GetAccountInformation() error", err)
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Errorf("Could not get AccountInformation: %s", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Could not get AccountInformation: %s", err)
}
}
func TestGetads(t *testing.T) {
t.Parallel()
- if l.APIKey == "" || l.APISecret == "" {
- t.Skip()
- }
+
_, err := l.Getads("")
- if err == nil {
- t.Error("Test Failed - Getads() - Full list, error", err)
- }
- _, err = l.Getads("1337")
- if err == nil {
- t.Error("Test Failed - Getads() error", err)
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Errorf("Could not get ads: %s", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err == nil:
+ t.Error("Expecting error until QA pass")
}
}
func TestEditAd(t *testing.T) {
t.Parallel()
- if l.APIKey == "" || l.APISecret == "" {
- t.Skip()
- }
- edit := AdEdit{}
+
+ var edit AdEdit
err := l.EditAd(&edit, "1337")
- if err == nil {
- t.Error("Test Failed - EditAd() error", err)
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Errorf("Could not edit order: %s", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err == nil:
+ t.Error("Expecting error until QA pass")
}
}
@@ -110,6 +94,7 @@ func setFeeBuilder() *exchange.FeeBuilder {
// TestGetFeeByTypeOfflineTradeFee logic test
func TestGetFeeByTypeOfflineTradeFee(t *testing.T) {
+ t.Parallel()
var feeBuilder = setFeeBuilder()
l.GetFeeByType(feeBuilder)
if apiKey == "" || apiSecret == "" {
@@ -124,7 +109,7 @@ func TestGetFeeByTypeOfflineTradeFee(t *testing.T) {
}
func TestGetFee(t *testing.T) {
- l.SetDefaults()
+ t.Parallel()
var feeBuilder = setFeeBuilder()
// CryptocurrencyTradeFee Basic
if resp, err := l.GetFee(feeBuilder); resp != float64(0) || err != nil {
@@ -200,45 +185,53 @@ func TestGetFee(t *testing.T) {
}
func TestFormatWithdrawPermissions(t *testing.T) {
- l.SetDefaults()
- expectedResult := exchange.AutoWithdrawCryptoText + " & " + exchange.WithdrawFiatViaWebsiteOnlyText
+ t.Parallel()
- withdrawPermissions := l.FormatWithdrawPermissions()
+ expectedResult := exchange.AutoWithdrawCryptoText +
+ " & " +
+ exchange.WithdrawFiatViaWebsiteOnlyText
+ withdrawPermissions := l.FormatWithdrawPermissions()
if withdrawPermissions != expectedResult {
- t.Errorf("Expected: %s, Received: %s", expectedResult, withdrawPermissions)
+ t.Errorf("Expected: %s, Received: %s",
+ expectedResult,
+ withdrawPermissions)
}
}
func TestGetActiveOrders(t *testing.T) {
- l.SetDefaults()
- TestSetup(t)
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
}
_, err := l.GetActiveOrders(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
- t.Errorf("Could not get open orders: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Errorf("Could not get active orders: %s", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Could not get active orders: %s", err)
}
}
func TestGetOrderHistory(t *testing.T) {
- l.SetDefaults()
- TestSetup(t)
+ t.Parallel()
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
}
_, err := l.GetOrderHistory(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not get order history: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Could not get order history: %s", err)
}
}
@@ -253,10 +246,9 @@ func areTestAPIKeysSet() bool {
}
func TestSubmitOrder(t *testing.T) {
- l.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -266,62 +258,62 @@ func TestSubmitOrder(t *testing.T) {
Quote: currency.EUR,
}
response, err := l.SubmitOrder(p, exchange.BuyOrderSide, exchange.MarketOrderType, 1, 10, "hi")
- if areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced) {
+ switch {
+ case areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced) && !mockTests:
t.Errorf("Order failed to be placed: %v", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err == nil:
+ t.Error("Expecting an error until QA pass")
}
}
func TestCancelExchangeOrder(t *testing.T) {
- l.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
- currencyPair := currency.NewPair(currency.LTC, currency.BTC)
-
var orderCancellation = &exchange.OrderCancellation{
OrderID: "1",
WalletAddress: "1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB",
AccountID: "1",
- CurrencyPair: currencyPair,
+ CurrencyPair: currency.NewPair(currency.LTC, currency.BTC),
}
err := l.CancelOrder(orderCancellation)
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Could not cancel orders: %v", err)
+ case mockTests && err == nil:
+ t.Error("Expecting an error until QA pass")
}
}
func TestCancelAllExchangeOrders(t *testing.T) {
- l.SetDefaults()
- TestSetup(t)
+ t.Parallel()
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
- currencyPair := currency.NewPair(currency.LTC, currency.BTC)
-
var orderCancellation = &exchange.OrderCancellation{
OrderID: "1",
WalletAddress: "1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB",
AccountID: "1",
- CurrencyPair: currencyPair,
+ CurrencyPair: currency.NewPair(currency.LTC, currency.BTC),
}
resp, err := l.CancelAllOrders(orderCancellation)
-
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Errorf("Could not cancel orders: %v", err)
+ case mockTests && err != nil:
t.Errorf("Could not cancel orders: %v", err)
}
@@ -331,15 +323,17 @@ func TestCancelAllExchangeOrders(t *testing.T) {
}
func TestModifyOrder(t *testing.T) {
+ t.Parallel()
+
_, err := l.ModifyOrder(&exchange.ModifyOrder{})
- if err == nil {
- t.Error("Test failed - ModifyOrder() error")
+ if err != common.ErrFunctionNotSupported {
+ t.Error("Test failed - ModifyOrder() error", err)
}
}
func TestWithdraw(t *testing.T) {
- l.SetDefaults()
- TestSetup(t)
+ t.Parallel()
+
var withdrawCryptoRequest = exchange.WithdrawRequest{
Amount: 100,
Currency: currency.LTC,
@@ -347,61 +341,55 @@ func TestWithdraw(t *testing.T) {
Description: "WITHDRAW IT ALL",
}
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
_, err := l.WithdrawCryptocurrencyFunds(&withdrawCryptoRequest)
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
t.Errorf("Withdraw failed to be placed: %v", err)
+ case mockTests && err == nil:
+ t.Error("Expecting an error until QA pass")
}
}
func TestWithdrawFiat(t *testing.T) {
- l.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
- t.Skip("API keys set, canManipulateRealOrders false, skipping test")
- }
+ t.Parallel()
var withdrawFiatRequest = exchange.WithdrawRequest{}
-
_, err := l.WithdrawFiatFunds(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
- t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
+ t.Errorf("Expected '%v', received: '%v'",
+ common.ErrFunctionNotSupported,
+ err)
}
}
func TestWithdrawInternationalBank(t *testing.T) {
- l.SetDefaults()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
- t.Skip("API keys set, canManipulateRealOrders false, skipping test")
- }
+ t.Parallel()
var withdrawFiatRequest = exchange.WithdrawRequest{}
-
_, err := l.WithdrawFiatFundsToInternationalBank(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
- t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
+ t.Errorf("Expected '%v', received: '%v'",
+ common.ErrFunctionNotSupported,
+ err)
}
}
func TestGetDepositAddress(t *testing.T) {
- if apiKey != "" || apiSecret != "" {
- _, err := l.GetDepositAddress(currency.BTC, "")
- if err != nil {
- t.Error("Test Failed - GetDepositAddress() error", err)
- }
- } else {
- _, err := l.GetDepositAddress(currency.BTC, "")
- if err == nil {
- t.Error("Test Failed - GetDepositAddress() error cannot be nil")
- }
+ t.Parallel()
+
+ _, err := l.GetDepositAddress(currency.BTC, "")
+ switch {
+ case areTestAPIKeysSet() && err != nil && !mockTests:
+ t.Error("Test Failed - GetDepositAddress() error", err)
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
+ t.Error("Test Failed - GetDepositAddress() expecting an error when no APIKeys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - GetDepositAddress() error", err)
}
}
diff --git a/exchanges/localbitcoins/localbitcoins_wrapper.go b/exchanges/localbitcoins/localbitcoins_wrapper.go
index f065bc0aa6e..6e5286b44e9 100644
--- a/exchanges/localbitcoins/localbitcoins_wrapper.go
+++ b/exchanges/localbitcoins/localbitcoins_wrapper.go
@@ -280,8 +280,10 @@ func (l *LocalBitcoins) GetDepositAddress(cryptocurrency currency.Code, _ string
// WithdrawCryptocurrencyFunds returns a withdrawal ID when a withdrawal is
// submitted
func (l *LocalBitcoins) WithdrawCryptocurrencyFunds(withdrawRequest *exchange.WithdrawRequest) (string, error) {
- _, err := l.WalletSend(withdrawRequest.Address, withdrawRequest.Amount, withdrawRequest.PIN)
- return "", err
+ return "",
+ l.WalletSend(withdrawRequest.Address,
+ withdrawRequest.Amount,
+ withdrawRequest.PIN)
}
// WithdrawFiatFunds returns a withdrawal ID when a
diff --git a/exchanges/mock/README.md b/exchanges/mock/README.md
new file mode 100644
index 00000000000..45e2c732f3b
--- /dev/null
+++ b/exchanges/mock/README.md
@@ -0,0 +1,174 @@
+# GoCryptoTrader package Mock
+
+
+
+
+[![Build Status](https://travis-ci.org/thrasher-corp/gocryptotrader.svg?branch=master)](https://travis-ci.org/thrasher-corp/gocryptotrader)
+[![Software License](https://img.shields.io/badge/License-MIT-orange.svg?style=flat-square)](https://github.com/thrasher-corp/gocryptotrader/blob/master/LICENSE)
+[![GoDoc](https://godoc.org/github.com/thrasher-corp/gocryptotrader?status.svg)](https://godoc.org/github.com/thrasher-corp/gocryptotrader/exchanges/mock)
+[![Coverage Status](http://codecov.io/github/thrasher-corp/gocryptotrader/coverage.svg?branch=master)](http://codecov.io/github/thrasher-corp/gocryptotrader?branch=master)
+[![Go Report Card](https://goreportcard.com/badge/github.com/thrasher-corp/gocryptotrader)](https://goreportcard.com/report/github.com/thrasher-corp/gocryptotrader)
+
+
+This Mock package is part of the GoCryptoTrader codebase.
+
+## This is still in active development
+
+You can track ideas, planned features and what's in progresss on this Trello board: [https://trello.com/b/ZAhMhpOy/gocryptotrader](https://trello.com/b/ZAhMhpOy/gocryptotrader).
+
+Join our slack to discuss all things related to GoCryptoTrader! [GoCryptoTrader Slack](https://join.slack.com/t/gocryptotrader/shared_invite/enQtNTQ5NDAxMjA2Mjc5LTQyYjIxNGVhMWU5MDZlOGYzMmE0NTJmM2MzYWY5NGMzMmM4MzUwNTBjZTEzNjIwODM5NDcxODQwZDljMGQyNGY)
+
+## Mock Testing Suite
+
+### Current Features
+
++ REST recording service
++ REST mock response server
+
+### How to enable
+
++ Mock testing is enabled by default in some exchanges; to disable and run live endpoint testing parse -tags=mock_test_off as a go test param.
+
++ To record a live endpoint create two files for an exchange.
+
+### file one - your_current_exchange_name_live_test.go
+
+```go
+//+build mock_test_off
+
+// This will build if build tag mock_test_off is parsed and will do live testing
+// using all tests in (exchange)_test.go
+package your_current_exchange_name
+
+import (
+ "os"
+ "testing"
+ "log"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+var mockTests = false
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ your_current_exchange_nameConfig, err := cfg.GetExchangeConfig("your_current_exchange_name")
+ if err != nil {
+ log.Fatal("Test Failed - your_current_exchange_name Setup() init error", err)
+ }
+ your_current_exchange_nameConfig.AuthenticatedAPISupport = true
+ your_current_exchange_nameConfig.APIKey = apiKey
+ your_current_exchange_nameConfig.APISecret = apiSecret
+ l.SetDefaults()
+ l.Setup(&your_current_exchange_nameConfig)
+ log.Printf(sharedtestvalues.LiveTesting, l.GetName(), l.APIUrl)
+ os.Exit(m.Run())
+}
+```
+
+### file two - your_current_exchange_name_mock_test.go
+
+```go
+//+build !mock_test_off
+
+// This will build if build tag mock_test_off is not parsed and will try to mock
+// all tests in _test.go
+package your_current_exchange_name
+
+import (
+ "os"
+ "testing"
+ "log"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/mock"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+const mockfile = "../../testdata/http_mock/your_current_exchange_name/your_current_exchange_name.json"
+
+var mockTests = true
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ your_current_exchange_nameConfig, err := cfg.GetExchangeConfig("your_current_exchange_name")
+ if err != nil {
+ log.Fatal("Test Failed - your_current_exchange_name Setup() init error", err)
+ }
+ your_current_exchange_nameConfig.AuthenticatedAPISupport = true
+ your_current_exchange_nameConfig.APIKey = apiKey
+ your_current_exchange_nameConfig.APISecret = apiSecret
+ l.SetDefaults()
+ l.Setup(&your_current_exchange_nameConfig)
+
+ serverDetails, newClient, err := mock.NewVCRServer(mockfile)
+ if err != nil {
+ log.Fatalf("Test Failed - Mock server error %s", err)
+ }
+
+ g.HTTPClient = newClient
+ g.APIUrl = serverDetails
+
+ log.Printf(sharedtestvalues.MockTesting, l.GetName(), l.APIUrl)
+ os.Exit(m.Run())
+}
+
+```
+
++ Once those files are completed go through each invidual test function and add
+
+```go
+var s SomeExchange
+
+func TestDummyTest(t *testing.T) {
+ s.APIURL = exchangeDefaultURL // This will overwrite the current mock url at localhost
+ s.Verbose = true // This will show you some fancy debug output
+ s.HTTPRecording = true // This will record the request and response payloads
+
+ err := s.SomeExchangeEndpointFunction()
+ // check error
+}
+```
+
++ After this is completed it should populate a new mocktest.json file for you with the relavent payloads in testdata
++ To check if the recording was successful, comment out recording and apiurl changes, then re-run test.
+
+```go
+var s SomeExchange
+
+func TestDummyTest(t *testing.T) {
+ // s.APIURL = exchangeDefaultURL // This will overwrite the current mock url at localhost
+ s.Verbose = true // This will show you some fancy debug output
+ // s.HTTPRecording = true // This will record the request and response payloads
+
+ err := s.SomeExchangeEndpointFunction()
+ // check error
+}
+```
+
++ The payload should be the same.
+
+### Please click GoDocs chevron above to view current GoDoc information for this package
+
+## Contribution
+
+Please feel free to submit any pull requests or suggest any desired features to be added.
+
+When submitting a PR, please abide by our coding guidelines:
+
++ Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)).
++ Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines.
++ Code must adhere to our [coding style](https://github.com/thrasher-corp/gocryptotrader/blob/master/doc/coding_style.md).
++ Pull requests need to be based on and opened against the `master` branch.
+
+## Donations
+
+
+
+If this framework helped you in any way, or you would like to support the developers working on it, please donate Bitcoin to:
+
+***1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB***
+
diff --git a/exchanges/mock/common.go b/exchanges/mock/common.go
new file mode 100644
index 00000000000..e738bf8ccd1
--- /dev/null
+++ b/exchanges/mock/common.go
@@ -0,0 +1,71 @@
+package mock
+
+import (
+ "encoding/json"
+ "errors"
+ "fmt"
+ "log"
+ "net/url"
+ "reflect"
+ "strconv"
+ "strings"
+)
+
+// MatchURLVals matches url.Value query strings
+func MatchURLVals(v1, v2 url.Values) bool {
+ if len(v1) != len(v2) {
+ return false
+ }
+
+ if len(v1) == 0 && len(v2) == 0 {
+ return true
+ }
+
+ for key, val := range v1 {
+ if key == "nonce" || key == "signature" || key == "timestamp" || key == "tonce" || key == "key" { // delta values
+ if _, ok := v2[key]; !ok {
+ return false
+ }
+ continue
+ }
+
+ if val2, ok := v2[key]; ok {
+ if strings.Join(val2, "") == strings.Join(val, "") {
+ continue
+ }
+ }
+ return false
+ }
+ return true
+}
+
+// DeriveURLValsFromJSONMap gets url vals from a map[string]string encoded JSON body
+func DeriveURLValsFromJSONMap(payload []byte) (url.Values, error) {
+ var vals = url.Values{}
+ if string(payload) == "" {
+ return vals, nil
+ }
+ intermediary := make(map[string]interface{})
+ err := json.Unmarshal(payload, &intermediary)
+ if err != nil {
+ return vals, err
+ }
+
+ for k, v := range intermediary {
+ switch val := v.(type) {
+ case string:
+ vals.Add(k, val)
+ case bool:
+ vals.Add(k, strconv.FormatBool(val))
+ case float64:
+ vals.Add(k, strconv.FormatFloat(val, 'f', -1, 64))
+ case map[string]interface{}, []interface{}, nil:
+ vals.Add(k, fmt.Sprintf("%v", val))
+ default:
+ log.Println(reflect.TypeOf(val))
+ return vals, errors.New("unhandled conversion type, please add as needed")
+ }
+ }
+
+ return vals, nil
+}
diff --git a/exchanges/mock/common_test.go b/exchanges/mock/common_test.go
new file mode 100644
index 00000000000..d06269dcc6e
--- /dev/null
+++ b/exchanges/mock/common_test.go
@@ -0,0 +1,140 @@
+package mock
+
+import (
+ "encoding/json"
+ "net/url"
+ "testing"
+)
+
+func TestMatchURLVals(t *testing.T) {
+ testVal, testVal2, testVal3, emptyVal := url.Values{}, url.Values{}, url.Values{}, url.Values{}
+ testVal.Add("test", "test")
+ testVal2.Add("test2", "test2")
+ testVal3.Add("test", "diferentValString")
+
+ nonceVal1, nonceVal2 := url.Values{}, url.Values{}
+ nonceVal1.Add("nonce", "012349723587")
+ nonceVal2.Add("nonce", "9327373874")
+
+ var expected = false
+ received := MatchURLVals(testVal, emptyVal)
+ if received != expected {
+ t.Errorf("Test Failed - MatchURLVals error expected %v received %v",
+ expected,
+ received)
+ }
+
+ received = MatchURLVals(emptyVal, testVal)
+ if received != expected {
+ t.Errorf("Test Failed - MatchURLVals error expected %v received %v",
+ expected,
+ received)
+ }
+
+ received = MatchURLVals(testVal, testVal2)
+ if received != expected {
+ t.Errorf("Test Failed - MatchURLVals error expected %v received %v",
+ expected,
+ received)
+ }
+
+ received = MatchURLVals(testVal2, testVal)
+ if received != expected {
+ t.Errorf("Test Failed - MatchURLVals error expected %v received %v",
+ expected,
+ received)
+ }
+
+ received = MatchURLVals(testVal, testVal3)
+ if received != expected {
+ t.Errorf("Test Failed - MatchURLVals error expected %v received %v",
+ expected,
+ received)
+ }
+
+ received = MatchURLVals(nonceVal1, testVal2)
+ if received != expected {
+ t.Errorf("Test Failed - MatchURLVals error expected %v received %v",
+ expected,
+ received)
+ }
+
+ expected = true
+ received = MatchURLVals(emptyVal, emptyVal)
+ if received != expected {
+ t.Errorf("Test Failed - MatchURLVals error expected %v received %v",
+ expected,
+ received)
+ }
+
+ received = MatchURLVals(testVal, testVal)
+ if received != expected {
+ t.Errorf("Test Failed - MatchURLVals error expected %v received %v",
+ expected,
+ received)
+ }
+
+ received = MatchURLVals(nonceVal1, nonceVal2)
+ if received != expected {
+ t.Errorf("Test Failed - MatchURLVals error expected %v received %v",
+ expected,
+ received)
+ }
+}
+
+func TestDeriveURLValsFromJSON(t *testing.T) {
+ test1 := struct {
+ Things []string `json:"things"`
+ Data struct {
+ Numbers []int `json:"numbers"`
+ Number float64 `json:"number"`
+ SomeString string `json:"somestring"`
+ } `json:"data"`
+ }{
+ Things: []string{"hello", "world"},
+ Data: struct {
+ Numbers []int `json:"numbers"`
+ Number float64 `json:"number"`
+ SomeString string `json:"somestring"`
+ }{
+ Numbers: []int{1, 3, 3, 7},
+ Number: 3.14,
+ SomeString: "hello, peoples",
+ },
+ }
+
+ payload, err := json.Marshal(test1)
+ if err != nil {
+ t.Error("Test Failed - marshal error", err)
+ }
+
+ _, err = DeriveURLValsFromJSONMap(payload)
+ if err != nil {
+ t.Error("Test Failed - DeriveURLValsFromJSON error", err)
+ }
+
+ test2 := map[string]string{
+ "val": "1",
+ "val2": "2",
+ "val3": "3",
+ "val4": "4",
+ "val5": "5",
+ "val6": "6",
+ "val7": "7",
+ }
+
+ payload, err = json.Marshal(test2)
+ if err != nil {
+ t.Error("Test Failed - marshal error", err)
+ }
+
+ vals, err := DeriveURLValsFromJSONMap(payload)
+ if err != nil {
+ t.Error("Test Failed - DeriveURLValsFromJSON error", err)
+ }
+
+ if vals["val"][0] != "1" {
+ t.Error("Test Failed - DeriveURLValsFromJSON unexpected value",
+ vals["val"][0])
+ }
+}
diff --git a/exchanges/mock/recording.go b/exchanges/mock/recording.go
new file mode 100644
index 00000000000..281eabad223
--- /dev/null
+++ b/exchanges/mock/recording.go
@@ -0,0 +1,439 @@
+package mock
+
+import (
+ "encoding/json"
+ "errors"
+ "fmt"
+ "io/ioutil"
+ "log"
+ "net/http"
+ "net/url"
+ "os"
+ "path/filepath"
+ "reflect"
+ "strings"
+ "sync"
+
+ "github.com/thrasher-corp/gocryptotrader/common"
+)
+
+// HTTPResponse defines expected response from the end point including request
+// data for pathing on the VCR server
+type HTTPResponse struct {
+ Data json.RawMessage `json:"data"`
+ QueryString string `json:"queryString"`
+ BodyParams string `json:"bodyParams"`
+ Headers map[string][]string `json:"headers"`
+}
+
+// HTTPRecord will record the request and response to a default JSON file for
+// mocking purposes
+func HTTPRecord(res *http.Response, service string, respContents []byte) error {
+ if res == nil {
+ return errors.New("http.Response cannot be nil")
+ }
+
+ if res.Request == nil {
+ return errors.New("http.Request cannot be nil")
+ }
+
+ if res.Request.Method == "" {
+ return errors.New("request method not supplied")
+ }
+
+ if service == "" {
+ return errors.New("service not supplied cannot access correct mock file")
+ }
+ service = strings.ToLower(service)
+
+ fileout := filepath.Join(DefaultDirectory, service, service+".json")
+
+ contents, err := common.ReadFile(fileout)
+ if err != nil {
+ return err
+ }
+
+ var m VCRMock
+ err = json.Unmarshal(contents, &m)
+ if err != nil {
+ return err
+ }
+
+ if m.Routes == nil {
+ m.Routes = make(map[string]map[string][]HTTPResponse)
+ }
+
+ var httpResponse HTTPResponse
+ cleanedContents, err := CheckResponsePayload(respContents)
+ if err != nil {
+ return err
+ }
+
+ err = json.Unmarshal(cleanedContents, &httpResponse.Data)
+ if err != nil {
+ return err
+ }
+
+ var body string
+ if res.Request.GetBody != nil {
+ bodycopy, bodyErr := res.Request.GetBody()
+ if bodyErr != nil {
+ return bodyErr
+ }
+ payload, bodyErr := ioutil.ReadAll(bodycopy)
+ if bodyErr != nil {
+ return bodyErr
+ }
+ body = string(payload)
+ }
+
+ switch res.Request.Header.Get(contentType) {
+ case applicationURLEncoded:
+ vals, urlErr := url.ParseQuery(body)
+ if urlErr != nil {
+ return urlErr
+ }
+
+ httpResponse.BodyParams, urlErr = GetFilteredURLVals(vals)
+ if urlErr != nil {
+ return urlErr
+ }
+
+ case textPlain:
+ payload := res.Request.Header.Get("X-Gemini-Payload")
+ j, dErr := common.Base64Decode(payload)
+ if dErr != nil {
+ return dErr
+ }
+
+ httpResponse.BodyParams = string(j)
+
+ default:
+ httpResponse.BodyParams = body
+ }
+
+ httpResponse.Headers, err = GetFilteredHeader(res)
+ if err != nil {
+ return err
+ }
+
+ httpResponse.QueryString, err = GetFilteredURLVals(res.Request.URL.Query())
+ if err != nil {
+ return err
+ }
+
+ _, ok := m.Routes[res.Request.URL.Path]
+ if !ok {
+ m.Routes[res.Request.URL.Path] = make(map[string][]HTTPResponse)
+ m.Routes[res.Request.URL.Path][res.Request.Method] = []HTTPResponse{httpResponse}
+ } else {
+ mockResponses, ok := m.Routes[res.Request.URL.Path][res.Request.Method]
+ if !ok {
+ m.Routes[res.Request.URL.Path][res.Request.Method] = []HTTPResponse{httpResponse}
+ } else {
+ switch res.Request.Method { // Based off method - check add or replace
+ case http.MethodGet:
+ for i := range mockResponses {
+ mockQuery, urlErr := url.ParseQuery(mockResponses[i].QueryString)
+ if urlErr != nil {
+ return urlErr
+ }
+
+ if MatchURLVals(mockQuery, res.Request.URL.Query()) {
+ mockResponses = append(mockResponses[:i], mockResponses[i+1:]...) // Delete Old
+ break
+ }
+ }
+
+ case http.MethodPost:
+ for i := range mockResponses {
+ cType, ok := mockResponses[i].Headers[contentType]
+ if !ok {
+ return errors.New("cannot find content type within mock responses")
+ }
+
+ jCType := strings.Join(cType, "")
+ var found bool
+ switch jCType {
+ case applicationURLEncoded:
+ respQueryVals, urlErr := url.ParseQuery(body)
+ if urlErr != nil {
+ return urlErr
+ }
+
+ mockRespVals, urlErr := url.ParseQuery(mockResponses[i].BodyParams)
+ if urlErr != nil {
+ log.Fatal(urlErr)
+ }
+
+ if MatchURLVals(respQueryVals, mockRespVals) {
+ // if found will delete instance and overwrite with new
+ // data
+ mockResponses = append(mockResponses[:i], mockResponses[i+1:]...)
+ found = true
+ }
+
+ case applicationJSON, textPlain:
+ reqVals, jErr := DeriveURLValsFromJSONMap([]byte(body))
+ if jErr != nil {
+ return jErr
+ }
+
+ mockVals, jErr := DeriveURLValsFromJSONMap([]byte(mockResponses[i].BodyParams))
+ if jErr != nil {
+ return jErr
+ }
+
+ if MatchURLVals(reqVals, mockVals) {
+ // if found will delete instance and overwrite with new
+ // data
+ mockResponses = append(mockResponses[:i], mockResponses[i+1:]...)
+ found = true
+ }
+
+ default:
+ return fmt.Errorf("unhandled content type %s", jCType)
+ }
+ if found {
+ break
+ }
+ }
+
+ default:
+ return fmt.Errorf("unhandled request method %s", res.Request.Method)
+ }
+
+ m.Routes[res.Request.URL.Path][res.Request.Method] = append(mockResponses, httpResponse)
+ }
+ }
+
+ payload, err := json.MarshalIndent(m, "", " ")
+ if err != nil {
+ return err
+ }
+
+ return common.WriteFile(fileout, payload)
+}
+
+// GetFilteredHeader filters excluded http headers for insertion into a mock
+// test file
+func GetFilteredHeader(res *http.Response) (http.Header, error) {
+ items, err := GetExcludedItems()
+ if err != nil {
+ return res.Header, err
+ }
+
+ for i := range items.Headers {
+ if res.Request.Header.Get(items.Headers[i]) != "" {
+ res.Request.Header.Set(items.Headers[i], "")
+ }
+ }
+
+ return res.Request.Header, nil
+}
+
+// GetFilteredURLVals filters excluded url value variables for insertion into a
+// mock test file
+func GetFilteredURLVals(vals url.Values) (string, error) {
+ items, err := GetExcludedItems()
+ if err != nil {
+ return "", err
+ }
+
+ for key, val := range vals {
+ for i := range items.Variables {
+ if strings.EqualFold(items.Variables[i], val[0]) {
+ vals.Set(key, "")
+ }
+ }
+ }
+ return vals.Encode(), nil
+}
+
+// CheckResponsePayload checks to see if there are any response body variables
+// that should not be there.
+func CheckResponsePayload(data []byte) ([]byte, error) {
+ items, err := GetExcludedItems()
+ if err != nil {
+ return nil, err
+ }
+
+ var intermediary interface{}
+ err = json.Unmarshal(data, &intermediary)
+ if err != nil {
+ return nil, err
+ }
+
+ payload, err := CheckJSON(intermediary, &items)
+ if err != nil {
+ return nil, err
+ }
+
+ return json.MarshalIndent(payload, "", " ")
+}
+
+// Reflection consts
+const (
+ Int64 = "int64"
+ Float64 = "float64"
+ Slice = "slice"
+ String = "string"
+ Bool = "bool"
+ Invalid = "invalid"
+)
+
+// CheckJSON recursively parses json data to retract keywords, quite intensive.
+func CheckJSON(data interface{}, excluded *Exclusion) (interface{}, error) {
+ var context map[string]interface{}
+ if reflect.TypeOf(data).String() == "[]interface {}" {
+ var sData []interface{}
+ for i := range data.([]interface{}) {
+ checkedData, err := CheckJSON(data.([]interface{})[i], excluded)
+ if err != nil {
+ return nil, err
+ }
+
+ sData = append(sData, checkedData)
+ }
+ return sData, nil
+ }
+
+ conv, err := json.Marshal(data)
+ if err != nil {
+ return nil, err
+ }
+
+ err = json.Unmarshal(conv, &context)
+ if err != nil {
+ return nil, err
+ }
+
+ if len(context) == 0 {
+ // Nil for some reason, should error out before in json.Unmarshal
+ return nil, nil
+ }
+
+ for key, val := range context {
+ switch reflect.ValueOf(val).Kind().String() {
+ case String:
+ if IsExcluded(key, excluded.Variables) {
+ context[key] = "" // Zero val string
+ }
+ case Int64:
+ if IsExcluded(key, excluded.Variables) {
+ context[key] = 0 // Zero val int
+ }
+ case Float64:
+ if IsExcluded(key, excluded.Variables) {
+ context[key] = 0.0 // Zero val float
+ }
+ case Slice:
+ slice := val.([]interface{})
+ if len(slice) < 1 {
+ // Empty slice found
+ context[key] = slice
+ } else {
+ if _, ok := slice[0].(map[string]interface{}); ok {
+ var cleanSlice []interface{}
+ for i := range slice {
+ cleanMap, sErr := CheckJSON(slice[i], excluded)
+ if sErr != nil {
+ return nil, sErr
+ }
+ cleanSlice = append(cleanSlice, cleanMap)
+ }
+ context[key] = cleanSlice
+ } else if IsExcluded(key, excluded.Variables) {
+ context[key] = nil // Zero val slice
+ }
+ }
+
+ case Bool, Invalid: // Skip these bad boys for now
+ default:
+ // Recursively check map data
+ contextValue, err := CheckJSON(val, excluded)
+ if err != nil {
+ return nil, err
+ }
+ context[key] = contextValue
+ }
+ }
+
+ return context, nil
+}
+
+// IsExcluded cross references the key with the excluded variables
+func IsExcluded(key string, excludedVars []string) bool {
+ for i := range excludedVars {
+ if strings.EqualFold(key, excludedVars[i]) {
+ return true
+ }
+ }
+ return false
+}
+
+var excludedList Exclusion
+var m sync.Mutex
+var set bool
+var exclusionFile = DefaultDirectory + "exclusion.json"
+
+var defaultExcludedHeaders = []string{"Key",
+ "X-Mbx-Apikey",
+ "Rest-Key",
+ "Apiauth-Key"}
+var defaultExcludedVariables = []string{"bsb",
+ "user",
+ "name",
+ "real_name",
+ "receiver_name",
+ "account_number",
+ "username"}
+
+// Exclusion defines a list of items to be excluded from the main mock output
+// this attempts a catch all approach and needs to be updated per exchange basis
+type Exclusion struct {
+ Headers []string `json:"headers"`
+ Variables []string `json:"variables"`
+}
+
+// GetExcludedItems checks to see if the variable is in the exclusion list as to
+// not display secure items in mock file generator output
+func GetExcludedItems() (Exclusion, error) {
+ m.Lock()
+ defer m.Unlock()
+ if !set {
+ file, err := ioutil.ReadFile(exclusionFile)
+ if err != nil {
+ if !strings.Contains(err.Error(), "no such file or directory") {
+ return excludedList, err
+ }
+
+ excludedList.Headers = defaultExcludedHeaders
+ excludedList.Variables = defaultExcludedVariables
+
+ data, mErr := json.MarshalIndent(excludedList, "", " ")
+ if mErr != nil {
+ return excludedList, mErr
+ }
+
+ mErr = ioutil.WriteFile(exclusionFile, data, os.ModePerm)
+ if mErr != nil {
+ return excludedList, mErr
+ }
+
+ } else {
+ err = json.Unmarshal(file, &excludedList)
+ if err != nil {
+ return excludedList, err
+ }
+
+ if len(excludedList.Headers) == 0 || len(excludedList.Variables) == 0 {
+ return excludedList, errors.New("exclusion list does not have names")
+ }
+ }
+
+ set = true
+ }
+
+ return excludedList, nil
+}
diff --git a/exchanges/mock/recording_test.go b/exchanges/mock/recording_test.go
new file mode 100644
index 00000000000..978c0c2b920
--- /dev/null
+++ b/exchanges/mock/recording_test.go
@@ -0,0 +1,186 @@
+package mock
+
+import (
+ "encoding/json"
+ "net/http"
+ "net/url"
+ "strings"
+ "testing"
+)
+
+func TestGetFilteredHeader(t *testing.T) {
+ resp := http.Response{}
+ resp.Request = &http.Request{}
+ resp.Request.Header = http.Header{}
+ resp.Request.Header.Set("Key", "RiskyVals")
+ fMap, err := GetFilteredHeader(&resp)
+ if err != nil {
+ t.Error(err)
+ }
+
+ if fMap.Get("Key") != "" {
+ t.Error("Test Failed - risky vals where not replaced correctly")
+ }
+}
+
+func TestGetFilteredURLVals(t *testing.T) {
+ superSecretData := "Dr Seuss"
+ shadyVals := url.Values{}
+ shadyVals.Set("real_name", superSecretData)
+ cleanVals, err := GetFilteredURLVals(shadyVals)
+ if err != nil {
+ t.Error("Test Failed - GetFilteredURLVals error", err)
+ }
+
+ if strings.Contains(cleanVals, superSecretData) {
+ t.Error("Test Failed - Super secret data found")
+ }
+}
+
+func TestCheckResponsePayload(t *testing.T) {
+ testbody := struct {
+ SomeJSON string `json:"stuff"`
+ }{
+ SomeJSON: "REAAAAHHHHH",
+ }
+
+ payload, err := json.Marshal(testbody)
+ if err != nil {
+ t.Fatal("Test Failed - json marshal error", err)
+ }
+
+ data, err := CheckResponsePayload(payload)
+ if err != nil {
+ t.Error("Test Failed - CheckBody error", err)
+ }
+
+ expected := `{
+ "stuff": "REAAAAHHHHH"
+}`
+
+ if string(data) != expected {
+ t.Error("unexpected returned data")
+ }
+}
+
+type TestStructLevel0 struct {
+ StringVal string `json:"stringVal"`
+ FloatVal float64 `json:"floatVal"`
+ IntVal int64 `json:"intVal"`
+ StructVal TestStructLevel1 `json:"structVal"`
+}
+
+type TestStructLevel1 struct {
+ OkayVal string `json:"okayVal"`
+ OkayVal2 float64 `json:"okayVal2"`
+ BadVal string `json:"user"`
+ BadVal2 int `json:"bsb"`
+ OtherData TestStructLevel2 `json:"otherVals"`
+}
+
+type TestStructLevel2 struct {
+ OkayVal string `json:"okayVal"`
+ OkayVal2 float64 `json:"okayVal2"`
+ BadVal float32 `json:"name"`
+ BadVal2 int32 `json:"real_name"`
+ OtherData TestStructLevel3 `json:"moreOtherVals"`
+}
+
+type TestStructLevel3 struct {
+ OkayVal string `json:"okayVal"`
+ OkayVal2 float64 `json:"okayVal2"`
+ BadVal int64 `json:"receiver_name"`
+ BadVal2 string `json:"account_number"`
+}
+
+func TestCheckJSON(t *testing.T) {
+ level3 := TestStructLevel3{
+ OkayVal: "stuff",
+ OkayVal2: 129219,
+ BadVal: 1337,
+ BadVal2: "Super Secret Password",
+ }
+
+ level2 := TestStructLevel2{
+ OkayVal: "stuff",
+ OkayVal2: 129219,
+ BadVal: 0.222,
+ BadVal2: 1337888888,
+ OtherData: level3,
+ }
+
+ level1 := TestStructLevel1{
+ OkayVal: "stuff",
+ OkayVal2: 120938,
+ BadVal: "CritcalBankingStuff",
+ BadVal2: 1337,
+ OtherData: level2,
+ }
+
+ testVal := TestStructLevel0{
+ StringVal: "somestringstuff",
+ FloatVal: 3.14,
+ IntVal: 1337,
+ StructVal: level1,
+ }
+
+ exclusionList, err := GetExcludedItems()
+ if err != nil {
+ t.Error("Test Failed - GetExcludedItems error", err)
+ }
+
+ vals, err := CheckJSON(testVal, &exclusionList)
+ if err != nil {
+ t.Error("Test Failed - Check JSON error", err)
+ }
+
+ payload, err := json.Marshal(vals)
+ if err != nil {
+ t.Fatal("Test Failed - json marshal error", err)
+ }
+
+ newStruct := TestStructLevel0{}
+ err = json.Unmarshal(payload, &newStruct)
+ if err != nil {
+ t.Fatal("Test Failed - Umarshal error", err)
+ }
+
+ if newStruct.StructVal.BadVal != "" {
+ t.Error("Value not wiped correctly")
+ }
+
+ if newStruct.StructVal.BadVal2 != 0 {
+ t.Error("Value not wiped correctly")
+ }
+
+ if newStruct.StructVal.OtherData.BadVal != 0 {
+ t.Error("Value not wiped correctly")
+ }
+
+ if newStruct.StructVal.OtherData.BadVal2 != 0 {
+ t.Error("Value not wiped correctly")
+ }
+
+ if newStruct.StructVal.OtherData.OtherData.BadVal != 0 {
+ t.Error("Value not wiped correctly")
+ }
+
+ if newStruct.StructVal.OtherData.OtherData.BadVal2 != "" {
+ t.Error("Value not wiped correctly")
+ }
+}
+
+func TestGetExcludedItems(t *testing.T) {
+ exclusionList, err := GetExcludedItems()
+ if err != nil {
+ t.Error("Test Failed - GetExcludedItems error", err)
+ }
+
+ if len(exclusionList.Headers) == 0 {
+ t.Error("Test Failed - Header exclusion list not popoulated")
+ }
+
+ if len(exclusionList.Variables) == 0 {
+ t.Error("Test Failed - Variable exclusion list not popoulated")
+ }
+}
diff --git a/exchanges/mock/server.go b/exchanges/mock/server.go
new file mode 100644
index 00000000000..1f06980fbd4
--- /dev/null
+++ b/exchanges/mock/server.go
@@ -0,0 +1,282 @@
+package mock
+
+import (
+ "encoding/json"
+ "errors"
+ "fmt"
+ "io/ioutil"
+ "log"
+ "net/http"
+ "net/http/httptest"
+ "net/url"
+ "reflect"
+ "strconv"
+ "strings"
+
+ "github.com/thrasher-corp/gocryptotrader/common"
+)
+
+// DefaultDirectory defines the main mock directory
+const DefaultDirectory = "../../testdata/http_mock/"
+
+const (
+ contentType = "Content-Type"
+ applicationURLEncoded = "application/x-www-form-urlencoded"
+ applicationJSON = "application/json"
+ textPlain = "text/plain"
+)
+
+// VCRMock defines the main mock JSON file and attributes
+type VCRMock struct {
+ Routes map[string]map[string][]HTTPResponse `json:"routes"`
+}
+
+// NewVCRServer starts a new VCR server for replaying HTTP requests for testing
+// purposes and returns the server connection details
+func NewVCRServer(path string) (string, *http.Client, error) {
+ if path == "" {
+ return "", nil, errors.New("no path to json mock file found")
+ }
+
+ var mockFile VCRMock
+
+ contents, err := ioutil.ReadFile(path)
+ if err != nil {
+ pathing := common.SplitStrings(path, "/")
+ dirPathing := pathing[:len(pathing)-1]
+ dir := common.JoinStrings(dirPathing, "/")
+ err = common.CreateDir(dir)
+ if err != nil {
+ return "", nil, err
+ }
+
+ data, jErr := json.MarshalIndent(mockFile, "", " ")
+ if jErr != nil {
+ return "", nil, jErr
+ }
+
+ err = common.WriteFile(path, data)
+ if err != nil {
+ return "", nil, err
+ }
+ contents = data
+ }
+
+ if !json.Valid(contents) {
+ return "",
+ nil,
+ fmt.Errorf("contents of file %s are not valid JSON", path)
+ }
+
+ // Get mocking data for the specific service
+ err = json.Unmarshal(contents, &mockFile)
+ if err != nil {
+ return "", nil, err
+ }
+
+ newMux := http.NewServeMux()
+ // Range over routes and assign responses to explicit paths and http
+ // methods
+ if len(mockFile.Routes) != 0 {
+ for pattern, mockResponses := range mockFile.Routes {
+ RegisterHandler(pattern, mockResponses, newMux)
+ }
+ } else {
+ newMux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
+ w.WriteHeader(http.StatusNotFound)
+ err := json.NewEncoder(w).Encode("There is no mock data available in file please record a new HTTP response. Please follow README.md in the mock package.")
+ if err != nil {
+ panic(err)
+ }
+ })
+ }
+ tlsServer := httptest.NewTLSServer(newMux)
+
+ return tlsServer.URL, tlsServer.Client(), nil
+}
+
+// RegisterHandler registers a generalised mock response logic for specific
+// routes
+func RegisterHandler(pattern string, mock map[string][]HTTPResponse, mux *http.ServeMux) {
+ mux.HandleFunc(pattern, func(w http.ResponseWriter, r *http.Request) {
+ httpResponses, ok := mock[r.Method]
+ if !ok {
+ log.Fatalf("Mock Test Failure - Method %s not present in mock file",
+ r.Method)
+ }
+
+ switch r.Method {
+ case http.MethodGet:
+ vals, err := url.ParseRequestURI(r.RequestURI)
+ if err != nil {
+ log.Fatal("Mock Test Failure - Parse request URI error", err)
+ }
+
+ payload, err := MatchAndGetResponse(httpResponses, vals.Query(), true)
+ if err != nil {
+ log.Fatalf("Mock Test Failure - MatchAndGetResponse error %s for %s",
+ err, r.RequestURI)
+ }
+
+ MessageWriteJSON(w, http.StatusOK, payload)
+ return
+
+ case http.MethodPost:
+ switch r.Header.Get(contentType) {
+ case applicationURLEncoded:
+ readBody, err := ioutil.ReadAll(r.Body)
+ if err != nil {
+ log.Fatal("Mock Test Failure - ReadAll error", err)
+ }
+
+ vals, err := url.ParseQuery(string(readBody))
+ if err != nil {
+ log.Fatal("Mock Test Failure - parse query error", err)
+ }
+
+ payload, err := MatchAndGetResponse(httpResponses, vals, false)
+ if err != nil {
+ log.Fatal("Mock Test Failure - MatchAndGetResponse error ", err)
+ }
+
+ MessageWriteJSON(w, http.StatusOK, payload)
+ return
+
+ case "":
+ payload, err := MatchAndGetResponse(httpResponses, r.URL.Query(), true)
+ if err != nil {
+ log.Fatal("Mock Test Failure - MatchAndGetResponse error ", err)
+ }
+
+ MessageWriteJSON(w, http.StatusOK, payload)
+ return
+
+ case applicationJSON:
+ readBody, err := ioutil.ReadAll(r.Body)
+ if err != nil {
+ log.Fatalf("Mock Test Failure - %v", err)
+ }
+
+ reqVals, err := DeriveURLValsFromJSONMap(readBody)
+ if err != nil {
+ log.Fatalf("Mock Test Failure - %v", err)
+ }
+
+ payload, err := MatchAndGetResponse(httpResponses, reqVals, false)
+ if err != nil {
+ log.Fatal("Mock Test Failure - MatchAndGetResponse error ", err)
+ }
+
+ MessageWriteJSON(w, http.StatusOK, payload)
+ return
+
+ case textPlain:
+ headerData, ok := r.Header["X-Gemini-Payload"]
+ if !ok {
+ log.Fatal("Mock Test Failure - Cannot find header in request")
+ }
+
+ base64data := strings.Join(headerData, "")
+
+ jsonThings, err := common.Base64Decode(base64data)
+ if err != nil {
+ log.Fatal("Mock Test Failure - ", err)
+ }
+
+ reqVals, err := DeriveURLValsFromJSONMap(jsonThings)
+ if err != nil {
+ log.Fatalf("Mock Test Failure - %v", err)
+ }
+
+ payload, err := MatchAndGetResponse(httpResponses, reqVals, false)
+ if err != nil {
+ log.Fatal("Mock Test Failure - MatchAndGetResponse error ", err)
+ }
+
+ MessageWriteJSON(w, http.StatusOK, payload)
+ return
+
+ default:
+ log.Fatalf("Mock Test Failure - Unhandled content type %v",
+ r.Header.Get(contentType))
+ }
+
+ case http.MethodDelete:
+ payload, err := MatchAndGetResponse(httpResponses, r.URL.Query(), true)
+ if err != nil {
+ log.Println(r.URL.Query())
+ log.Fatal("Mock Test Failure - MatchAndGetResponse error ", err)
+ }
+
+ MessageWriteJSON(w, http.StatusOK, payload)
+ return
+
+ default:
+ log.Fatal("Mock Test Failure - Unhandled HTTP method:",
+ r.Header.Get(contentType))
+ }
+ })
+}
+
+// MessageWriteJSON writes JSON to a connection
+func MessageWriteJSON(w http.ResponseWriter, status int, data interface{}) {
+ w.Header().Set(contentType, applicationJSON)
+ w.WriteHeader(status)
+ if data != nil {
+ err := json.NewEncoder(w).Encode(data)
+ if err != nil {
+ w.WriteHeader(http.StatusBadRequest)
+ w.Write([]byte(err.Error()))
+ log.Fatal("Mock Test Failure - JSON encode error", err)
+ }
+ }
+}
+
+// MatchAndGetResponse matches incoming request values with mockdata response
+// values and returns the payload
+func MatchAndGetResponse(mockData []HTTPResponse, requestVals url.Values, isQueryData bool) (json.RawMessage, error) {
+ for i := range mockData {
+ var data string
+ if isQueryData {
+ data = mockData[i].QueryString
+ } else {
+ data = mockData[i].BodyParams
+ }
+
+ var mockVals = url.Values{}
+ var err error
+ if json.Valid([]byte(data)) {
+ something := make(map[string]interface{})
+ err = json.Unmarshal([]byte(data), &something)
+ if err != nil {
+ return nil, err
+ }
+
+ for k, v := range something {
+ switch val := v.(type) {
+ case string:
+ mockVals.Add(k, val)
+ case bool:
+ mockVals.Add(k, strconv.FormatBool(val))
+ case float64:
+ mockVals.Add(k, strconv.FormatFloat(val, 'f', -1, 64))
+ case map[string]interface{}, []interface{}, nil:
+ mockVals.Add(k, fmt.Sprintf("%v", val))
+ default:
+ log.Println(reflect.TypeOf(val))
+ log.Fatal("unhandled type please add as needed")
+ }
+ }
+ } else {
+ mockVals, err = url.ParseQuery(data)
+ if err != nil {
+ return nil, err
+ }
+ }
+
+ if MatchURLVals(mockVals, requestVals) {
+ return mockData[i].Data, nil
+ }
+ }
+ return nil, errors.New("no data could be matched")
+}
diff --git a/exchanges/mock/server_test.go b/exchanges/mock/server_test.go
new file mode 100644
index 00000000000..370d1a3194a
--- /dev/null
+++ b/exchanges/mock/server_test.go
@@ -0,0 +1,117 @@
+package mock
+
+import (
+ "bytes"
+ "encoding/json"
+ "io/ioutil"
+ "net/http"
+ "os"
+ "strings"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/common"
+)
+
+type responsePayload struct {
+ Price float64 `json:"price"`
+ Amount float64 `json:"amount"`
+ Currency string `json:"currency"`
+}
+
+const queryString = "currency=btc&command=getprice"
+const testFile = "test.json"
+
+func TestNewVCRServer(t *testing.T) {
+ _, _, err := NewVCRServer("")
+ if err == nil {
+ t.Error("Test Failed - NewVCRServer error cannot be nil")
+ }
+
+ // Set up mock data
+ test1 := VCRMock{}
+ test1.Routes = make(map[string]map[string][]HTTPResponse)
+ test1.Routes["/test"] = make(map[string][]HTTPResponse)
+
+ rp, err := json.Marshal(responsePayload{Price: 8000.0,
+ Amount: 1,
+ Currency: "bitcoin"})
+ if err != nil {
+ t.Fatal("Test Failed - marshal error", err)
+ }
+
+ testValue := HTTPResponse{Data: rp, QueryString: queryString, BodyParams: queryString}
+ test1.Routes["/test"][http.MethodGet] = []HTTPResponse{testValue}
+
+ payload, err := json.Marshal(test1)
+ if err != nil {
+ t.Fatal("Test Failed - marshal error", err)
+ }
+
+ err = ioutil.WriteFile(testFile, payload, os.ModePerm)
+ if err != nil {
+ t.Fatal("Test Failed - marshal error", err)
+ }
+
+ deets, client, err := NewVCRServer(testFile)
+ if err != nil {
+ t.Error("Test Failed - NewVCRServer error", err)
+ }
+
+ common.HTTPClient = client // Set common package global HTTP Client
+
+ _, err = common.SendHTTPRequest(http.MethodGet,
+ "http://localhost:300/somethingElse?"+queryString,
+ nil,
+ bytes.NewBufferString(""))
+ if err == nil {
+ t.Error("Test Failed - Sending http request expected an error")
+ }
+
+ // Expected good outcome
+ r, err := common.SendHTTPRequest(http.MethodGet,
+ deets,
+ nil,
+ bytes.NewBufferString(""))
+ if err != nil {
+ t.Error("Test Failed - Sending http request error", err)
+ }
+
+ if !strings.Contains(r, "404 page not found") {
+ t.Error("Test Failed - Was not expecting any value returned:", r)
+ }
+
+ r, err = common.SendHTTPRequest(http.MethodGet,
+ deets+"/test?"+queryString,
+ nil,
+ bytes.NewBufferString(""))
+ if err != nil {
+ t.Error("Test Failed - Sending http request error", err)
+ }
+
+ var res responsePayload
+ err = json.Unmarshal([]byte(r), &res)
+ if err != nil {
+ t.Error("Test Failed - unmarshal error", err)
+ }
+
+ if res.Price != 8000 {
+ t.Error("Test Failed - response error expected 8000 but received:",
+ res.Price)
+ }
+
+ if res.Amount != 1 {
+ t.Error("Test Failed - response error expected 1 but received:",
+ res.Amount)
+ }
+
+ if res.Currency != "bitcoin" {
+ t.Error("Test Failed - response error expected \"bitcoin\" but received:",
+ res.Currency)
+ }
+
+ // clean up test.json file
+ err = os.Remove(testFile)
+ if err != nil {
+ t.Fatal("Test Failed - Remove error", err)
+ }
+}
diff --git a/exchanges/okgroup/okgroup.go b/exchanges/okgroup/okgroup.go
index e931c06e276..cf127dd590a 100644
--- a/exchanges/okgroup/okgroup.go
+++ b/exchanges/okgroup/okgroup.go
@@ -643,7 +643,15 @@ func (o *OKGroup) SendHTTPRequest(httpMethod, requestType, requestPath string, d
errCap := errCapFormat{}
errCap.Result = true
- err = o.SendPayload(strings.ToUpper(httpMethod), path, headers, bytes.NewBuffer(payload), &intermediary, authenticated, false, o.Verbose, o.HTTPDebugging)
+ err = o.SendPayload(strings.ToUpper(httpMethod),
+ path, headers,
+ bytes.NewBuffer(payload),
+ &intermediary,
+ authenticated,
+ false,
+ o.Verbose,
+ o.HTTPDebugging,
+ o.HTTPRecording)
if err != nil {
return err
}
diff --git a/exchanges/poloniex/poloniex.go b/exchanges/poloniex/poloniex.go
index 18f25fee7e3..b5282294679 100644
--- a/exchanges/poloniex/poloniex.go
+++ b/exchanges/poloniex/poloniex.go
@@ -348,8 +348,8 @@ func (p *Poloniex) GetLoanOrders(currency string) (LoanOrders, error) {
// GetBalances returns balances for your account.
func (p *Poloniex) GetBalances() (Balance, error) {
var result interface{}
- err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexBalances, url.Values{}, &result)
+ err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexBalances, url.Values{}, &result)
if err != nil {
return Balance{}, err
}
@@ -368,8 +368,8 @@ func (p *Poloniex) GetBalances() (Balance, error) {
// GetCompleteBalances returns complete balances from your account.
func (p *Poloniex) GetCompleteBalances() (CompleteBalances, error) {
var result interface{}
- err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexBalancesComplete, url.Values{}, &result)
+ err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexBalancesComplete, url.Values{}, &result)
if err != nil {
return CompleteBalances{}, err
}
@@ -394,14 +394,18 @@ func (p *Poloniex) GetCompleteBalances() (CompleteBalances, error) {
func (p *Poloniex) GetDepositAddresses() (DepositAddresses, error) {
var result interface{}
addresses := DepositAddresses{}
- err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexDepositAddresses, url.Values{}, &result)
+ err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexDepositAddresses, url.Values{}, &result)
if err != nil {
return addresses, err
}
addresses.Addresses = make(map[string]string)
- data := result.(map[string]interface{})
+ data, ok := result.(map[string]interface{})
+ if !ok {
+ return addresses, errors.New("return val not map[string]interface{}")
+ }
+
for x, y := range data {
addresses.Addresses[x] = y.(string)
}
@@ -421,7 +425,6 @@ func (p *Poloniex) GenerateNewAddress(currency string) (string, error) {
values.Set("currency", currency)
err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexGenerateNewAddress, values, &resp)
-
if err != nil {
return "", err
}
@@ -622,7 +625,6 @@ func (p *Poloniex) Withdraw(currency, address string, amount float64) (bool, err
values.Set("address", address)
err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexWithdraw, values, &result)
-
if err != nil {
return false, err
}
@@ -649,7 +651,6 @@ func (p *Poloniex) GetTradableBalances() (map[string]map[string]float64, error)
result := Response{}
err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexTradableBalances, url.Values{}, &result.Data)
-
if err != nil {
return nil, err
}
@@ -677,7 +678,6 @@ func (p *Poloniex) TransferBalance(currency, from, to string, amount float64) (b
values.Set("toAccount", to)
err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexTransferBalance, values, &result)
-
if err != nil {
return false, err
}
@@ -743,7 +743,6 @@ func (p *Poloniex) CloseMarginPosition(currency string) (bool, error) {
result := GenericResponse{}
err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexMarginPositionClose, values, &result)
-
if err != nil {
return false, err
}
@@ -779,7 +778,6 @@ func (p *Poloniex) CreateLoanOffer(currency string, amount, rate float64, durati
result := Response{}
err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexCreateLoanOffer, values, &result)
-
if err != nil {
return 0, err
}
@@ -798,7 +796,6 @@ func (p *Poloniex) CancelLoanOffer(orderNumber int64) (bool, error) {
values.Set("orderID", strconv.FormatInt(orderNumber, 10))
err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexCancelLoanOffer, values, &result)
-
if err != nil {
return false, err
}
@@ -818,7 +815,6 @@ func (p *Poloniex) GetOpenLoanOffers() (map[string][]LoanOffer, error) {
result := Response{}
err := p.SendAuthenticatedHTTPRequest(http.MethodPost, poloniexOpenLoanOffers, url.Values{}, &result.Data)
-
if err != nil {
return nil, err
}
@@ -849,15 +845,10 @@ func (p *Poloniex) GetLendingHistory(start, end string) ([]LendingHistory, error
}
var resp []LendingHistory
- err := p.SendAuthenticatedHTTPRequest(http.MethodPost,
+ return resp, p.SendAuthenticatedHTTPRequest(http.MethodPost,
poloniexLendingHistory,
vals,
&resp)
-
- if err != nil {
- return nil, err
- }
- return resp, nil
}
// ToggleAutoRenew allows for the autorenew of a contract
@@ -870,7 +861,6 @@ func (p *Poloniex) ToggleAutoRenew(orderNumber int64) (bool, error) {
poloniexAutoRenew,
values,
&result)
-
if err != nil {
return false, err
}
@@ -892,7 +882,8 @@ func (p *Poloniex) SendHTTPRequest(path string, result interface{}) error {
false,
false,
p.Verbose,
- p.HTTPDebugging)
+ p.HTTPDebugging,
+ p.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated HTTP request
@@ -901,13 +892,11 @@ func (p *Poloniex) SendAuthenticatedHTTPRequest(method, endpoint string, values
return fmt.Errorf(exchange.WarningAuthenticatedRequestWithoutCredentialsSet,
p.Name)
}
+
headers := make(map[string]string)
headers["Content-Type"] = "application/x-www-form-urlencoded"
headers["Key"] = p.APIKey
-
- n := p.Requester.GetNonce(true).String()
-
- values.Set("nonce", n)
+ values.Set("nonce", p.Requester.GetNonce(true).String())
values.Set("command", endpoint)
hmac := common.GetHMAC(common.HashSHA512,
@@ -926,7 +915,8 @@ func (p *Poloniex) SendAuthenticatedHTTPRequest(method, endpoint string, values
true,
true,
p.Verbose,
- p.HTTPDebugging)
+ p.HTTPDebugging,
+ p.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/poloniex/poloniex_live_test.go b/exchanges/poloniex/poloniex_live_test.go
new file mode 100644
index 00000000000..b99df606706
--- /dev/null
+++ b/exchanges/poloniex/poloniex_live_test.go
@@ -0,0 +1,32 @@
+//+build mock_test_off
+
+// This will build if build tag mock_test_off is parsed and will do live testing
+// using all tests in (exchange)_test.go
+package poloniex
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+var mockTests = false
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ poloniexConfig, err := cfg.GetExchangeConfig("Poloniex")
+ if err != nil {
+ log.Fatal("Test Failed - Poloniex Setup() init error", err)
+ }
+ poloniexConfig.AuthenticatedAPISupport = true
+ poloniexConfig.APIKey = apiKey
+ poloniexConfig.APISecret = apiSecret
+ p.SetDefaults()
+ p.Setup(&poloniexConfig)
+ log.Printf(sharedtestvalues.LiveTesting, p.GetName(), p.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/poloniex/poloniex_mock_test.go b/exchanges/poloniex/poloniex_mock_test.go
new file mode 100644
index 00000000000..b5395af8cdc
--- /dev/null
+++ b/exchanges/poloniex/poloniex_mock_test.go
@@ -0,0 +1,44 @@
+//+build !mock_test_off
+
+// This will build if build tag mock_test_off is not parsed and will try to mock
+// all tests in _test.go
+package poloniex
+
+import (
+ "log"
+ "os"
+ "testing"
+
+ "github.com/thrasher-corp/gocryptotrader/config"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/mock"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
+)
+
+const mockfile = "../../testdata/http_mock/poloniex/poloniex.json"
+
+var mockTests = true
+
+func TestMain(m *testing.M) {
+ cfg := config.GetConfig()
+ cfg.LoadConfig("../../testdata/configtest.json")
+ poloniexConfig, err := cfg.GetExchangeConfig("Poloniex")
+ if err != nil {
+ log.Fatal("Test Failed - Poloniex Setup() init error", err)
+ }
+ poloniexConfig.AuthenticatedAPISupport = true
+ poloniexConfig.APIKey = apiKey
+ poloniexConfig.APISecret = apiSecret
+ p.SetDefaults()
+ p.Setup(&poloniexConfig)
+
+ serverDetails, newClient, err := mock.NewVCRServer(mockfile)
+ if err != nil {
+ log.Fatalf("Test Failed - Mock server error %s", err)
+ }
+
+ p.HTTPClient = newClient
+ p.APIUrl = serverDetails
+
+ log.Printf(sharedtestvalues.MockTesting, p.GetName(), p.APIUrl)
+ os.Exit(m.Run())
+}
diff --git a/exchanges/poloniex/poloniex_test.go b/exchanges/poloniex/poloniex_test.go
index 63669c51851..0e369175947 100644
--- a/exchanges/poloniex/poloniex_test.go
+++ b/exchanges/poloniex/poloniex_test.go
@@ -7,15 +7,12 @@ import (
"github.com/gorilla/websocket"
"github.com/thrasher-corp/gocryptotrader/common"
- "github.com/thrasher-corp/gocryptotrader/config"
"github.com/thrasher-corp/gocryptotrader/currency"
exchange "github.com/thrasher-corp/gocryptotrader/exchanges"
"github.com/thrasher-corp/gocryptotrader/exchanges/sharedtestvalues"
"github.com/thrasher-corp/gocryptotrader/exchanges/websocket/wshandler"
)
-var p Poloniex
-
// Please supply your own APIKEYS here for due diligence testing
const (
apiKey = ""
@@ -23,31 +20,21 @@ const (
canManipulateRealOrders = false
)
-var isSetup bool
+var p Poloniex
-func TestSetup(t *testing.T) {
- if !isSetup {
- cfg := config.GetConfig()
- cfg.LoadConfig("../../testdata/configtest.json")
- poloniexConfig, err := cfg.GetExchangeConfig("Poloniex")
- if err != nil {
- t.Error("Test Failed - Poloniex Setup() init error")
- }
- poloniexConfig.AuthenticatedWebsocketAPISupport = true
- poloniexConfig.AuthenticatedAPISupport = true
- poloniexConfig.APIKey = apiKey
- poloniexConfig.APISecret = apiSecret
- p.SetDefaults()
- p.Setup(&poloniexConfig)
- isSetup = true
+func areTestAPIKeysSet() bool {
+ if p.APIKey != "" && p.APIKey != "Key" &&
+ p.APISecret != "" && p.APISecret != "Secret" {
+ return true
}
+ return false
}
func TestGetTicker(t *testing.T) {
t.Parallel()
_, err := p.GetTicker()
if err != nil {
- t.Error("Test faild - Poloniex GetTicker() error")
+ t.Error("Test Failed - Poloniex GetTicker() error", err)
}
}
@@ -115,37 +102,43 @@ func setFeeBuilder() *exchange.FeeBuilder {
// TestGetFeeByTypeOfflineTradeFee logic test
func TestGetFeeByTypeOfflineTradeFee(t *testing.T) {
t.Parallel()
+
var feeBuilder = setFeeBuilder()
p.GetFeeByType(feeBuilder)
if apiKey == "" || apiSecret == "" {
if feeBuilder.FeeType != exchange.OfflineTradeFee {
- t.Errorf("Expected %v, received %v", exchange.OfflineTradeFee, feeBuilder.FeeType)
+ t.Errorf("Expected %v, received %v",
+ exchange.OfflineTradeFee,
+ feeBuilder.FeeType)
}
} else {
if feeBuilder.FeeType != exchange.CryptocurrencyTradeFee {
- t.Errorf("Expected %v, received %v", exchange.CryptocurrencyTradeFee, feeBuilder.FeeType)
+ t.Errorf("Expected %v, received %v",
+ exchange.CryptocurrencyTradeFee,
+ feeBuilder.FeeType)
}
}
}
func TestGetFee(t *testing.T) {
t.Parallel()
- TestSetup(t)
var feeBuilder = setFeeBuilder()
- if areTestAPIKeysSet() {
+ if areTestAPIKeysSet() || mockTests {
// CryptocurrencyTradeFee Basic
- if resp, err := p.GetFee(feeBuilder); resp != float64(0.002) || err != nil {
+ if resp, err := p.GetFee(feeBuilder); resp != float64(0.0025) || err != nil {
t.Error(err)
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0.0015), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0.0025), resp)
}
// CryptocurrencyTradeFee High quantity
feeBuilder = setFeeBuilder()
feeBuilder.Amount = 1000
feeBuilder.PurchasePrice = 1000
- if resp, err := p.GetFee(feeBuilder); resp != float64(2000) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(2000), resp)
+ if resp, err := p.GetFee(feeBuilder); resp != float64(2500) || err != nil {
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(2500), resp)
t.Error(err)
}
@@ -153,7 +146,8 @@ func TestGetFee(t *testing.T) {
feeBuilder = setFeeBuilder()
feeBuilder.PurchasePrice = -1000
if resp, err := p.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0), resp)
t.Error(err)
}
}
@@ -161,7 +155,8 @@ func TestGetFee(t *testing.T) {
feeBuilder = setFeeBuilder()
feeBuilder.FeeType = exchange.CryptocurrencyWithdrawalFee
if resp, err := p.GetFee(feeBuilder); resp != float64(0.001) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0.001), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0.001), resp)
t.Error(err)
}
@@ -170,7 +165,8 @@ func TestGetFee(t *testing.T) {
feeBuilder.Pair.Base = currency.NewCode("hello")
feeBuilder.FeeType = exchange.CryptocurrencyWithdrawalFee
if resp, err := p.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0), resp)
t.Error(err)
}
@@ -178,7 +174,8 @@ func TestGetFee(t *testing.T) {
feeBuilder = setFeeBuilder()
feeBuilder.FeeType = exchange.CyptocurrencyDepositFee
if resp, err := p.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0), resp)
t.Error(err)
}
@@ -186,7 +183,8 @@ func TestGetFee(t *testing.T) {
feeBuilder = setFeeBuilder()
feeBuilder.FeeType = exchange.InternationalBankDepositFee
if resp, err := p.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0), resp)
t.Error(err)
}
@@ -195,70 +193,67 @@ func TestGetFee(t *testing.T) {
feeBuilder.FeeType = exchange.InternationalBankWithdrawalFee
feeBuilder.FiatCurrency = currency.USD
if resp, err := p.GetFee(feeBuilder); resp != float64(0) || err != nil {
- t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f", float64(0), resp)
+ t.Errorf("Test Failed - GetFee() error. Expected: %f, Received: %f",
+ float64(0), resp)
t.Error(err)
}
}
func TestFormatWithdrawPermissions(t *testing.T) {
t.Parallel()
- TestSetup(t)
- expectedResult := exchange.AutoWithdrawCryptoWithAPIPermissionText + " & " + exchange.NoFiatWithdrawalsText
+ expectedResult := exchange.AutoWithdrawCryptoWithAPIPermissionText +
+ " & " +
+ exchange.NoFiatWithdrawalsText
withdrawPermissions := p.FormatWithdrawPermissions()
if withdrawPermissions != expectedResult {
- t.Errorf("Expected: %s, Received: %s", expectedResult, withdrawPermissions)
+ t.Errorf("Expected: %s, Received: %s",
+ expectedResult,
+ withdrawPermissions)
}
}
func TestGetActiveOrders(t *testing.T) {
t.Parallel()
- TestSetup(t)
-
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
}
_, err := p.GetActiveOrders(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
- t.Errorf("Could not get open orders: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
- t.Error("Expecting an error when no keys are set")
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - GetActiveOrders() error", err)
+ case !areTestAPIKeysSet() && !mockTests && err == nil:
+ t.Error("Test Failed - Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock GetActiveOrders() err", err)
}
}
func TestGetOrderHistory(t *testing.T) {
t.Parallel()
- TestSetup(t)
-
var getOrdersRequest = exchange.GetOrdersRequest{
OrderType: exchange.AnyOrderType,
}
_, err := p.GetOrderHistory(&getOrdersRequest)
- if areTestAPIKeysSet() && err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil:
t.Errorf("Could not get order history: %s", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && err == nil && !mockTests:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Errorf("Could not mock get order history: %s", err)
}
}
// Any tests below this line have the ability to impact your orders on the exchange. Enable canManipulateRealOrders to run them
// ----------------------------------------------------------------------------------------------------------------------------
-func areTestAPIKeysSet() bool {
- if p.APIKey != "" && p.APIKey != "Key" &&
- p.APISecret != "" && p.APISecret != "Secret" {
- return true
- }
- return false
-}
func TestSubmitOrder(t *testing.T) {
t.Parallel()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -274,46 +269,43 @@ func TestSubmitOrder(t *testing.T) {
1,
10,
"hi")
-
- if areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced) {
+ switch {
+ case areTestAPIKeysSet() && (err != nil || !response.IsOrderPlaced):
t.Errorf("Order failed to be placed: %v", err)
- } else if !areTestAPIKeysSet() && err == nil {
+ case !areTestAPIKeysSet() && !mockTests && err == nil:
t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock SubmitOrder() err", err)
}
}
func TestCancelExchangeOrder(t *testing.T) {
t.Parallel()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
- currencyPair := currency.NewPair(currency.LTC, currency.BTC)
-
var orderCancellation = &exchange.OrderCancellation{
OrderID: "1",
WalletAddress: "1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB",
AccountID: "1",
- CurrencyPair: currencyPair,
+ CurrencyPair: currency.NewPair(currency.LTC, currency.BTC),
}
err := p.CancelOrder(orderCancellation)
-
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && !mockTests && err == nil:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil:
t.Errorf("Could not cancel orders: %v", err)
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock CancelExchangeOrder() err", err)
}
}
func TestCancelAllExchangeOrders(t *testing.T) {
t.Parallel()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
@@ -327,14 +319,14 @@ func TestCancelAllExchangeOrders(t *testing.T) {
}
resp, err := p.CancelAllOrders(orderCancellation)
-
- if !areTestAPIKeysSet() && err == nil {
+ switch {
+ case !areTestAPIKeysSet() && !mockTests && err == nil:
t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ case areTestAPIKeysSet() && err != nil:
t.Errorf("Could not cancel orders: %v", err)
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock CancelAllExchangeOrders() err", err)
}
-
if len(resp.OrderStatus) > 0 {
t.Errorf("%v orders failed to cancel", len(resp.OrderStatus))
}
@@ -342,87 +334,88 @@ func TestCancelAllExchangeOrders(t *testing.T) {
func TestModifyOrder(t *testing.T) {
t.Parallel()
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
+ t.Skip("API keys set, canManipulateRealOrders false, skipping test")
+ }
+
_, err := p.ModifyOrder(&exchange.ModifyOrder{OrderID: "1337", Price: 1337})
- if err == nil {
- t.Error("Test Failed - ModifyOrder() error")
+ switch {
+ case areTestAPIKeysSet() && err != nil && mockTests:
+ t.Error("Test Failed - ModifyOrder() error", err)
+ case !areTestAPIKeysSet() && !mockTests && err == nil:
+ t.Error("Test Failed - ModifyOrder() error cannot be nil")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock ModifyOrder() err", err)
}
}
func TestWithdraw(t *testing.T) {
t.Parallel()
- TestSetup(t)
var withdrawCryptoRequest = exchange.WithdrawRequest{
- Amount: 100,
+ Amount: 0,
Currency: currency.LTC,
Address: "1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB",
Description: "WITHDRAW IT ALL",
}
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
_, err := p.WithdrawCryptocurrencyFunds(&withdrawCryptoRequest)
- if !areTestAPIKeysSet() && err == nil {
- t.Error("Expecting an error when no keys are set")
- }
- if areTestAPIKeysSet() && err != nil {
+ switch {
+ case areTestAPIKeysSet() && err != nil:
t.Errorf("Withdraw failed to be placed: %v", err)
+ case !areTestAPIKeysSet() && !mockTests && err == nil:
+ t.Error("Expecting an error when no keys are set")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock Withdraw() err", err)
}
}
func TestWithdrawFiat(t *testing.T) {
t.Parallel()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
- var withdrawFiatRequest = exchange.WithdrawRequest{}
-
+ var withdrawFiatRequest exchange.WithdrawRequest
_, err := p.WithdrawFiatFunds(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
- t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
+ t.Errorf("Expected '%v', received: '%v'",
+ common.ErrFunctionNotSupported, err)
}
}
func TestWithdrawInternationalBank(t *testing.T) {
t.Parallel()
- TestSetup(t)
-
- if areTestAPIKeysSet() && !canManipulateRealOrders {
+ if areTestAPIKeysSet() && !canManipulateRealOrders && !mockTests {
t.Skip("API keys set, canManipulateRealOrders false, skipping test")
}
- var withdrawFiatRequest = exchange.WithdrawRequest{}
-
+ var withdrawFiatRequest exchange.WithdrawRequest
_, err := p.WithdrawFiatFundsToInternationalBank(&withdrawFiatRequest)
if err != common.ErrFunctionNotSupported {
- t.Errorf("Expected '%v', received: '%v'", common.ErrFunctionNotSupported, err)
+ t.Errorf("Expected '%v', received: '%v'",
+ common.ErrFunctionNotSupported, err)
}
}
func TestGetDepositAddress(t *testing.T) {
t.Parallel()
- TestSetup(t)
-
- if areTestAPIKeysSet() {
- _, err := p.GetDepositAddress(currency.DASH, "")
- if err != nil {
- t.Error("Test Failed - GetDepositAddress()", err)
- }
- } else {
- _, err := p.GetDepositAddress(currency.DASH, "")
- if err == nil {
- t.Error("Test Failed - GetDepositAddress()")
- }
+ _, err := p.GetDepositAddress(currency.DASH, "")
+ switch {
+ case areTestAPIKeysSet() && err != nil:
+ t.Error("Test Failed - GetDepositAddress()", err)
+ case !areTestAPIKeysSet() && !mockTests && err == nil:
+ t.Error("Test Failed - GetDepositAddress() cannot be nil")
+ case mockTests && err != nil:
+ t.Error("Test Failed - Mock GetDepositAddress() err", err)
}
}
func TestWsHandleAccountData(t *testing.T) {
t.Parallel()
- TestSetup(t)
p.Websocket.DataHandler = sharedtestvalues.GetWebsocketInterfaceChannelOverride()
jsons := []string{
`[["n",225,807230187,0,"1000.00000000","0.10000000","2018-11-07 16:42:42"],["b",267,"e","-0.10000000"]]`,
@@ -442,7 +435,7 @@ func TestWsHandleAccountData(t *testing.T) {
// TestWsAuth dials websocket, sends login request.
// Will receive a message only on failure
func TestWsAuth(t *testing.T) {
- TestSetup(t)
+ t.Parallel()
if !p.Websocket.IsEnabled() && !p.AuthenticatedWebsocketAPISupport || !areTestAPIKeysSet() {
t.Skip(wshandler.WebsocketNotEnabled)
}
diff --git a/exchanges/request/request.go b/exchanges/request/request.go
index 79731be9568..bc4ef032b56 100644
--- a/exchanges/request/request.go
+++ b/exchanges/request/request.go
@@ -14,6 +14,7 @@ import (
"time"
"github.com/thrasher-corp/gocryptotrader/common"
+ "github.com/thrasher-corp/gocryptotrader/exchanges/mock"
"github.com/thrasher-corp/gocryptotrader/exchanges/nonce"
log "github.com/thrasher-corp/gocryptotrader/logger"
)
@@ -70,6 +71,7 @@ type Job struct {
AuthRequest bool
Verbose bool
HTTPDebugging bool
+ Record bool
}
// NewRateLimit creates a new RateLimit
@@ -264,13 +266,18 @@ func (r *Requester) checkRequest(method, path string, body io.Reader, headers ma
}
// DoRequest performs a HTTP/HTTPS request with the supplied params
-func (r *Requester) DoRequest(req *http.Request, path string, body io.Reader, result interface{}, authRequest, verbose, httpDebug bool) error {
+func (r *Requester) DoRequest(req *http.Request, path string, body io.Reader, result interface{}, authRequest, verbose, httpDebug, httpRecord bool) error {
if verbose {
- log.Debugf("%s exchange request path: %s requires rate limiter: %v", r.Name, path, r.RequiresRateLimiter())
+ log.Debugf("%s exchange request path: %s requires rate limiter: %v",
+ r.Name,
+ path,
+ r.RequiresRateLimiter())
+
for k, d := range req.Header {
log.Debugf("%s exchange request header [%s]: %s", r.Name, k, d)
}
- log.Debug(body)
+ log.Debugf("%s exchange request type: %s", r.Name, req.Method)
+ log.Debugf("%s exchange request body: %v", r.Name, body)
}
var timeoutError error
@@ -328,6 +335,14 @@ func (r *Requester) DoRequest(req *http.Request, path string, body io.Reader, re
return err
}
+ if httpRecord {
+ // This dumps http responses for future mocking implementations
+ err = mock.HTTPRecord(resp, r.Name, contents)
+ if err != nil {
+ return fmt.Errorf("mock recording failure %s", err)
+ }
+ }
+
if resp.StatusCode != 200 && resp.StatusCode != 201 && resp.StatusCode != 202 {
err = fmt.Errorf("unsuccessful HTTP status code: %d", resp.StatusCode)
if verbose {
@@ -371,7 +386,7 @@ func (r *Requester) worker() {
if !r.IsRateLimited(x.AuthRequest) {
r.IncrementRequests(x.AuthRequest)
- err := r.DoRequest(x.Request, x.Path, x.Body, x.Result, x.AuthRequest, x.Verbose, x.HTTPDebugging)
+ err := r.DoRequest(x.Request, x.Path, x.Body, x.Result, x.AuthRequest, x.Verbose, x.HTTPDebugging, x.Record)
x.JobResult <- &JobResult{
Error: err,
Result: x.Result,
@@ -395,7 +410,7 @@ func (r *Requester) worker() {
log.Debugf("%s request. No longer rate limited! Doing request", r.Name)
}
- err := r.DoRequest(x.Request, x.Path, x.Body, x.Result, x.AuthRequest, x.Verbose, x.HTTPDebugging)
+ err := r.DoRequest(x.Request, x.Path, x.Body, x.Result, x.AuthRequest, x.Verbose, x.HTTPDebugging, x.Record)
x.JobResult <- &JobResult{
Error: err,
Result: x.Result,
@@ -408,7 +423,7 @@ func (r *Requester) worker() {
}
// SendPayload handles sending HTTP/HTTPS requests
-func (r *Requester) SendPayload(method, path string, headers map[string]string, body io.Reader, result interface{}, authRequest, nonceEnabled, verbose, httpDebugging bool) error {
+func (r *Requester) SendPayload(method, path string, headers map[string]string, body io.Reader, result interface{}, authRequest, nonceEnabled, verbose, httpDebugging, record bool) error {
if !nonceEnabled {
r.lock()
}
@@ -444,7 +459,7 @@ func (r *Requester) SendPayload(method, path string, headers map[string]string,
if !r.RequiresRateLimiter() {
r.unlock()
- return r.DoRequest(req, path, body, result, authRequest, verbose, httpDebugging)
+ return r.DoRequest(req, path, body, result, authRequest, verbose, httpDebugging, record)
}
if len(r.Jobs) == maxRequestJobs {
@@ -473,6 +488,7 @@ func (r *Requester) SendPayload(method, path string, headers map[string]string,
AuthRequest: authRequest,
Verbose: verbose,
HTTPDebugging: httpDebugging,
+ Record: record,
}
if verbose {
diff --git a/exchanges/request/request_test.go b/exchanges/request/request_test.go
index 6517965afdf..aa5c36df15a 100644
--- a/exchanges/request/request_test.go
+++ b/exchanges/request/request_test.go
@@ -200,7 +200,7 @@ func TestCheckRequest(t *testing.T) {
func TestDoRequest(t *testing.T) {
var test = new(Requester)
- err := test.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, false, false, true, false)
+ err := test.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, false, false, true, false, false)
if err == nil {
t.Fatal("not iniitalised")
}
@@ -211,17 +211,17 @@ func TestDoRequest(t *testing.T) {
}
r.Name = "bitfinex"
- err = r.SendPayload("BLAH", "https://www.google.com", nil, nil, nil, false, false, true, false)
+ err = r.SendPayload("BLAH", "https://www.google.com", nil, nil, nil, false, false, true, false, false)
if err == nil {
t.Fatal("unexpected values")
}
- err = r.SendPayload(http.MethodGet, "", nil, nil, nil, false, false, true, false)
+ err = r.SendPayload(http.MethodGet, "", nil, nil, nil, false, false, true, false, false)
if err == nil {
t.Fatal("unexpected values")
}
- err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, false, false, true, false)
+ err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, false, false, true, false, false)
if err != nil {
t.Fatal("unexpected values")
}
@@ -233,7 +233,7 @@ func TestDoRequest(t *testing.T) {
r.SetRateLimit(false, time.Second, 0)
r.SetRateLimit(true, time.Second, 0)
- err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, false, false, true, false)
+ err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, false, false, true, false, false)
if err != nil {
t.Fatal("unexpected values")
}
@@ -250,7 +250,7 @@ func TestDoRequest(t *testing.T) {
t.Fatal("unexepcted values")
}
- err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, false, false, true, false)
+ err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, false, false, true, false, false)
if err != nil {
t.Fatal("unexpected values")
}
@@ -261,27 +261,27 @@ func TestDoRequest(t *testing.T) {
t.Fatal("unexepcted values")
}
- err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, true, false, true, false)
+ err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, nil, true, false, true, false, false)
if err != nil {
t.Fatal("unexpected values")
}
var result interface{}
- err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, result, false, false, true, false)
+ err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, result, false, false, true, false, false)
if err != nil {
t.Fatal(err)
}
headers := make(map[string]string)
headers["content-type"] = "content/text"
- err = r.SendPayload(http.MethodPost, "https://bitfinex.com", headers, nil, result, false, false, true, false)
+ err = r.SendPayload(http.MethodPost, "https://bitfinex.com", headers, nil, result, false, false, true, false, false)
if err != nil {
t.Fatal(err)
}
r.StartCycle()
r.UnauthLimit.SetRequests(100)
- err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, result, false, false, false, false)
+ err = r.SendPayload(http.MethodGet, "https://www.google.com", nil, nil, result, false, false, false, false, false)
if err != nil {
t.Fatal("unexpected values")
}
@@ -297,7 +297,7 @@ func TestDoRequest(t *testing.T) {
}
r.HTTPClient.Timeout = 1 * time.Second
- err = r.SendPayload(http.MethodPost, "https://httpstat.us/200?sleep=20000", nil, nil, nil, false, false, true, false)
+ err = r.SendPayload(http.MethodPost, "https://httpstat.us/200?sleep=20000", nil, nil, nil, false, false, true, false, false)
if err == nil {
t.Fatal(err)
}
@@ -327,6 +327,6 @@ func BenchmarkRequestLockMech(b *testing.B) {
var r = new(Requester)
var meep interface{}
for n := 0; n < b.N; n++ {
- r.SendPayload(http.MethodGet, "127.0.0.1", nil, nil, &meep, false, false, false, false)
+ r.SendPayload(http.MethodGet, "127.0.0.1", nil, nil, &meep, false, false, false, false, false)
}
}
diff --git a/exchanges/sharedtestvalues/sharedtestvalues.go b/exchanges/sharedtestvalues/sharedtestvalues.go
index 3e9c92c83d5..2273233845d 100644
--- a/exchanges/sharedtestvalues/sharedtestvalues.go
+++ b/exchanges/sharedtestvalues/sharedtestvalues.go
@@ -13,6 +13,9 @@ const (
// WebsocketChannelOverrideCapacity used in websocket testing
// Defines channel capacity as defaults size can block tests
WebsocketChannelOverrideCapacity = 20
+
+ MockTesting = "Mock testing framework in use for %s exchange @ %s on REST endpoints only"
+ LiveTesting = "Mock testing bypassed; live testing of REST endpoints in use for %s exchange @ %s"
)
// GetWebsocketInterfaceChannelOverride returns a new interface based channel
diff --git a/exchanges/yobit/yobit.go b/exchanges/yobit/yobit.go
index d894fbf87cb..0569b32c576 100644
--- a/exchanges/yobit/yobit.go
+++ b/exchanges/yobit/yobit.go
@@ -340,7 +340,8 @@ func (y *Yobit) SendHTTPRequest(path string, result interface{}) error {
false,
false,
y.Verbose,
- y.HTTPDebugging)
+ y.HTTPDebugging,
+ y.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends an authenticated HTTP request to Yobit
@@ -384,7 +385,8 @@ func (y *Yobit) SendAuthenticatedHTTPRequest(path string, params url.Values, res
true,
true,
y.Verbose,
- y.HTTPDebugging)
+ y.HTTPDebugging,
+ y.HTTPRecording)
}
// GetFee returns an estimate of fee based on type of transaction
diff --git a/exchanges/zb/zb.go b/exchanges/zb/zb.go
index 6f15e723cca..24b31a8bad6 100644
--- a/exchanges/zb/zb.go
+++ b/exchanges/zb/zb.go
@@ -391,7 +391,16 @@ func (z *ZB) GetCryptoAddress(currency currency.Code) (UserAddress, error) {
// SendHTTPRequest sends an unauthenticated HTTP request
func (z *ZB) SendHTTPRequest(path string, result interface{}) error {
- return z.SendPayload(http.MethodGet, path, nil, nil, result, false, false, z.Verbose, z.HTTPDebugging)
+ return z.SendPayload(http.MethodGet,
+ path,
+ nil,
+ nil,
+ result,
+ false,
+ false,
+ z.Verbose,
+ z.HTTPDebugging,
+ z.HTTPRecording)
}
// SendAuthenticatedHTTPRequest sends authenticated requests to the zb API
@@ -429,7 +438,8 @@ func (z *ZB) SendAuthenticatedHTTPRequest(httpMethod string, params url.Values,
true,
false,
z.Verbose,
- z.HTTPDebugging)
+ z.HTTPDebugging,
+ z.HTTPRecording)
if err != nil {
return err
}
diff --git a/testdata/http_mock/anx/anx.json b/testdata/http_mock/anx/anx.json
new file mode 100644
index 00000000000..64c8143c902
--- /dev/null
+++ b/testdata/http_mock/anx/anx.json
@@ -0,0 +1,2404 @@
+{
+ "routes": {
+ "/api/2/BTCUSD/money/depth/full": {
+ "GET": [
+ {
+ "data": {
+ "data": {
+ "asks": [],
+ "bids": [],
+ "dataUpdateTime": "1565223784172000",
+ "now": "1565223792073000"
+ },
+ "result": "success"
+ },
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/2/BTCUSD/money/ticker": {
+ "GET": [
+ {
+ "data": {
+ "data": {
+ "avg": {
+ "currency": "USD",
+ "display": "7,009.18974 USD",
+ "display_short": "7,009.19 USD",
+ "value": "7009.18974",
+ "value_int": "700918974"
+ },
+ "buy": {
+ "currency": "USD",
+ "display": " USD",
+ "display_short": " USD",
+ "value": "",
+ "value_int": ""
+ },
+ "dataUpdateTime": "1565221354182000",
+ "high": {
+ "currency": "USD",
+ "display": "7,018.37948 USD",
+ "display_short": "7,018.38 USD",
+ "value": "7018.37948",
+ "value_int": "701837948"
+ },
+ "last": {
+ "currency": "USD",
+ "display": "7,000.00000 USD",
+ "display_short": "7,000.00 USD",
+ "value": "7000.00000",
+ "value_int": "700000000"
+ },
+ "low": {
+ "currency": "USD",
+ "display": "7,000.00000 USD",
+ "display_short": "7,000.00 USD",
+ "value": "7000.00000",
+ "value_int": "700000000"
+ },
+ "now": "1565221384172000",
+ "sell": {
+ "currency": "USD",
+ "display": " USD",
+ "display_short": " USD",
+ "value": "",
+ "value_int": ""
+ },
+ "vol": {
+ "currency": "BTC",
+ "display": "0.79840000 BTC",
+ "display_short": "0.80 BTC",
+ "value": "0.79840000",
+ "value_int": "79840000"
+ },
+ "vwap": {
+ "currency": "USD",
+ "display": "1,696.89683 USD",
+ "display_short": "1,696.90 USD",
+ "value": "1696.89683",
+ "value_int": "169689683"
+ }
+ },
+ "result": "success"
+ },
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/3/account": {
+ "POST": [
+ {
+ "data": {
+ "data": {
+ "Created": "2017-04-18 11:21:21",
+ "Language": "en_US",
+ "Login": "",
+ "Rights": [
+ "trade",
+ "withdraw",
+ "get_info"
+ ],
+ "Trade_Fee": "0.2000",
+ "Wallets": {
+ "ANX": {
+ "Available_Balance": {
+ "currency": "ANX",
+ "display": "0.00000000 ANX",
+ "displayShort": "0.00 ANX",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "ANX",
+ "display": "0.00000000 ANX",
+ "displayShort": "0.00 ANX",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "ANX",
+ "display": "50,000.00000000 ANX",
+ "displayShort": "50,000.00 ANX",
+ "value": "50000.00000000",
+ "valueInt": "5000000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "ANX",
+ "display": "50,000.00000000 ANX",
+ "displayShort": "50,000.00 ANX",
+ "value": "50000.00000000",
+ "valueInt": "5000000000000"
+ }
+ },
+ "ATENC": {
+ "Available_Balance": {
+ "currency": "ATENC",
+ "display": "0.00000000 ATENC",
+ "displayShort": "0.00 ATENC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "ATENC",
+ "display": "0.00000000 ATENC",
+ "displayShort": "0.00 ATENC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "ATENC",
+ "display": "100.00000000 ATENC",
+ "displayShort": "100.00 ATENC",
+ "value": "100.00000000",
+ "valueInt": "10000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "ATENC",
+ "display": "100.00000000 ATENC",
+ "displayShort": "100.00 ATENC",
+ "value": "100.00000000",
+ "valueInt": "10000000000"
+ }
+ },
+ "AUD": {
+ "Available_Balance": {
+ "currency": "AUD",
+ "display": "0.00000 AUD",
+ "displayShort": "0.00 AUD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "AUD",
+ "display": "0.00000 AUD",
+ "displayShort": "0.00 AUD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "AUD",
+ "display": "0.00000 AUD",
+ "displayShort": "0.00 AUD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Max_Withdraw": {
+ "currency": "AUD",
+ "display": "0.00000 AUD",
+ "displayShort": "0.00 AUD",
+ "value": "0.00000",
+ "valueInt": "0"
+ }
+ },
+ "BTC": {
+ "Available_Balance": {
+ "currency": "BTC",
+ "display": "0.00000000 BTC",
+ "displayShort": "0.00 BTC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "BTC",
+ "display": "0.00000000 BTC",
+ "displayShort": "0.00 BTC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "BTC",
+ "display": "2.00000000 BTC",
+ "displayShort": "2.00 BTC",
+ "value": "2.00000000",
+ "valueInt": "200000000"
+ },
+ "Max_Withdraw": {
+ "currency": "BTC",
+ "display": "2.00000000 BTC",
+ "displayShort": "2.00 BTC",
+ "value": "2.00000000",
+ "valueInt": "200000000"
+ }
+ },
+ "CAD": {
+ "Available_Balance": {
+ "currency": "CAD",
+ "display": "0.00000 CAD",
+ "displayShort": "0.00 CAD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "CAD",
+ "display": "0.00000 CAD",
+ "displayShort": "0.00 CAD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "CAD",
+ "display": "10,000.00000 CAD",
+ "displayShort": "10,000.00 CAD",
+ "value": "10000.00000",
+ "valueInt": "1000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "CAD",
+ "display": "10,000.00000 CAD",
+ "displayShort": "10,000.00 CAD",
+ "value": "10000.00000",
+ "valueInt": "1000000000"
+ }
+ },
+ "CHF": {
+ "Available_Balance": {
+ "currency": "CHF",
+ "display": "0.00000 CHF",
+ "displayShort": "0.00 CHF",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "CHF",
+ "display": "0.00000 CHF",
+ "displayShort": "0.00 CHF",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "CHF",
+ "display": "10,000.00000 CHF",
+ "displayShort": "10,000.00 CHF",
+ "value": "10000.00000",
+ "valueInt": "1000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "CHF",
+ "display": "10,000.00000 CHF",
+ "displayShort": "10,000.00 CHF",
+ "value": "10000.00000",
+ "valueInt": "1000000000"
+ }
+ },
+ "CNY": {
+ "Available_Balance": {
+ "currency": "CNY",
+ "display": "0.00000 CNY",
+ "displayShort": "0.00 CNY",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "CNY",
+ "display": "0.00000 CNY",
+ "displayShort": "0.00 CNY",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "CNY",
+ "display": "0.00000 CNY",
+ "displayShort": "0.00 CNY",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Max_Withdraw": {
+ "currency": "CNY",
+ "display": "0.00000 CNY",
+ "displayShort": "0.00 CNY",
+ "value": "0.00000",
+ "valueInt": "0"
+ }
+ },
+ "DOGE": {
+ "Available_Balance": {
+ "currency": "DOGE",
+ "display": "0.00000000 DOGE",
+ "displayShort": "0.00 DOGE",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "DOGE",
+ "display": "0.00000000 DOGE",
+ "displayShort": "0.00 DOGE",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "DOGE",
+ "display": "20,000,000.00000000 DOGE",
+ "displayShort": "20,000,000.00 DOGE",
+ "value": "20000000.00000000",
+ "valueInt": "2000000000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "DOGE",
+ "display": "20,000,000.00000000 DOGE",
+ "displayShort": "20,000,000.00 DOGE",
+ "value": "20000000.00000000",
+ "valueInt": "2000000000000000"
+ }
+ },
+ "EGD": {
+ "Available_Balance": {
+ "currency": "EGD",
+ "display": "0.00000000 EGD",
+ "displayShort": "0.00 EGD",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "EGD",
+ "display": "0.00000000 EGD",
+ "displayShort": "0.00 EGD",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "EGD",
+ "display": "80.00000000 EGD",
+ "displayShort": "80.00 EGD",
+ "value": "80.00000000",
+ "valueInt": "8000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "EGD",
+ "display": "80.00000000 EGD",
+ "displayShort": "80.00 EGD",
+ "value": "80.00000000",
+ "valueInt": "8000000000"
+ }
+ },
+ "ETH": {
+ "Available_Balance": {
+ "currency": "ETH",
+ "display": "0.00000000 ETH",
+ "displayShort": "0.00 ETH",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "ETH",
+ "display": "0.00000000 ETH",
+ "displayShort": "0.00 ETH",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "ETH",
+ "display": "200.00000000 ETH",
+ "displayShort": "200.00 ETH",
+ "value": "200.00000000",
+ "valueInt": "20000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "ETH",
+ "display": "200.00000000 ETH",
+ "displayShort": "200.00 ETH",
+ "value": "200.00000000",
+ "valueInt": "20000000000"
+ }
+ },
+ "EUR": {
+ "Available_Balance": {
+ "currency": "EUR",
+ "display": "0.00000 EUR",
+ "displayShort": "0.00 EUR",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "EUR",
+ "display": "0.00000 EUR",
+ "displayShort": "0.00 EUR",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "EUR",
+ "display": "0.00000 EUR",
+ "displayShort": "0.00 EUR",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Max_Withdraw": {
+ "currency": "EUR",
+ "display": "0.00000 EUR",
+ "displayShort": "0.00 EUR",
+ "value": "0.00000",
+ "valueInt": "0"
+ }
+ },
+ "GBP": {
+ "Available_Balance": {
+ "currency": "GBP",
+ "display": "0.00000 GBP",
+ "displayShort": "0.00 GBP",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "GBP",
+ "display": "0.00000 GBP",
+ "displayShort": "0.00 GBP",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "GBP",
+ "display": "0.00000 GBP",
+ "displayShort": "0.00 GBP",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Max_Withdraw": {
+ "currency": "GBP",
+ "display": "0.00000 GBP",
+ "displayShort": "0.00 GBP",
+ "value": "0.00000",
+ "valueInt": "0"
+ }
+ },
+ "GNT": {
+ "Available_Balance": {
+ "currency": "GNT",
+ "display": "0.00000000 GNT",
+ "displayShort": "0.00 GNT",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "GNT",
+ "display": "0.00000000 GNT",
+ "displayShort": "0.00 GNT",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "GNT",
+ "display": "180,000.00000000 GNT",
+ "displayShort": "180,000.00 GNT",
+ "value": "180000.00000000",
+ "valueInt": "18000000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "GNT",
+ "display": "180,000.00000000 GNT",
+ "displayShort": "180,000.00 GNT",
+ "value": "180000.00000000",
+ "valueInt": "18000000000000"
+ }
+ },
+ "HKD": {
+ "Available_Balance": {
+ "currency": "HKD",
+ "display": "0.00000 HKD",
+ "displayShort": "0.00 HKD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "HKD",
+ "display": "0.00000 HKD",
+ "displayShort": "0.00 HKD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "HKD",
+ "display": "0.00000 HKD",
+ "displayShort": "0.00 HKD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Max_Withdraw": {
+ "currency": "HKD",
+ "display": "0.00000 HKD",
+ "displayShort": "0.00 HKD",
+ "value": "0.00000",
+ "valueInt": "0"
+ }
+ },
+ "JPY": {
+ "Available_Balance": {
+ "currency": "JPY",
+ "display": "0.00000 JPY",
+ "displayShort": "0.00 JPY",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "JPY",
+ "display": "0.00000 JPY",
+ "displayShort": "0.00 JPY",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "JPY",
+ "display": "100,000.00000 JPY",
+ "displayShort": "100,000.00 JPY",
+ "value": "100000.00000",
+ "valueInt": "10000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "JPY",
+ "display": "100,000.00000 JPY",
+ "displayShort": "100,000.00 JPY",
+ "value": "100000.00000",
+ "valueInt": "10000000000"
+ }
+ },
+ "LTC": {
+ "Available_Balance": {
+ "currency": "LTC",
+ "display": "0.00000000 LTC",
+ "displayShort": "0.00 LTC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "LTC",
+ "display": "0.00000000 LTC",
+ "displayShort": "0.00 LTC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "LTC",
+ "display": "500.00000000 LTC",
+ "displayShort": "500.00 LTC",
+ "value": "500.00000000",
+ "valueInt": "50000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "LTC",
+ "display": "500.00000000 LTC",
+ "displayShort": "500.00 LTC",
+ "value": "500.00000000",
+ "valueInt": "50000000000"
+ }
+ },
+ "NMC": {
+ "Available_Balance": {
+ "currency": "NMC",
+ "display": "0.00000000 NMC",
+ "displayShort": "0.00 NMC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "NMC",
+ "display": "0.00000000 NMC",
+ "displayShort": "0.00 NMC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "NMC",
+ "display": "10,000.00000000 NMC",
+ "displayShort": "10,000.00 NMC",
+ "value": "10000.00000000",
+ "valueInt": "1000000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "NMC",
+ "display": "10,000.00000000 NMC",
+ "displayShort": "10,000.00 NMC",
+ "value": "10000.00000000",
+ "valueInt": "1000000000000"
+ }
+ },
+ "NZD": {
+ "Available_Balance": {
+ "currency": "NZD",
+ "display": "0.00000 NZD",
+ "displayShort": "0.00 NZD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "NZD",
+ "display": "0.00000 NZD",
+ "displayShort": "0.00 NZD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "NZD",
+ "display": "10,000.00000 NZD",
+ "displayShort": "10,000.00 NZD",
+ "value": "10000.00000",
+ "valueInt": "1000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "NZD",
+ "display": "10,000.00000 NZD",
+ "displayShort": "10,000.00 NZD",
+ "value": "10000.00000",
+ "valueInt": "1000000000"
+ }
+ },
+ "OAX": {
+ "Available_Balance": {
+ "currency": "OAX",
+ "display": "0.00000000 OAX",
+ "displayShort": "0.00 OAX",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "OAX",
+ "display": "0.00000000 OAX",
+ "displayShort": "0.00 OAX",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "OAX",
+ "display": "100,000.00000000 OAX",
+ "displayShort": "100,000.00 OAX",
+ "value": "100000.00000000",
+ "valueInt": "10000000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "OAX",
+ "display": "100,000.00000000 OAX",
+ "displayShort": "100,000.00 OAX",
+ "value": "100000.00000000",
+ "valueInt": "10000000000000"
+ }
+ },
+ "PPC": {
+ "Available_Balance": {
+ "currency": "PPC",
+ "display": "0.00000000 PPC",
+ "displayShort": "0.00 PPC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "PPC",
+ "display": "0.00000000 PPC",
+ "displayShort": "0.00 PPC",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "PPC",
+ "display": "10,000.00000000 PPC",
+ "displayShort": "10,000.00 PPC",
+ "value": "10000.00000000",
+ "valueInt": "1000000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "PPC",
+ "display": "10,000.00000000 PPC",
+ "displayShort": "10,000.00 PPC",
+ "value": "10000.00000000",
+ "valueInt": "1000000000000"
+ }
+ },
+ "SGD": {
+ "Available_Balance": {
+ "currency": "SGD",
+ "display": "0.00000 SGD",
+ "displayShort": "0.00 SGD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "SGD",
+ "display": "0.00000 SGD",
+ "displayShort": "0.00 SGD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "SGD",
+ "display": "10,000.00000 SGD",
+ "displayShort": "10,000.00 SGD",
+ "value": "10000.00000",
+ "valueInt": "1000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "SGD",
+ "display": "10,000.00000 SGD",
+ "displayShort": "10,000.00 SGD",
+ "value": "10000.00000",
+ "valueInt": "1000000000"
+ }
+ },
+ "START": {
+ "Available_Balance": {
+ "currency": "START",
+ "display": "0.00000000 START",
+ "displayShort": "0.00 START",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "START",
+ "display": "0.00000000 START",
+ "displayShort": "0.00 START",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "START",
+ "display": "50,000.00000000 START",
+ "displayShort": "50,000.00 START",
+ "value": "50000.00000000",
+ "valueInt": "5000000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "START",
+ "display": "50,000.00000000 START",
+ "displayShort": "50,000.00 START",
+ "value": "50000.00000000",
+ "valueInt": "5000000000000"
+ }
+ },
+ "STR": {
+ "Available_Balance": {
+ "currency": "STR",
+ "display": "0.00000000 STR",
+ "displayShort": "0.00 STR",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "STR",
+ "display": "0.00000000 STR",
+ "displayShort": "0.00 STR",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "STR",
+ "display": "2,000,000.00000000 STR",
+ "displayShort": "2,000,000.00 STR",
+ "value": "2000000.00000000",
+ "valueInt": "200000000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "STR",
+ "display": "2,000,000.00000000 STR",
+ "displayShort": "2,000,000.00 STR",
+ "value": "2000000.00000000",
+ "valueInt": "200000000000000"
+ }
+ },
+ "USD": {
+ "Available_Balance": {
+ "currency": "USD",
+ "display": "0.00000 USD",
+ "displayShort": "0.00 USD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "USD",
+ "display": "0.00000 USD",
+ "displayShort": "0.00 USD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "USD",
+ "display": "0.00000 USD",
+ "displayShort": "0.00 USD",
+ "value": "0.00000",
+ "valueInt": "0"
+ },
+ "Max_Withdraw": {
+ "currency": "USD",
+ "display": "0.00000 USD",
+ "displayShort": "0.00 USD",
+ "value": "0.00000",
+ "valueInt": "0"
+ }
+ },
+ "XRP": {
+ "Available_Balance": {
+ "currency": "XRP",
+ "display": "0.00000000 XRP",
+ "displayShort": "0.00 XRP",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Balance": {
+ "currency": "XRP",
+ "display": "0.00000000 XRP",
+ "displayShort": "0.00 XRP",
+ "value": "0.00000000",
+ "valueInt": "0"
+ },
+ "Daily_Withdrawal_Limit": {
+ "currency": "XRP",
+ "display": "50,000.00000000 XRP",
+ "displayShort": "50,000.00 XRP",
+ "value": "50000.00000000",
+ "valueInt": "5000000000000"
+ },
+ "Max_Withdraw": {
+ "currency": "XRP",
+ "display": "50,000.00000000 XRP",
+ "displayShort": "50,000.00 XRP",
+ "value": "50000.00000000",
+ "valueInt": "5000000000000"
+ }
+ }
+ }
+ },
+ "resultCode": "OK",
+ "timestamp": "1565243672136",
+ "userUuid": "e1de6d35-5f5c-4f99-b693-861ecb1fcada"
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565243671495\"}",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "WBsh289+Kjgzv7szgHNkspJ8tIJLM+iGH20feDOyg4WhIAemJv9N0TJBYSWpjpntsqm8zDAQmuDi9R9EzrVHPA=="
+ ]
+ }
+ }
+ ]
+ },
+ "/api/3/apiKey": {
+ "POST": [
+ {
+ "data": {
+ "resultCode": "INVALID_PARAMETERS",
+ "timestamp": "1565224367747"
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "7rVm+8HCtd7aiTir+uHTAU9sr9GvviKT11CLQ2u02RqXAWLn6Za0BJRuuAcSTPZSz6eqcT7CU47dBQX48kitgA=="
+ ]
+ }
+ },
+ {
+ "data": {
+ "resultCode": "INVALID_PARAMETERS",
+ "timestamp": "1565244853045"
+ },
+ "queryString": "",
+ "bodyParams": "{\"deviceId\":\"1337\",\"nonce\":\"1565244852428\",\"password\":\"passWord\",\"username\":\"userName\"}",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "0K81dGp9rFxbPHtobirx9UxfrhcZdeVAtcyt++L7Jk7mqc+OPkeUjrRJZGQSTakhY0EoObDw8713neDcMb1dlQ=="
+ ]
+ }
+ }
+ ]
+ },
+ "/api/3/currencyStatic": {
+ "GET": [
+ {
+ "data": {
+ "currencyStatic": {
+ "currencies": {
+ "ANX": {
+ "assetDivisibility": 2,
+ "assetIcon": "/images/currencies/crypto/ANX.svg",
+ "assetIssueQuantity": "1000",
+ "assetName": "ANX",
+ "confirmationThresholds": [
+ {
+ "confosRequired": 6
+ }
+ ],
+ "decimals": 2,
+ "digitalCurrencyType": "MULTICHAIN_NATIVE",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": false,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 1000000000,
+ "maxMarketOrderValue": 10000000000,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 10000000000,
+ "minOrderSize": 0.01,
+ "minOrderValue": 1,
+ "networkFee": 0.1,
+ "summaryDecimals": 2,
+ "type": "CRYPTO"
+ },
+ "ATENC": {
+ "assetDivisibility": 0,
+ "confirmationThresholds": [
+ {
+ "confosRequired": 6
+ }
+ ],
+ "decimals": 8,
+ "displayDenominator": 1000,
+ "displayUnit": "kATENC",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": false,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 1000,
+ "maxMarketOrderValue": 1000,
+ "maxOrderSize": 100000,
+ "maxOrderValue": 100000000,
+ "minOrderSize": 0.01,
+ "minOrderValue": 1e-7,
+ "networkFee": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "b",
+ "type": "CRYPTO"
+ },
+ "AUD": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "AUD",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 6000,
+ "maxMarketOrderValue": 6000,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 1000000000,
+ "minOrderSize": 0.1,
+ "minOrderValue": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "$",
+ "type": "FIAT"
+ },
+ "BTC": {
+ "assetDivisibility": 0,
+ "assetIcon": "/images/currencies/crypto/BTC.svg",
+ "confirmationThresholds": [
+ {
+ "confosRequired": 4,
+ "threshold": 0.25
+ },
+ {
+ "confosRequired": 7,
+ "threshold": 30
+ },
+ {
+ "confosRequired": 8
+ }
+ ],
+ "decimals": 8,
+ "digitalCurrencyType": "SATOSHI",
+ "displayDenominator": 0.001,
+ "displayUnit": "mBTC",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 10,
+ "maxMarketOrderValue": 10,
+ "maxOrderSize": 100000,
+ "maxOrderValue": 100000000,
+ "minOrderSize": 0.01,
+ "minOrderValue": 1e-7,
+ "networkFee": 0.002,
+ "summaryDecimals": 2,
+ "symbol": "฿",
+ "type": "CRYPTO",
+ "urlPrefix": "bitcoin:"
+ },
+ "CAD": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "CAD",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 6000,
+ "maxMarketOrderValue": 6000,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 1000000000,
+ "minOrderSize": 0.1,
+ "minOrderValue": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "$",
+ "type": "FIAT"
+ },
+ "CHF": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "CHF",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": false,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 4500,
+ "maxMarketOrderValue": 4500,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 1000000000,
+ "minOrderSize": 0.1,
+ "minOrderValue": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "Fr.",
+ "type": "FIAT"
+ },
+ "CNY": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "CNY",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 33000,
+ "maxMarketOrderValue": 33000,
+ "maxOrderSize": 10000000000,
+ "maxOrderValue": 10000000000,
+ "minOrderSize": 1,
+ "minOrderValue": 1,
+ "summaryDecimals": 0,
+ "symbol": "¥",
+ "type": "FIAT"
+ },
+ "DOGE": {
+ "assetDivisibility": 0,
+ "assetIcon": "/images/currencies/crypto/DOGE.svg",
+ "confirmationThresholds": [
+ {
+ "confosRequired": 6
+ }
+ ],
+ "decimals": 8,
+ "digitalCurrencyType": "SATOSHI",
+ "displayDenominator": 1000,
+ "displayUnit": "kDOGE",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 25000000,
+ "maxMarketOrderValue": 25000000,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 10000000000,
+ "minOrderSize": 5000,
+ "minOrderValue": 1,
+ "networkFee": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "Ɖ",
+ "type": "CRYPTO",
+ "urlPrefix": "dogecoin:"
+ },
+ "ETH": {
+ "assetDivisibility": 0,
+ "assetIcon": "/images/currencies/crypto/ETH.svg",
+ "confirmationThresholds": [
+ {
+ "confosRequired": 30,
+ "threshold": 0.5
+ },
+ {
+ "confosRequired": 45,
+ "threshold": 10
+ },
+ {
+ "confosRequired": 70
+ }
+ ],
+ "decimals": 8,
+ "digitalCurrencyType": "ETHEREUM",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 1000000000,
+ "maxMarketOrderValue": 10000000000,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 10000000000,
+ "minOrderSize": 0.0001,
+ "minOrderValue": 0.0001,
+ "networkFee": 0.005,
+ "type": "CRYPTO"
+ },
+ "EUR": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "EUR",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 4000,
+ "maxMarketOrderValue": 4000,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 1000000000,
+ "minOrderSize": 0.1,
+ "minOrderValue": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "€",
+ "type": "FIAT"
+ },
+ "GBP": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "GBP",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 3000,
+ "maxMarketOrderValue": 3000,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 1000000000,
+ "minOrderSize": 0.1,
+ "minOrderValue": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "£",
+ "type": "FIAT"
+ },
+ "GNT": {
+ "assetDivisibility": 8,
+ "assetIcon": "/images/currencies/crypto/GNT.svg",
+ "assetName": "Golem",
+ "confirmationThresholds": [
+ {
+ "confosRequired": 30,
+ "threshold": 10
+ },
+ {
+ "confosRequired": 45,
+ "threshold": 1000
+ },
+ {
+ "confosRequired": 60
+ }
+ ],
+ "decimals": 8,
+ "digitalCurrencyType": "ETHEREUM_TOKEN",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 1000000000,
+ "maxMarketOrderValue": 10000000000,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 10000000000,
+ "minOrderSize": 1,
+ "minOrderValue": 1,
+ "networkFee": 0.001,
+ "summaryDecimals": 8,
+ "type": "CRYPTO"
+ },
+ "HKD": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "HKD",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 36000,
+ "maxMarketOrderValue": 36000,
+ "maxOrderSize": 10000000000,
+ "maxOrderValue": 10000000000,
+ "minOrderSize": 1,
+ "minOrderValue": 1,
+ "summaryDecimals": 0,
+ "symbol": "$",
+ "type": "FIAT"
+ },
+ "JPY": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "JPY",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 550000,
+ "maxMarketOrderValue": 550000,
+ "maxOrderSize": 10000000000,
+ "maxOrderValue": 1000000000,
+ "minOrderSize": 10,
+ "minOrderValue": 10,
+ "summaryDecimals": 0,
+ "symbol": "¥",
+ "type": "FIAT"
+ },
+ "LTC": {
+ "assetDivisibility": 0,
+ "assetIcon": "/images/currencies/crypto/LTC.svg",
+ "confirmationThresholds": [
+ {
+ "confosRequired": 6
+ }
+ ],
+ "decimals": 8,
+ "digitalCurrencyType": "SATOSHI",
+ "displayDenominator": 1,
+ "displayUnit": "LTC",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 1200,
+ "maxMarketOrderValue": 1200,
+ "maxOrderSize": 10000000,
+ "maxOrderValue": 100000000,
+ "minOrderSize": 0.1,
+ "minOrderValue": 0.01,
+ "networkFee": 0.02,
+ "summaryDecimals": 1,
+ "symbol": "Ł",
+ "type": "CRYPTO",
+ "urlPrefix": "litecoin:"
+ },
+ "NZD": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "NZD",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 6500,
+ "maxMarketOrderValue": 6500,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 1000000000,
+ "minOrderSize": 0.1,
+ "minOrderValue": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "$",
+ "type": "FIAT"
+ },
+ "OAX": {
+ "assetDivisibility": 8,
+ "assetIcon": "/images/currencies/crypto/OAX.svg",
+ "assetIssueQuantity": "100000000",
+ "assetName": "openANX Token",
+ "confirmationThresholds": [
+ {
+ "confosRequired": 30,
+ "threshold": 10
+ },
+ {
+ "confosRequired": 45,
+ "threshold": 1000
+ },
+ {
+ "confosRequired": 60
+ }
+ ],
+ "decimals": 8,
+ "digitalCurrencyType": "ETHEREUM_TOKEN",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 30000000,
+ "maxMarketOrderValue": 30000000,
+ "maxOrderSize": 30000000,
+ "maxOrderValue": 30000000,
+ "minOrderSize": 0.01,
+ "minOrderValue": 0.01,
+ "networkFee": 0.001,
+ "summaryDecimals": 8,
+ "type": "CRYPTO"
+ },
+ "SGD": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "SGD",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 6200,
+ "maxMarketOrderValue": 6200,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 1000000000,
+ "minOrderSize": 0.1,
+ "minOrderValue": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "$",
+ "type": "FIAT"
+ },
+ "START": {
+ "assetDivisibility": 8,
+ "confirmationThresholds": [
+ {
+ "confosRequired": 6
+ }
+ ],
+ "decimals": 8,
+ "digitalCurrencyType": "SATOSHI",
+ "displayDenominator": 1000,
+ "displayUnit": "kSTART",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": false,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 100000,
+ "maxMarketOrderValue": 100000,
+ "maxOrderSize": 100000,
+ "maxOrderValue": 100000,
+ "minOrderSize": 0.01,
+ "minOrderValue": 0.01,
+ "networkFee": 0.1,
+ "summaryDecimals": 8,
+ "symbol": "s",
+ "type": "CRYPTO"
+ },
+ "STR": {
+ "assetDivisibility": 0,
+ "assetIcon": "/images/currencies/crypto/STR.svg",
+ "confirmationThresholds": [
+ {
+ "confosRequired": 1,
+ "threshold": 0.5
+ },
+ {
+ "confosRequired": 1,
+ "threshold": 10
+ },
+ {
+ "confosRequired": 1
+ }
+ ],
+ "decimals": 8,
+ "digitalCurrencyType": "RIPPLE",
+ "displayDenominator": 1000,
+ "displayUnit": "kSTR",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": false,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 10000,
+ "maxMarketOrderValue": 10000,
+ "maxOrderSize": 1000000,
+ "maxOrderValue": 10,
+ "minOrderSize": 500,
+ "minOrderValue": 0.0001,
+ "networkFee": 1,
+ "summaryDecimals": 0,
+ "symbol": "S",
+ "type": "CRYPTO"
+ },
+ "USD": {
+ "assetDivisibility": 0,
+ "decimals": 2,
+ "displayDenominator": 1,
+ "displayUnit": "USD",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": false
+ },
+ "maxMarketOrderSize": 4500,
+ "maxMarketOrderValue": 4500,
+ "maxOrderSize": 1000000000,
+ "maxOrderValue": 1000000000,
+ "minOrderSize": 0.1,
+ "minOrderValue": 0.1,
+ "summaryDecimals": 0,
+ "symbol": "$",
+ "type": "FIAT"
+ },
+ "XRP": {
+ "assetDivisibility": 0,
+ "assetIcon": "/images/currencies/crypto/XRP.svg",
+ "confirmationThresholds": [
+ {
+ "confosRequired": 1,
+ "threshold": 0.5
+ },
+ {
+ "confosRequired": 1,
+ "threshold": 10
+ },
+ {
+ "confosRequired": 1
+ }
+ ],
+ "decimals": 8,
+ "digitalCurrencyType": "RIPPLE",
+ "displayDenominator": 1000,
+ "displayUnit": "kXRP",
+ "engineSettings": {
+ "depositsEnabled": false,
+ "displayEnabled": true,
+ "mobileAccessEnabled": true,
+ "withdrawalsEnabled": true
+ },
+ "maxMarketOrderSize": 620000,
+ "maxMarketOrderValue": 620000,
+ "maxOrderSize": 1000000,
+ "maxOrderValue": 100000000,
+ "minOrderSize": 100,
+ "minOrderValue": 0.01,
+ "networkFee": 1,
+ "summaryDecimals": 0,
+ "symbol": "X",
+ "type": "CRYPTO"
+ }
+ },
+ "currencyPairs": {
+ "ATENCAUD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000000,
+ "minOrderRate": 1,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "AUD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ATENC"
+ },
+ "ATENCCAD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000000,
+ "minOrderRate": 1,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "CAD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ATENC"
+ },
+ "ATENCEUR": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000000,
+ "minOrderRate": 1,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "EUR",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ATENC"
+ },
+ "ATENCGBP": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000000,
+ "minOrderRate": 1,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "GBP",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ATENC"
+ },
+ "ATENCHKD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000000,
+ "minOrderRate": 1,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "HKD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ATENC"
+ },
+ "ATENCJPY": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000000,
+ "minOrderRate": 1,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "JPY",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ATENC"
+ },
+ "ATENCNZD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000000,
+ "minOrderRate": 1,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "NZD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ATENC"
+ },
+ "ATENCSGD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000000,
+ "minOrderRate": 1,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "SGD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ATENC"
+ },
+ "ATENCUSD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000000,
+ "minOrderRate": 1,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "USD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ATENC"
+ },
+ "BTCAUD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 40000,
+ "minOrderRate": 10,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "AUD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "BTC"
+ },
+ "BTCCAD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 40000,
+ "minOrderRate": 10,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "CAD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "BTC"
+ },
+ "BTCEUR": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 40000,
+ "minOrderRate": 10,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "EUR",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "BTC"
+ },
+ "BTCGBP": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 40000,
+ "minOrderRate": 10,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "GBP",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "BTC"
+ },
+ "BTCHKD": {
+ "chartEnabled": true,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 4200000,
+ "minOrderRate": 100,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "HKD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "BTC"
+ },
+ "BTCJPY": {
+ "chartEnabled": true,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 4000000,
+ "minOrderRate": 1000,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "JPY",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "BTC"
+ },
+ "BTCNZD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 40000,
+ "minOrderRate": 10,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "NZD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "BTC"
+ },
+ "BTCSGD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 40000,
+ "minOrderRate": 10,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "SGD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "BTC"
+ },
+ "BTCUSD": {
+ "chartEnabled": true,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 40000,
+ "minOrderRate": 10,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "USD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "BTC"
+ },
+ "DOGEBTC": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 8,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 0.001,
+ "minOrderRate": 2e-8,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "BTC",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "DOGE"
+ },
+ "ETHBTC": {
+ "chartEnabled": true,
+ "displayPriceDecimals": 8,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 10,
+ "minOrderRate": 2e-8,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "BTC",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ETH"
+ },
+ "ETHHKD": {
+ "chartEnabled": true,
+ "displayPriceDecimals": 5,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 100000,
+ "minOrderRate": 100,
+ "preferredMarket": "ANX",
+ "priceDecimals": 5,
+ "settlementCcy": "HKD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ETH"
+ },
+ "ETHUSD": {
+ "chartEnabled": true,
+ "displayPriceDecimals": 5,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 10000,
+ "minOrderRate": 10,
+ "preferredMarket": "ANX",
+ "priceDecimals": 5,
+ "settlementCcy": "USD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "ETH"
+ },
+ "GNTETH": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 8,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 0.01,
+ "minOrderRate": 2e-8,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "ETH",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "GNT"
+ },
+ "LTCBTC": {
+ "chartEnabled": true,
+ "displayPriceDecimals": 8,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 1,
+ "minOrderRate": 0.001,
+ "preferredMarket": "BITFINEX",
+ "priceDecimals": 5,
+ "settlementCcy": "BTC",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "LTC"
+ },
+ "OAXETH": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 8,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 10,
+ "minOrderRate": 2e-8,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "ETH",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "OAX"
+ },
+ "STARTAUD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000,
+ "minOrderRate": 0.00002,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "AUD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STARTBTC": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 8,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 10,
+ "minOrderRate": 2e-8,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "BTC",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STARTCAD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000,
+ "minOrderRate": 0.00002,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "CAD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STARTEUR": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000,
+ "minOrderRate": 0.00002,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "EUR",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STARTGBP": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000,
+ "minOrderRate": 0.00002,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "GBP",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STARTHKD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 10000,
+ "minOrderRate": 0.0002,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "HKD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STARTJPY": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 100000,
+ "minOrderRate": 0.002,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "JPY",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STARTNZD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000,
+ "minOrderRate": 0.00002,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "NZD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STARTSGD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000,
+ "minOrderRate": 0.00002,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "SGD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STARTUSD": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 2,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": true,
+ "restrictedSell": true,
+ "tradingEnabled": false,
+ "verifyRequired": true
+ },
+ "maxOrderRate": 1000,
+ "minOrderRate": 0.00002,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "USD",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "START"
+ },
+ "STRBTC": {
+ "chartEnabled": false,
+ "displayPriceDecimals": 8,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": false,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 10,
+ "minOrderRate": 2e-8,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "BTC",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "STR"
+ },
+ "XRPBTC": {
+ "chartEnabled": true,
+ "displayPriceDecimals": 8,
+ "engineSettings": {
+ "cancelOnly": true,
+ "displayEnabled": true,
+ "restrictedBuy": false,
+ "restrictedSell": false,
+ "tradingEnabled": false,
+ "verifyRequired": false
+ },
+ "maxOrderRate": 10,
+ "minOrderRate": 2e-8,
+ "preferredMarket": "ANX",
+ "priceDecimals": 8,
+ "settlementCcy": "BTC",
+ "simpleTradeEnabled": false,
+ "tradedCcy": "XRP"
+ }
+ }
+ },
+ "resultCode": "OK",
+ "timestamp": "1565221059387"
+ },
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/3/order/cancel": {
+ "POST": [
+ {
+ "data": {
+ "resultCode": "OK",
+ "resultCodeList": [
+ {
+ "errorCode": "ORDER_NOT_FOUND",
+ "uuid": "1"
+ }
+ ],
+ "timestamp": "1565239523039"
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565239522519\",\"orderIds\":[\"1\"]}",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "YFhH1Xb4r+FcD95UX/WDlBBzdsBUUc0NOEeYm2SqeV6EbX8lY0ZpWpGYySLOeRitJnqmL8iDzqaSkK6YbHYrFw=="
+ ]
+ }
+ },
+ {
+ "data": {
+ "resultCode": "OK",
+ "resultCodeList": [
+ {
+ "errorCode": "ORDER_NOT_FOUND",
+ "uuid": "1"
+ }
+ ],
+ "timestamp": "1565239523039"
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565239522519\",\"orderIds\":[\"\u003cnil\u003e\"]}",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "YFhH1Xb4r+FcD95UX/WDlBBzdsBUUc0NOEeYm2SqeV6EbX8lY0ZpWpGYySLOeRitJnqmL8iDzqaSkK6YbHYrFw=="
+ ]
+ }
+ }
+ ]
+ },
+ "/api/3/order/list": {
+ "POST": [
+ {
+ "data": {
+ "count": 0,
+ "orders": [],
+ "resultCode": "OK",
+ "timestamp": "1565237720206"
+ },
+ "queryString": "",
+ "bodyParams": "{\"activeOnly\":false,\"nonce\":\"1565237719696\"}",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "vNiddyUn2Rp/iZibLwivUMt+EImNBgxFl2QnOzuZChO6hAK0Y8kycOO5I9NCL/F3GlXn55o6fWX6t6QV4Vvxig=="
+ ]
+ }
+ },
+ {
+ "data": {
+ "count": 0,
+ "orders": [],
+ "resultCode": "OK",
+ "timestamp": "1565245118448"
+ },
+ "queryString": "",
+ "bodyParams": "{\"activeOnly\":true,\"nonce\":\"1565245118213\"}",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "Z5v3uegtw7zJDHmPtQhMGQBfLNzD9iHFJ1dhcwMBVQEjMutuBL9TimZJ2N7WlJlRF8qN2lYHmNBV5ju/Us3dDA=="
+ ]
+ }
+ }
+ ]
+ },
+ "/api/3/order/new": {
+ "POST": [
+ {
+ "data": {
+ "resultCode": "UNAUTHORISED",
+ "timestamp": "1565238020536"
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565238020075\",\"order\":{\"orderType\":\"MARKET\",\"buyTradedCurrency\":true,\"tradedCurrency\":\"BTC\",\"settlementCurrency\":\"USD\",\"tradedCurrencyAmount\":\"1\",\"settlementCurrencyAmount\":\"0\",\"limitPriceInSettlementCurrency\":\"0\",\"replaceExistingOrderUuid\":\"\",\"replaceOnlyIfActive\":false}}",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "/H1O2+hjiuRWBkVnadizhfU/BzH77/t4iVDmnV7CqUi8/b0biDYxXdITxPA08sSguiqMd+mn7pJx+eXR9TNxuw=="
+ ]
+ }
+ }
+ ]
+ },
+ "/api/3/receive": {
+ "POST": [
+ {
+ "data": {
+ "resultCode": "ADDRESS_NOT_AVAILABLE",
+ "timestamp": "1565245771661"
+ },
+ "queryString": "",
+ "bodyParams": "{\"ccy\":\"BTC\",\"nonce\":\"1565245771117\"}",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "6LMb99SQINMKMr2nbmgxcN/WQ1iH6ehBIkSEJbIOAanDVjypa3MnTsQILxtGKdCFnqlNqiIE80iaBztb+rv1+g=="
+ ]
+ }
+ }
+ ]
+ },
+ "/api/3/send": {
+ "POST": [
+ {
+ "data": {
+ "resultCode": "INSUFFICIENT_LIMIT",
+ "timestamp": "1565243984807"
+ },
+ "queryString": "",
+ "bodyParams": "{\"address\":\"1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB\",\"amount\":\"100\",\"ccy\":\"BTC\",\"nonce\":\"1565243984355\"}",
+ "headers": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Rest-Key": [
+ ""
+ ],
+ "Rest-Sign": [
+ "veKau9XDbYJFgXFFgLrjpzmU6r7CghBTv5s4wIbQ0bhUHSl6SarBMQhTOY2639G46sAnkJmqyq480JDetVp+kw=="
+ ]
+ }
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/testdata/http_mock/binance/binance.json b/testdata/http_mock/binance/binance.json
new file mode 100644
index 00000000000..b9a04717b75
--- /dev/null
+++ b/testdata/http_mock/binance/binance.json
@@ -0,0 +1,45467 @@
+{
+ "routes": {
+ "/api/v1/aggTrades": {
+ "GET": [
+ {
+ "data": [
+ {
+ "a": 122553794,
+ "p": "7878.29000000",
+ "q": "0.03564200",
+ "f": 134314157,
+ "l": 134314157,
+ "T": 1560296988887,
+ "m": true,
+ "M": true
+ },
+ {
+ "a": 122553795,
+ "p": "7878.29000000",
+ "q": "0.07211900",
+ "f": 134314158,
+ "l": 134314158,
+ "T": 1560296989005,
+ "m": true,
+ "M": true
+ },
+ {
+ "a": 122553796,
+ "p": "7878.29000000",
+ "q": "0.03317700",
+ "f": 134314159,
+ "l": 134314159,
+ "T": 1560296989099,
+ "m": true,
+ "M": true
+ },
+ {
+ "a": 122553797,
+ "p": "7878.29000000",
+ "q": "0.11212700",
+ "f": 134314160,
+ "l": 134314160,
+ "T": 1560296989198,
+ "m": true,
+ "M": true
+ },
+ {
+ "a": 122553798,
+ "p": "7878.29000000",
+ "q": "0.03598700",
+ "f": 134314161,
+ "l": 134314161,
+ "T": 1560296989319,
+ "m": true,
+ "M": true
+ }
+ ],
+ "queryString": "limit=5\u0026symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v1/depth": {
+ "GET": [
+ {
+ "data": {
+ "lastUpdateId": 697211255,
+ "bids": [
+ [
+ "7886.01000000",
+ "0.00484600"
+ ],
+ [
+ "7885.98000000",
+ "0.49716800"
+ ],
+ [
+ "7885.96000000",
+ "1.00000000"
+ ],
+ [
+ "7885.74000000",
+ "0.01720900"
+ ],
+ [
+ "7885.55000000",
+ "0.02237700"
+ ],
+ [
+ "7885.11000000",
+ "0.04452700"
+ ],
+ [
+ "7885.09000000",
+ "0.50000000"
+ ],
+ [
+ "7885.01000000",
+ "0.06131600"
+ ],
+ [
+ "7884.55000000",
+ "0.50000000"
+ ],
+ [
+ "7884.28000000",
+ "0.36721300"
+ ]
+ ],
+ "asks": [
+ [
+ "7888.94000000",
+ "3.60000000"
+ ],
+ [
+ "7888.95000000",
+ "0.11707400"
+ ],
+ [
+ "7889.05000000",
+ "0.03931600"
+ ],
+ [
+ "7889.62000000",
+ "0.03659000"
+ ],
+ [
+ "7890.08000000",
+ "0.04696200"
+ ],
+ [
+ "7890.10000000",
+ "0.90702600"
+ ],
+ [
+ "7890.76000000",
+ "0.35580100"
+ ],
+ [
+ "7890.85000000",
+ "0.14271800"
+ ],
+ [
+ "7891.06000000",
+ "0.45315700"
+ ],
+ [
+ "7891.64000000",
+ "0.10609900"
+ ]
+ ]
+ },
+ "queryString": "limit=10\u0026symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v1/exchangeInfo": {
+ "GET": [
+ {
+ "data": {
+ "timezone": "UTC",
+ "serverTime": 1560297862726,
+ "rateLimits": [
+ {
+ "rateLimitType": "REQUEST_WEIGHT",
+ "interval": "MINUTE",
+ "intervalNum": 1,
+ "limit": 1200
+ },
+ {
+ "rateLimitType": "ORDERS",
+ "interval": "SECOND",
+ "intervalNum": 1,
+ "limit": 10
+ },
+ {
+ "rateLimitType": "ORDERS",
+ "interval": "DAY",
+ "intervalNum": 1,
+ "limit": 100000
+ }
+ ],
+ "exchangeFilters": [],
+ "symbols": [
+ {
+ "symbol": "ETHBTC",
+ "status": "TRADING",
+ "baseAsset": "ETH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": true,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "100000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "63100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LTCBTC",
+ "status": "TRADING",
+ "baseAsset": "LTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "100000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "72500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BNBBTC",
+ "status": "TRADING",
+ "baseAsset": "BNB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": true,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1769700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEOBTC",
+ "status": "TRADING",
+ "baseAsset": "NEO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "100000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "365600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QTUMETH",
+ "status": "TRADING",
+ "baseAsset": "QTUM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "146600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EOSETH",
+ "status": "TRADING",
+ "baseAsset": "EOS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "286200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SNTETH",
+ "status": "TRADING",
+ "baseAsset": "SNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7648700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BNTETH",
+ "status": "TRADING",
+ "baseAsset": "BNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "356100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCCBTC",
+ "status": "BREAK",
+ "baseAsset": "BCC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "100000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GASBTC",
+ "status": "TRADING",
+ "baseAsset": "GAS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "100000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "111700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BNBETH",
+ "status": "TRADING",
+ "baseAsset": "BNB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "68100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTCUSDT",
+ "status": "TRADING",
+ "baseAsset": "BTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": true,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00000100",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00000100"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETHUSDT",
+ "status": "TRADING",
+ "baseAsset": "ETH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": true,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "52400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "HSRBTC",
+ "status": "BREAK",
+ "baseAsset": "HSR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "OAXETH",
+ "status": "TRADING",
+ "baseAsset": "OAX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "822600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DNTETH",
+ "status": "TRADING",
+ "baseAsset": "DNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7750800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MCOETH",
+ "status": "TRADING",
+ "baseAsset": "MCO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "29700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ICNETH",
+ "status": "BREAK",
+ "baseAsset": "ICN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MCOBTC",
+ "status": "TRADING",
+ "baseAsset": "MCO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "226300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WTCBTC",
+ "status": "TRADING",
+ "baseAsset": "WTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1489800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WTCETH",
+ "status": "TRADING",
+ "baseAsset": "WTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "120000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LRCBTC",
+ "status": "TRADING",
+ "baseAsset": "LRC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8481800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LRCETH",
+ "status": "TRADING",
+ "baseAsset": "LRC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3072100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QTUMBTC",
+ "status": "TRADING",
+ "baseAsset": "QTUM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "554400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "YOYOBTC",
+ "status": "TRADING",
+ "baseAsset": "YOYO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "41680800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "OMGBTC",
+ "status": "TRADING",
+ "baseAsset": "OMG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "371100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "OMGETH",
+ "status": "TRADING",
+ "baseAsset": "OMG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "372000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZRXBTC",
+ "status": "TRADING",
+ "baseAsset": "ZRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4510800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZRXETH",
+ "status": "TRADING",
+ "baseAsset": "ZRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1617600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STRATBTC",
+ "status": "TRADING",
+ "baseAsset": "STRAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1022300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STRATETH",
+ "status": "TRADING",
+ "baseAsset": "STRAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "247900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SNGLSBTC",
+ "status": "TRADING",
+ "baseAsset": "SNGLS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "23413000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SNGLSETH",
+ "status": "TRADING",
+ "baseAsset": "SNGLS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6821000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BQXBTC",
+ "status": "TRADING",
+ "baseAsset": "BQX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "12797800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BQXETH",
+ "status": "TRADING",
+ "baseAsset": "BQX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1303500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "KNCBTC",
+ "status": "TRADING",
+ "baseAsset": "KNC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "5147500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "KNCETH",
+ "status": "TRADING",
+ "baseAsset": "KNC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3642600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FUNBTC",
+ "status": "TRADING",
+ "baseAsset": "FUN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "51853200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FUNETH",
+ "status": "TRADING",
+ "baseAsset": "FUN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "62536900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SNMBTC",
+ "status": "TRADING",
+ "baseAsset": "SNM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8975000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SNMETH",
+ "status": "TRADING",
+ "baseAsset": "SNM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4705100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEOETH",
+ "status": "TRADING",
+ "baseAsset": "NEO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "130000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOTABTC",
+ "status": "TRADING",
+ "baseAsset": "IOTA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "12315300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOTAETH",
+ "status": "TRADING",
+ "baseAsset": "IOTA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2518700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LINKBTC",
+ "status": "TRADING",
+ "baseAsset": "LINK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2976000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LINKETH",
+ "status": "TRADING",
+ "baseAsset": "LINK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "385500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XVGBTC",
+ "status": "TRADING",
+ "baseAsset": "XVG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "76202500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XVGETH",
+ "status": "TRADING",
+ "baseAsset": "XVG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "47534300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SALTBTC",
+ "status": "BREAK",
+ "baseAsset": "SALT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SALTETH",
+ "status": "BREAK",
+ "baseAsset": "SALT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MDABTC",
+ "status": "TRADING",
+ "baseAsset": "MDA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1092600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MDAETH",
+ "status": "TRADING",
+ "baseAsset": "MDA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "178800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MTLBTC",
+ "status": "TRADING",
+ "baseAsset": "MTL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "840000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MTLETH",
+ "status": "TRADING",
+ "baseAsset": "MTL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "214800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SUBBTC",
+ "status": "BREAK",
+ "baseAsset": "SUB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SUBETH",
+ "status": "BREAK",
+ "baseAsset": "SUB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EOSBTC",
+ "status": "TRADING",
+ "baseAsset": "EOS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1684200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SNTBTC",
+ "status": "TRADING",
+ "baseAsset": "SNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "12415800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETCETH",
+ "status": "TRADING",
+ "baseAsset": "ETC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "37600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETCBTC",
+ "status": "TRADING",
+ "baseAsset": "ETC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "343000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MTHBTC",
+ "status": "TRADING",
+ "baseAsset": "MTH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "26826400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MTHETH",
+ "status": "TRADING",
+ "baseAsset": "MTH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "10684900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ENGBTC",
+ "status": "TRADING",
+ "baseAsset": "ENG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2283700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ENGETH",
+ "status": "TRADING",
+ "baseAsset": "ENG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "844200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DNTBTC",
+ "status": "TRADING",
+ "baseAsset": "DNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "26246600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZECBTC",
+ "status": "TRADING",
+ "baseAsset": "ZEC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "27800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZECETH",
+ "status": "TRADING",
+ "baseAsset": "ZEC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BNTBTC",
+ "status": "TRADING",
+ "baseAsset": "BNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "911500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ASTBTC",
+ "status": "TRADING",
+ "baseAsset": "AST",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "16333300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ASTETH",
+ "status": "TRADING",
+ "baseAsset": "AST",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3134700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DASHBTC",
+ "status": "TRADING",
+ "baseAsset": "DASH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "12600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DASHETH",
+ "status": "TRADING",
+ "baseAsset": "DASH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "OAXBTC",
+ "status": "TRADING",
+ "baseAsset": "OAX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3892200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ICNBTC",
+ "status": "BREAK",
+ "baseAsset": "ICN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTGBTC",
+ "status": "TRADING",
+ "baseAsset": "BTG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "83200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTGETH",
+ "status": "TRADING",
+ "baseAsset": "BTG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EVXBTC",
+ "status": "TRADING",
+ "baseAsset": "EVX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2424900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EVXETH",
+ "status": "TRADING",
+ "baseAsset": "EVX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "196100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "REQBTC",
+ "status": "TRADING",
+ "baseAsset": "REQ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "17712100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "REQETH",
+ "status": "TRADING",
+ "baseAsset": "REQ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "18357800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VIBBTC",
+ "status": "TRADING",
+ "baseAsset": "VIB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "9370400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VIBETH",
+ "status": "TRADING",
+ "baseAsset": "VIB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2852000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "HSRETH",
+ "status": "BREAK",
+ "baseAsset": "HSR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRXBTC",
+ "status": "TRADING",
+ "baseAsset": "TRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": true,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "177000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRXETH",
+ "status": "TRADING",
+ "baseAsset": "TRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "60203600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POWRBTC",
+ "status": "TRADING",
+ "baseAsset": "POWR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4829000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POWRETH",
+ "status": "TRADING",
+ "baseAsset": "POWR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1218300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ARKBTC",
+ "status": "TRADING",
+ "baseAsset": "ARK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1608500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ARKETH",
+ "status": "TRADING",
+ "baseAsset": "ARK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "171500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "YOYOETH",
+ "status": "TRADING",
+ "baseAsset": "YOYO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7287900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XRPBTC",
+ "status": "TRADING",
+ "baseAsset": "XRP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": true,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "42853300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XRPETH",
+ "status": "TRADING",
+ "baseAsset": "XRP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4202500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MODBTC",
+ "status": "BREAK",
+ "baseAsset": "MOD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MODETH",
+ "status": "BREAK",
+ "baseAsset": "MOD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ENJBTC",
+ "status": "TRADING",
+ "baseAsset": "ENJ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "19300900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ENJETH",
+ "status": "TRADING",
+ "baseAsset": "ENJ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3616900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STORJBTC",
+ "status": "TRADING",
+ "baseAsset": "STORJ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3562900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STORJETH",
+ "status": "TRADING",
+ "baseAsset": "STORJ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "294100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BNBUSDT",
+ "status": "TRADING",
+ "baseAsset": "BNB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": true,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "393000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VENBNB",
+ "status": "BREAK",
+ "baseAsset": "VEN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "YOYOBNB",
+ "status": "TRADING",
+ "baseAsset": "YOYO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "915300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POWRBNB",
+ "status": "TRADING",
+ "baseAsset": "POWR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "420100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VENBTC",
+ "status": "BREAK",
+ "baseAsset": "VEN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VENETH",
+ "status": "BREAK",
+ "baseAsset": "VEN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "KMDBTC",
+ "status": "TRADING",
+ "baseAsset": "KMD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1014400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "KMDETH",
+ "status": "TRADING",
+ "baseAsset": "KMD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "70200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NULSBNB",
+ "status": "TRADING",
+ "baseAsset": "NULS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "94800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RCNBTC",
+ "status": "TRADING",
+ "baseAsset": "RCN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "14574700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RCNETH",
+ "status": "TRADING",
+ "baseAsset": "RCN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3707200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RCNBNB",
+ "status": "TRADING",
+ "baseAsset": "RCN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1674200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NULSBTC",
+ "status": "TRADING",
+ "baseAsset": "NULS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "962300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NULSETH",
+ "status": "TRADING",
+ "baseAsset": "NULS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "124200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RDNBTC",
+ "status": "TRADING",
+ "baseAsset": "RDN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2625600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RDNETH",
+ "status": "TRADING",
+ "baseAsset": "RDN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1288500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RDNBNB",
+ "status": "TRADING",
+ "baseAsset": "RDN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "87100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XMRBTC",
+ "status": "TRADING",
+ "baseAsset": "XMR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "41700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XMRETH",
+ "status": "TRADING",
+ "baseAsset": "XMR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DLTBNB",
+ "status": "TRADING",
+ "baseAsset": "DLT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "718800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WTCBNB",
+ "status": "TRADING",
+ "baseAsset": "WTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "38400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DLTBTC",
+ "status": "TRADING",
+ "baseAsset": "DLT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "10422400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DLTETH",
+ "status": "TRADING",
+ "baseAsset": "DLT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2510300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AMBBTC",
+ "status": "TRADING",
+ "baseAsset": "AMB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "16127800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AMBETH",
+ "status": "TRADING",
+ "baseAsset": "AMB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4658100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AMBBNB",
+ "status": "TRADING",
+ "baseAsset": "AMB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "668000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCCETH",
+ "status": "BREAK",
+ "baseAsset": "BCC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCCUSDT",
+ "status": "BREAK",
+ "baseAsset": "BCC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCCBNB",
+ "status": "BREAK",
+ "baseAsset": "BCC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BATBTC",
+ "status": "TRADING",
+ "baseAsset": "BAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6664500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BATETH",
+ "status": "TRADING",
+ "baseAsset": "BAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1040500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BATBNB",
+ "status": "TRADING",
+ "baseAsset": "BAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "754800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCPTBTC",
+ "status": "TRADING",
+ "baseAsset": "BCPT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "15465800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCPTETH",
+ "status": "TRADING",
+ "baseAsset": "BCPT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2395500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCPTBNB",
+ "status": "TRADING",
+ "baseAsset": "BCPT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "914300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ARNBTC",
+ "status": "TRADING",
+ "baseAsset": "ARN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2868900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ARNETH",
+ "status": "TRADING",
+ "baseAsset": "ARN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "308200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GVTBTC",
+ "status": "TRADING",
+ "baseAsset": "GVT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "381100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GVTETH",
+ "status": "TRADING",
+ "baseAsset": "GVT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "68500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CDTBTC",
+ "status": "TRADING",
+ "baseAsset": "CDT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "38110800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CDTETH",
+ "status": "TRADING",
+ "baseAsset": "CDT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "12174400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GXSBTC",
+ "status": "TRADING",
+ "baseAsset": "GXS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "497300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GXSETH",
+ "status": "TRADING",
+ "baseAsset": "GXS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "109600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEOUSDT",
+ "status": "TRADING",
+ "baseAsset": "NEO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "236900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEOBNB",
+ "status": "TRADING",
+ "baseAsset": "NEO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "24600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POEBTC",
+ "status": "TRADING",
+ "baseAsset": "POE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "69079600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POEETH",
+ "status": "TRADING",
+ "baseAsset": "POE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "36484600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QSPBTC",
+ "status": "TRADING",
+ "baseAsset": "QSP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "9955800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QSPETH",
+ "status": "TRADING",
+ "baseAsset": "QSP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "5732800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QSPBNB",
+ "status": "TRADING",
+ "baseAsset": "QSP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1515800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTSBTC",
+ "status": "TRADING",
+ "baseAsset": "BTS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "13082700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTSETH",
+ "status": "TRADING",
+ "baseAsset": "BTS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1691500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTSBNB",
+ "status": "TRADING",
+ "baseAsset": "BTS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "803100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XZCBTC",
+ "status": "TRADING",
+ "baseAsset": "XZC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "62700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XZCETH",
+ "status": "TRADING",
+ "baseAsset": "XZC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "10000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XZCBNB",
+ "status": "TRADING",
+ "baseAsset": "XZC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LSKBTC",
+ "status": "TRADING",
+ "baseAsset": "LSK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "596600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LSKETH",
+ "status": "TRADING",
+ "baseAsset": "LSK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "115400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LSKBNB",
+ "status": "TRADING",
+ "baseAsset": "LSK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "20100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TNTBTC",
+ "status": "TRADING",
+ "baseAsset": "TNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "15082300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TNTETH",
+ "status": "TRADING",
+ "baseAsset": "TNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6646900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FUELBTC",
+ "status": "TRADING",
+ "baseAsset": "FUEL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "60427700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FUELETH",
+ "status": "TRADING",
+ "baseAsset": "FUEL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "24424800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MANABTC",
+ "status": "TRADING",
+ "baseAsset": "MANA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "19397300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MANAETH",
+ "status": "TRADING",
+ "baseAsset": "MANA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6197900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCDBTC",
+ "status": "TRADING",
+ "baseAsset": "BCD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "266700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCDETH",
+ "status": "TRADING",
+ "baseAsset": "BCD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "118100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DGDBTC",
+ "status": "TRADING",
+ "baseAsset": "DGD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "30900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DGDETH",
+ "status": "TRADING",
+ "baseAsset": "DGD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "9000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOTABNB",
+ "status": "TRADING",
+ "baseAsset": "IOTA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "417500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADXBTC",
+ "status": "TRADING",
+ "baseAsset": "ADX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "5864300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADXETH",
+ "status": "TRADING",
+ "baseAsset": "ADX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "524300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADXBNB",
+ "status": "TRADING",
+ "baseAsset": "ADX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "218000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADABTC",
+ "status": "TRADING",
+ "baseAsset": "ADA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "62929600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADAETH",
+ "status": "TRADING",
+ "baseAsset": "ADA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "13623000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PPTBTC",
+ "status": "TRADING",
+ "baseAsset": "PPT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "503700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PPTETH",
+ "status": "TRADING",
+ "baseAsset": "PPT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "110400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CMTBTC",
+ "status": "TRADING",
+ "baseAsset": "CMT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "25294300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CMTETH",
+ "status": "TRADING",
+ "baseAsset": "CMT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7780500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CMTBNB",
+ "status": "TRADING",
+ "baseAsset": "CMT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "661400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XLMBTC",
+ "status": "TRADING",
+ "baseAsset": "XLM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "15465700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XLMETH",
+ "status": "TRADING",
+ "baseAsset": "XLM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "10947200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XLMBNB",
+ "status": "TRADING",
+ "baseAsset": "XLM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1214300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CNDBTC",
+ "status": "TRADING",
+ "baseAsset": "CND",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "27678400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CNDETH",
+ "status": "TRADING",
+ "baseAsset": "CND",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7973800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CNDBNB",
+ "status": "TRADING",
+ "baseAsset": "CND",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2682800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LENDBTC",
+ "status": "TRADING",
+ "baseAsset": "LEND",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "66709800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LENDETH",
+ "status": "TRADING",
+ "baseAsset": "LEND",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "15463700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WABIBTC",
+ "status": "TRADING",
+ "baseAsset": "WABI",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3858000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WABIETH",
+ "status": "TRADING",
+ "baseAsset": "WABI",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "647200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WABIBNB",
+ "status": "TRADING",
+ "baseAsset": "WABI",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "280800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LTCETH",
+ "status": "TRADING",
+ "baseAsset": "LTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "5200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LTCUSDT",
+ "status": "TRADING",
+ "baseAsset": "LTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "55700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LTCBNB",
+ "status": "TRADING",
+ "baseAsset": "LTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "18600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TNBBTC",
+ "status": "TRADING",
+ "baseAsset": "TNB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "61109700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TNBETH",
+ "status": "TRADING",
+ "baseAsset": "TNB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "38128500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WAVESBTC",
+ "status": "TRADING",
+ "baseAsset": "WAVES",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "772500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WAVESETH",
+ "status": "TRADING",
+ "baseAsset": "WAVES",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "82200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WAVESBNB",
+ "status": "TRADING",
+ "baseAsset": "WAVES",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "22400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GTOBTC",
+ "status": "TRADING",
+ "baseAsset": "GTO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "9729600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GTOETH",
+ "status": "TRADING",
+ "baseAsset": "GTO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7988100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GTOBNB",
+ "status": "TRADING",
+ "baseAsset": "GTO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2202000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ICXBTC",
+ "status": "TRADING",
+ "baseAsset": "ICX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2926800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ICXETH",
+ "status": "TRADING",
+ "baseAsset": "ICX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1520800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ICXBNB",
+ "status": "TRADING",
+ "baseAsset": "ICX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "172100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "OSTBTC",
+ "status": "TRADING",
+ "baseAsset": "OST",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "16300200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "OSTETH",
+ "status": "TRADING",
+ "baseAsset": "OST",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "10247300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "OSTBNB",
+ "status": "TRADING",
+ "baseAsset": "OST",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "993700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ELFBTC",
+ "status": "TRADING",
+ "baseAsset": "ELF",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4822300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ELFETH",
+ "status": "TRADING",
+ "baseAsset": "ELF",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2012400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AIONBTC",
+ "status": "TRADING",
+ "baseAsset": "AION",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2889700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AIONETH",
+ "status": "TRADING",
+ "baseAsset": "AION",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2146600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AIONBNB",
+ "status": "TRADING",
+ "baseAsset": "AION",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "191400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEBLBTC",
+ "status": "TRADING",
+ "baseAsset": "NEBL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "377100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEBLETH",
+ "status": "TRADING",
+ "baseAsset": "NEBL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "71000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEBLBNB",
+ "status": "TRADING",
+ "baseAsset": "NEBL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "36800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BRDBTC",
+ "status": "TRADING",
+ "baseAsset": "BRD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2201500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BRDETH",
+ "status": "TRADING",
+ "baseAsset": "BRD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "237500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BRDBNB",
+ "status": "TRADING",
+ "baseAsset": "BRD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "73200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MCOBNB",
+ "status": "TRADING",
+ "baseAsset": "MCO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "12300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EDOBTC",
+ "status": "TRADING",
+ "baseAsset": "EDO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1514800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EDOETH",
+ "status": "TRADING",
+ "baseAsset": "EDO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "178900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WINGSBTC",
+ "status": "BREAK",
+ "baseAsset": "WINGS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WINGSETH",
+ "status": "BREAK",
+ "baseAsset": "WINGS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NAVBTC",
+ "status": "TRADING",
+ "baseAsset": "NAV",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2144400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NAVETH",
+ "status": "TRADING",
+ "baseAsset": "NAV",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "250300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NAVBNB",
+ "status": "TRADING",
+ "baseAsset": "NAV",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "43600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LUNBTC",
+ "status": "TRADING",
+ "baseAsset": "LUN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "279800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LUNETH",
+ "status": "TRADING",
+ "baseAsset": "LUN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "45500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRIGBTC",
+ "status": "BREAK",
+ "baseAsset": "TRIG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRIGETH",
+ "status": "BREAK",
+ "baseAsset": "TRIG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRIGBNB",
+ "status": "BREAK",
+ "baseAsset": "TRIG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "APPCBTC",
+ "status": "TRADING",
+ "baseAsset": "APPC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6279600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "APPCETH",
+ "status": "TRADING",
+ "baseAsset": "APPC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2519600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "APPCBNB",
+ "status": "TRADING",
+ "baseAsset": "APPC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "556300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VIBEBTC",
+ "status": "TRADING",
+ "baseAsset": "VIBE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "5029300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VIBEETH",
+ "status": "TRADING",
+ "baseAsset": "VIBE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2290000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RLCBTC",
+ "status": "TRADING",
+ "baseAsset": "RLC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "785100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RLCETH",
+ "status": "TRADING",
+ "baseAsset": "RLC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "176700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RLCBNB",
+ "status": "TRADING",
+ "baseAsset": "RLC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "33100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "INSBTC",
+ "status": "TRADING",
+ "baseAsset": "INS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3027300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "INSETH",
+ "status": "TRADING",
+ "baseAsset": "INS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "397000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PIVXBTC",
+ "status": "TRADING",
+ "baseAsset": "PIVX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "889800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PIVXETH",
+ "status": "TRADING",
+ "baseAsset": "PIVX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "222100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PIVXBNB",
+ "status": "TRADING",
+ "baseAsset": "PIVX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "28100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOSTBTC",
+ "status": "TRADING",
+ "baseAsset": "IOST",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "49930700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOSTETH",
+ "status": "TRADING",
+ "baseAsset": "IOST",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "17963200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CHATBTC",
+ "status": "BREAK",
+ "baseAsset": "CHAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CHATETH",
+ "status": "BREAK",
+ "baseAsset": "CHAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STEEMBTC",
+ "status": "TRADING",
+ "baseAsset": "STEEM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1199600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STEEMETH",
+ "status": "TRADING",
+ "baseAsset": "STEEM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "312100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STEEMBNB",
+ "status": "TRADING",
+ "baseAsset": "STEEM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "75600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NANOBTC",
+ "status": "TRADING",
+ "baseAsset": "NANO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2262900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NANOETH",
+ "status": "TRADING",
+ "baseAsset": "NANO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "294900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NANOBNB",
+ "status": "TRADING",
+ "baseAsset": "NANO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "89000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VIABTC",
+ "status": "TRADING",
+ "baseAsset": "VIA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "623500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VIAETH",
+ "status": "TRADING",
+ "baseAsset": "VIA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "93600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VIABNB",
+ "status": "TRADING",
+ "baseAsset": "VIA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "81000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BLZBTC",
+ "status": "TRADING",
+ "baseAsset": "BLZ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "12656600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BLZETH",
+ "status": "TRADING",
+ "baseAsset": "BLZ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2188000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BLZBNB",
+ "status": "TRADING",
+ "baseAsset": "BLZ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "468900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AEBTC",
+ "status": "TRADING",
+ "baseAsset": "AE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "597400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AEETH",
+ "status": "TRADING",
+ "baseAsset": "AE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "554600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AEBNB",
+ "status": "TRADING",
+ "baseAsset": "AE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "123100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RPXBTC",
+ "status": "BREAK",
+ "baseAsset": "RPX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RPXETH",
+ "status": "BREAK",
+ "baseAsset": "RPX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RPXBNB",
+ "status": "BREAK",
+ "baseAsset": "RPX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NCASHBTC",
+ "status": "TRADING",
+ "baseAsset": "NCASH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "153000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NCASHETH",
+ "status": "TRADING",
+ "baseAsset": "NCASH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "67411900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NCASHBNB",
+ "status": "TRADING",
+ "baseAsset": "NCASH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "21332000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POABTC",
+ "status": "TRADING",
+ "baseAsset": "POA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8586800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POAETH",
+ "status": "TRADING",
+ "baseAsset": "POA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4744600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POABNB",
+ "status": "TRADING",
+ "baseAsset": "POA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2311900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZILBTC",
+ "status": "TRADING",
+ "baseAsset": "ZIL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "44522800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZILETH",
+ "status": "TRADING",
+ "baseAsset": "ZIL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "19905900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZILBNB",
+ "status": "TRADING",
+ "baseAsset": "ZIL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "9231200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONTBTC",
+ "status": "TRADING",
+ "baseAsset": "ONT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "672900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONTETH",
+ "status": "TRADING",
+ "baseAsset": "ONT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "248200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONTBNB",
+ "status": "TRADING",
+ "baseAsset": "ONT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "126500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STORMBTC",
+ "status": "TRADING",
+ "baseAsset": "STORM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "82130100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STORMETH",
+ "status": "TRADING",
+ "baseAsset": "STORM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "24609300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "STORMBNB",
+ "status": "TRADING",
+ "baseAsset": "STORM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6673100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QTUMBNB",
+ "status": "TRADING",
+ "baseAsset": "QTUM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "24800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QTUMUSDT",
+ "status": "TRADING",
+ "baseAsset": "QTUM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "171500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XEMBTC",
+ "status": "TRADING",
+ "baseAsset": "XEM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8118400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XEMETH",
+ "status": "TRADING",
+ "baseAsset": "XEM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2766300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XEMBNB",
+ "status": "TRADING",
+ "baseAsset": "XEM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "551800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WANBTC",
+ "status": "TRADING",
+ "baseAsset": "WAN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1116700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WANETH",
+ "status": "TRADING",
+ "baseAsset": "WAN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1177500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WANBNB",
+ "status": "TRADING",
+ "baseAsset": "WAN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "101300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WPRBTC",
+ "status": "TRADING",
+ "baseAsset": "WPR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "12499800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WPRETH",
+ "status": "TRADING",
+ "baseAsset": "WPR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "11275100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QLCBTC",
+ "status": "TRADING",
+ "baseAsset": "QLC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "21208000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QLCETH",
+ "status": "TRADING",
+ "baseAsset": "QLC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3120800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SYSBTC",
+ "status": "TRADING",
+ "baseAsset": "SYS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "10148300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SYSETH",
+ "status": "TRADING",
+ "baseAsset": "SYS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "699000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SYSBNB",
+ "status": "TRADING",
+ "baseAsset": "SYS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "453500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QLCBNB",
+ "status": "TRADING",
+ "baseAsset": "QLC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1132700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GRSBTC",
+ "status": "TRADING",
+ "baseAsset": "GRS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2609800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GRSETH",
+ "status": "TRADING",
+ "baseAsset": "GRS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "194900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADAUSDT",
+ "status": "TRADING",
+ "baseAsset": "ADA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "44681800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADABNB",
+ "status": "TRADING",
+ "baseAsset": "ADA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4526300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CLOAKBTC",
+ "status": "BREAK",
+ "baseAsset": "CLOAK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CLOAKETH",
+ "status": "BREAK",
+ "baseAsset": "CLOAK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GNTBTC",
+ "status": "TRADING",
+ "baseAsset": "GNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7038900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GNTETH",
+ "status": "TRADING",
+ "baseAsset": "GNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2165800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GNTBNB",
+ "status": "TRADING",
+ "baseAsset": "GNT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "442900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LOOMBTC",
+ "status": "TRADING",
+ "baseAsset": "LOOM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4695700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LOOMETH",
+ "status": "TRADING",
+ "baseAsset": "LOOM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4655200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LOOMBNB",
+ "status": "TRADING",
+ "baseAsset": "LOOM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "588900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XRPUSDT",
+ "status": "TRADING",
+ "baseAsset": "XRP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": true,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "21663800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCNBTC",
+ "status": "BREAK",
+ "baseAsset": "BCN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCNETH",
+ "status": "BREAK",
+ "baseAsset": "BCN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCNBNB",
+ "status": "BREAK",
+ "baseAsset": "BCN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "REPBTC",
+ "status": "TRADING",
+ "baseAsset": "REP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "39600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "REPETH",
+ "status": "TRADING",
+ "baseAsset": "REP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "17800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "REPBNB",
+ "status": "TRADING",
+ "baseAsset": "REP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTCTUSD",
+ "status": "TRADING",
+ "baseAsset": "BTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00000100",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00000100"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TUSDBTC",
+ "status": "BREAK",
+ "baseAsset": "TUSD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETHTUSD",
+ "status": "TRADING",
+ "baseAsset": "ETH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TUSDETH",
+ "status": "BREAK",
+ "baseAsset": "TUSD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TUSDBNB",
+ "status": "BREAK",
+ "baseAsset": "TUSD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZENBTC",
+ "status": "TRADING",
+ "baseAsset": "ZEN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "38800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZENETH",
+ "status": "TRADING",
+ "baseAsset": "ZEN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZENBNB",
+ "status": "TRADING",
+ "baseAsset": "ZEN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SKYBTC",
+ "status": "TRADING",
+ "baseAsset": "SKY",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "295400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SKYETH",
+ "status": "TRADING",
+ "baseAsset": "SKY",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "61200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SKYBNB",
+ "status": "TRADING",
+ "baseAsset": "SKY",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "18400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EOSUSDT",
+ "status": "TRADING",
+ "baseAsset": "EOS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "674000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EOSBNB",
+ "status": "TRADING",
+ "baseAsset": "EOS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "108500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CVCBTC",
+ "status": "TRADING",
+ "baseAsset": "CVC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4964200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CVCETH",
+ "status": "TRADING",
+ "baseAsset": "CVC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "793400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CVCBNB",
+ "status": "TRADING",
+ "baseAsset": "CVC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "343400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "THETABTC",
+ "status": "TRADING",
+ "baseAsset": "THETA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "5038700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "THETAETH",
+ "status": "TRADING",
+ "baseAsset": "THETA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1737100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "THETABNB",
+ "status": "TRADING",
+ "baseAsset": "THETA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "755000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XRPBNB",
+ "status": "TRADING",
+ "baseAsset": "XRP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1405600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TUSDUSDT",
+ "status": "TRADING",
+ "baseAsset": "TUSD",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1720800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOTAUSDT",
+ "status": "TRADING",
+ "baseAsset": "IOTA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3767600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XLMUSDT",
+ "status": "TRADING",
+ "baseAsset": "XLM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "11819800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOTXBTC",
+ "status": "TRADING",
+ "baseAsset": "IOTX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "62047600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOTXETH",
+ "status": "TRADING",
+ "baseAsset": "IOTX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "10494500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QKCBTC",
+ "status": "TRADING",
+ "baseAsset": "QKC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "24155000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "QKCETH",
+ "status": "TRADING",
+ "baseAsset": "QKC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6874500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AGIBTC",
+ "status": "TRADING",
+ "baseAsset": "AGI",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8524400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AGIETH",
+ "status": "TRADING",
+ "baseAsset": "AGI",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3979700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "AGIBNB",
+ "status": "TRADING",
+ "baseAsset": "AGI",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "444800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NXSBTC",
+ "status": "TRADING",
+ "baseAsset": "NXS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "820500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NXSETH",
+ "status": "TRADING",
+ "baseAsset": "NXS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "121800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NXSBNB",
+ "status": "TRADING",
+ "baseAsset": "NXS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "66500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ENJBNB",
+ "status": "TRADING",
+ "baseAsset": "ENJ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "963900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DATABTC",
+ "status": "TRADING",
+ "baseAsset": "DATA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "10846500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DATAETH",
+ "status": "TRADING",
+ "baseAsset": "DATA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3264700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONTUSDT",
+ "status": "TRADING",
+ "baseAsset": "ONT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "840800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRXBNB",
+ "status": "TRADING",
+ "baseAsset": "TRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "10168100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRXUSDT",
+ "status": "TRADING",
+ "baseAsset": "TRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": true,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "76622600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETCUSDT",
+ "status": "TRADING",
+ "baseAsset": "ETC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "159700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETCBNB",
+ "status": "TRADING",
+ "baseAsset": "ETC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ICXUSDT",
+ "status": "TRADING",
+ "baseAsset": "ICX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2173500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SCBTC",
+ "status": "TRADING",
+ "baseAsset": "SC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "328000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SCETH",
+ "status": "TRADING",
+ "baseAsset": "SC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "61896000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "SCBNB",
+ "status": "TRADING",
+ "baseAsset": "SC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "15000500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NPXSBTC",
+ "status": "TRADING",
+ "baseAsset": "NPXS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4340000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NPXSETH",
+ "status": "TRADING",
+ "baseAsset": "NPXS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "476000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VENUSDT",
+ "status": "BREAK",
+ "baseAsset": "VEN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "KEYBTC",
+ "status": "TRADING",
+ "baseAsset": "KEY",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "56242900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "KEYETH",
+ "status": "TRADING",
+ "baseAsset": "KEY",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "32748000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NASBTC",
+ "status": "TRADING",
+ "baseAsset": "NAS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "279400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NASETH",
+ "status": "TRADING",
+ "baseAsset": "NAS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "71800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NASBNB",
+ "status": "TRADING",
+ "baseAsset": "NAS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "45700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MFTBTC",
+ "status": "TRADING",
+ "baseAsset": "MFT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "138000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MFTETH",
+ "status": "TRADING",
+ "baseAsset": "MFT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "35855500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MFTBNB",
+ "status": "TRADING",
+ "baseAsset": "MFT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "9292000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DENTBTC",
+ "status": "TRADING",
+ "baseAsset": "DENT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1830000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DENTETH",
+ "status": "TRADING",
+ "baseAsset": "DENT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "125000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ARDRBTC",
+ "status": "TRADING",
+ "baseAsset": "ARDR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3945800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ARDRETH",
+ "status": "TRADING",
+ "baseAsset": "ARDR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "358500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ARDRBNB",
+ "status": "TRADING",
+ "baseAsset": "ARDR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "331400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NULSUSDT",
+ "status": "TRADING",
+ "baseAsset": "NULS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "353500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "HOTBTC",
+ "status": "TRADING",
+ "baseAsset": "HOT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1870000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "HOTETH",
+ "status": "TRADING",
+ "baseAsset": "HOT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "565000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VETBTC",
+ "status": "TRADING",
+ "baseAsset": "VET",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "116000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VETETH",
+ "status": "TRADING",
+ "baseAsset": "VET",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "52447600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VETUSDT",
+ "status": "TRADING",
+ "baseAsset": "VET",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "78479400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "VETBNB",
+ "status": "TRADING",
+ "baseAsset": "VET",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "30626300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DOCKBTC",
+ "status": "TRADING",
+ "baseAsset": "DOCK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "14703300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DOCKETH",
+ "status": "TRADING",
+ "baseAsset": "DOCK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "5313300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POLYBTC",
+ "status": "TRADING",
+ "baseAsset": "POLY",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6854100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "POLYBNB",
+ "status": "TRADING",
+ "baseAsset": "POLY",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "285600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PHXBTC",
+ "status": "BREAK",
+ "baseAsset": "PHX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "79612100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PHXETH",
+ "status": "BREAK",
+ "baseAsset": "PHX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7740200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PHXBNB",
+ "status": "BREAK",
+ "baseAsset": "PHX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3980900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "HCBTC",
+ "status": "TRADING",
+ "baseAsset": "HC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "276700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "HCETH",
+ "status": "TRADING",
+ "baseAsset": "HC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "66400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GOBTC",
+ "status": "TRADING",
+ "baseAsset": "GO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7814200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "GOBNB",
+ "status": "TRADING",
+ "baseAsset": "GO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "949900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PAXBTC",
+ "status": "BREAK",
+ "baseAsset": "PAX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PAXBNB",
+ "status": "BREAK",
+ "baseAsset": "PAX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PAXUSDT",
+ "status": "TRADING",
+ "baseAsset": "PAX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2450000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PAXETH",
+ "status": "BREAK",
+ "baseAsset": "PAX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "ETH",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.01000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RVNBTC",
+ "status": "TRADING",
+ "baseAsset": "RVN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "40636700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RVNBNB",
+ "status": "TRADING",
+ "baseAsset": "RVN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2440800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DCRBTC",
+ "status": "TRADING",
+ "baseAsset": "DCR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "28900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DCRBNB",
+ "status": "TRADING",
+ "baseAsset": "DCR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "USDCBNB",
+ "status": "BREAK",
+ "baseAsset": "USDC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "USDCBTC",
+ "status": "BREAK",
+ "baseAsset": "USDC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MITHBTC",
+ "status": "TRADING",
+ "baseAsset": "MITH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "20880600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MITHBNB",
+ "status": "TRADING",
+ "baseAsset": "MITH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "813300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHABCBTC",
+ "status": "TRADING",
+ "baseAsset": "BCHABC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "31000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHSVBTC",
+ "status": "BREAK",
+ "baseAsset": "BCHSV",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000000",
+ "maxPrice": "0.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHABCUSDT",
+ "status": "TRADING",
+ "baseAsset": "BCHABC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "22000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHSVUSDT",
+ "status": "BREAK",
+ "baseAsset": "BCHSV",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BNBPAX",
+ "status": "TRADING",
+ "baseAsset": "BNB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "57700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTCPAX",
+ "status": "TRADING",
+ "baseAsset": "BTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00000100",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00000100"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETHPAX",
+ "status": "TRADING",
+ "baseAsset": "ETH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XRPPAX",
+ "status": "TRADING",
+ "baseAsset": "XRP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "971300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EOSPAX",
+ "status": "TRADING",
+ "baseAsset": "EOS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "26100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XLMPAX",
+ "status": "TRADING",
+ "baseAsset": "XLM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "187400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RENBTC",
+ "status": "TRADING",
+ "baseAsset": "REN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8259300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "RENBNB",
+ "status": "TRADING",
+ "baseAsset": "REN",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1865400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BNBTUSD",
+ "status": "TRADING",
+ "baseAsset": "BNB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "35400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XRPTUSD",
+ "status": "TRADING",
+ "baseAsset": "XRP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "946000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EOSTUSD",
+ "status": "TRADING",
+ "baseAsset": "EOS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "26500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XLMTUSD",
+ "status": "TRADING",
+ "baseAsset": "XLM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "389700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BNBUSDC",
+ "status": "TRADING",
+ "baseAsset": "BNB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "27700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTCUSDC",
+ "status": "TRADING",
+ "baseAsset": "BTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00000100",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00000100"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETHUSDC",
+ "status": "TRADING",
+ "baseAsset": "ETH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XRPUSDC",
+ "status": "TRADING",
+ "baseAsset": "XRP",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1492000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "EOSUSDC",
+ "status": "TRADING",
+ "baseAsset": "EOS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "34600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XLMUSDC",
+ "status": "TRADING",
+ "baseAsset": "XLM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1401500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "USDCUSDT",
+ "status": "TRADING",
+ "baseAsset": "USDC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1523100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADATUSD",
+ "status": "TRADING",
+ "baseAsset": "ADA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2231500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRXTUSD",
+ "status": "TRADING",
+ "baseAsset": "TRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7502800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEOTUSD",
+ "status": "TRADING",
+ "baseAsset": "NEO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "13500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRXXRP",
+ "status": "TRADING",
+ "baseAsset": "TRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "XRP",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "14698800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XZCXRP",
+ "status": "TRADING",
+ "baseAsset": "XZC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "XRP",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "20400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PAXTUSD",
+ "status": "TRADING",
+ "baseAsset": "PAX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "554400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "USDCTUSD",
+ "status": "TRADING",
+ "baseAsset": "USDC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "974900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "USDCPAX",
+ "status": "TRADING",
+ "baseAsset": "USDC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "460200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LINKUSDT",
+ "status": "TRADING",
+ "baseAsset": "LINK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1275600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LINKTUSD",
+ "status": "TRADING",
+ "baseAsset": "LINK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "186400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LINKPAX",
+ "status": "TRADING",
+ "baseAsset": "LINK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "120400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LINKUSDC",
+ "status": "TRADING",
+ "baseAsset": "LINK",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "79700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WAVESUSDT",
+ "status": "TRADING",
+ "baseAsset": "WAVES",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "126400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WAVESTUSD",
+ "status": "TRADING",
+ "baseAsset": "WAVES",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "37300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WAVESPAX",
+ "status": "TRADING",
+ "baseAsset": "WAVES",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "WAVESUSDC",
+ "status": "TRADING",
+ "baseAsset": "WAVES",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "26900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHABCTUSD",
+ "status": "TRADING",
+ "baseAsset": "BCHABC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHABCPAX",
+ "status": "TRADING",
+ "baseAsset": "BCHABC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHABCUSDC",
+ "status": "TRADING",
+ "baseAsset": "BCHABC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHSVTUSD",
+ "status": "BREAK",
+ "baseAsset": "BCHSV",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHSVPAX",
+ "status": "BREAK",
+ "baseAsset": "BCHSV",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BCHSVUSDC",
+ "status": "BREAK",
+ "baseAsset": "BCHSV",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "1.3",
+ "multiplierDown": "0.7",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LTCTUSD",
+ "status": "TRADING",
+ "baseAsset": "LTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LTCPAX",
+ "status": "TRADING",
+ "baseAsset": "LTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "5300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "LTCUSDC",
+ "status": "TRADING",
+ "baseAsset": "LTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRXPAX",
+ "status": "TRADING",
+ "baseAsset": "TRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4068900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TRXUSDC",
+ "status": "TRADING",
+ "baseAsset": "TRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "4984400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTTBTC",
+ "status": "TRADING",
+ "baseAsset": "BTT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8020000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTTBNB",
+ "status": "TRADING",
+ "baseAsset": "BTT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "385000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTTUSDT",
+ "status": "TRADING",
+ "baseAsset": "BTT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1060000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BNBUSDS",
+ "status": "TRADING",
+ "baseAsset": "BNB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDS",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTCUSDS",
+ "status": "TRADING",
+ "baseAsset": "BTC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDS",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00000100",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00000100"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "USDSUSDT",
+ "status": "TRADING",
+ "baseAsset": "USDS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "153500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "USDSPAX",
+ "status": "TRADING",
+ "baseAsset": "USDS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "156600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "USDSTUSD",
+ "status": "TRADING",
+ "baseAsset": "USDS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "74500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "USDSUSDC",
+ "status": "TRADING",
+ "baseAsset": "USDS",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "232600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTTPAX",
+ "status": "TRADING",
+ "baseAsset": "BTT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "95111900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTTTUSD",
+ "status": "TRADING",
+ "baseAsset": "BTT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "78001500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BTTUSDC",
+ "status": "TRADING",
+ "baseAsset": "BTT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "125000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONGBNB",
+ "status": "TRADING",
+ "baseAsset": "ONG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "51900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONGBTC",
+ "status": "TRADING",
+ "baseAsset": "ONG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1217900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONGUSDT",
+ "status": "TRADING",
+ "baseAsset": "ONG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "656200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "HOTBNB",
+ "status": "TRADING",
+ "baseAsset": "HOT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "71608100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "HOTUSDT",
+ "status": "TRADING",
+ "baseAsset": "HOT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "241000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZILUSDT",
+ "status": "TRADING",
+ "baseAsset": "ZIL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "29107600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZRXBNB",
+ "status": "TRADING",
+ "baseAsset": "ZRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "88200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZRXUSDT",
+ "status": "TRADING",
+ "baseAsset": "ZRX",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "412400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FETBNB",
+ "status": "TRADING",
+ "baseAsset": "FET",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1354700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FETBTC",
+ "status": "TRADING",
+ "baseAsset": "FET",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1669300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FETUSDT",
+ "status": "TRADING",
+ "baseAsset": "FET",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3243500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BATUSDT",
+ "status": "TRADING",
+ "baseAsset": "BAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2120100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XMRBNB",
+ "status": "TRADING",
+ "baseAsset": "XMR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "XMRUSDT",
+ "status": "TRADING",
+ "baseAsset": "XMR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZECBNB",
+ "status": "TRADING",
+ "baseAsset": "ZEC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZECUSDT",
+ "status": "TRADING",
+ "baseAsset": "ZEC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "6700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZECPAX",
+ "status": "TRADING",
+ "baseAsset": "ZEC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZECTUSD",
+ "status": "TRADING",
+ "baseAsset": "ZEC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "600.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ZECUSDC",
+ "status": "TRADING",
+ "baseAsset": "ZEC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOSTBNB",
+ "status": "TRADING",
+ "baseAsset": "IOST",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "1000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "5060500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "IOSTUSDT",
+ "status": "TRADING",
+ "baseAsset": "IOST",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "41402800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CELRBNB",
+ "status": "TRADING",
+ "baseAsset": "CELR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "14310800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CELRBTC",
+ "status": "TRADING",
+ "baseAsset": "CELR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "45282700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "CELRUSDT",
+ "status": "TRADING",
+ "baseAsset": "CELR",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "36144200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADAPAX",
+ "status": "TRADING",
+ "baseAsset": "ADA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "857400.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ADAUSDC",
+ "status": "TRADING",
+ "baseAsset": "ADA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3042200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEOPAX",
+ "status": "TRADING",
+ "baseAsset": "NEO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "8800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NEOUSDC",
+ "status": "TRADING",
+ "baseAsset": "NEO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "20500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DASHBNB",
+ "status": "TRADING",
+ "baseAsset": "DASH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "DASHUSDT",
+ "status": "TRADING",
+ "baseAsset": "DASH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.01000000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.01000000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00001000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00001000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "NANOUSDT",
+ "status": "TRADING",
+ "baseAsset": "NANO",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "279300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "OMGBNB",
+ "status": "TRADING",
+ "baseAsset": "OMG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "40300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "OMGUSDT",
+ "status": "TRADING",
+ "baseAsset": "OMG",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "193200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "THETAUSDT",
+ "status": "TRADING",
+ "baseAsset": "THETA",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1618800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ENJUSDT",
+ "status": "TRADING",
+ "baseAsset": "ENJ",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "2366900.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MITHUSDT",
+ "status": "TRADING",
+ "baseAsset": "MITH",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "7316200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MATICBNB",
+ "status": "TRADING",
+ "baseAsset": "MATIC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "37288200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MATICBTC",
+ "status": "TRADING",
+ "baseAsset": "MATIC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "349000000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "MATICUSDT",
+ "status": "TRADING",
+ "baseAsset": "MATIC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "78345200.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ATOMBNB",
+ "status": "TRADING",
+ "baseAsset": "ATOM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "33700.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ATOMBTC",
+ "status": "TRADING",
+ "baseAsset": "ATOM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000010",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000010"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "588300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ATOMUSDT",
+ "status": "TRADING",
+ "baseAsset": "ATOM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "208000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ATOMUSDC",
+ "status": "TRADING",
+ "baseAsset": "ATOM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "3800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ATOMPAX",
+ "status": "TRADING",
+ "baseAsset": "ATOM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "15300.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ATOMTUSD",
+ "status": "TRADING",
+ "baseAsset": "ATOM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "15000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETCUSDC",
+ "status": "TRADING",
+ "baseAsset": "ETC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "9800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETCPAX",
+ "status": "TRADING",
+ "baseAsset": "ETC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "1000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ETCTUSD",
+ "status": "TRADING",
+ "baseAsset": "ETC",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00100000",
+ "maxPrice": "10000000.00000000",
+ "tickSize": "0.00100000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.00100000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.00100000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "9100.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BATUSDC",
+ "status": "TRADING",
+ "baseAsset": "BAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "302000.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BATPAX",
+ "status": "TRADING",
+ "baseAsset": "BAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "186800.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "BATTUSD",
+ "status": "TRADING",
+ "baseAsset": "BAT",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00010000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00010000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.01000000",
+ "maxQty": "10000000.00000000",
+ "stepSize": "0.01000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MARKET_LOT_SIZE",
+ "minQty": "0.00000000",
+ "maxQty": "85500.00000000",
+ "stepSize": "0.00000000"
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PHBBNB",
+ "status": "TRADING",
+ "baseAsset": "PHB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PHBBTC",
+ "status": "TRADING",
+ "baseAsset": "PHB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PHBUSDC",
+ "status": "TRADING",
+ "baseAsset": "PHB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PHBTUSD",
+ "status": "TRADING",
+ "baseAsset": "PHB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "PHBPAX",
+ "status": "TRADING",
+ "baseAsset": "PHB",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TFUELBNB",
+ "status": "TRADING",
+ "baseAsset": "TFUEL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TFUELBTC",
+ "status": "TRADING",
+ "baseAsset": "TFUEL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TFUELUSDT",
+ "status": "TRADING",
+ "baseAsset": "TFUEL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TFUELUSDC",
+ "status": "TRADING",
+ "baseAsset": "TFUEL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TFUELTUSD",
+ "status": "TRADING",
+ "baseAsset": "TFUEL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "TFUELPAX",
+ "status": "TRADING",
+ "baseAsset": "TFUEL",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONEBNB",
+ "status": "TRADING",
+ "baseAsset": "ONE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONEBTC",
+ "status": "TRADING",
+ "baseAsset": "ONE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONEUSDT",
+ "status": "TRADING",
+ "baseAsset": "ONE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONETUSD",
+ "status": "TRADING",
+ "baseAsset": "ONE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONEPAX",
+ "status": "TRADING",
+ "baseAsset": "ONE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "ONEUSDC",
+ "status": "TRADING",
+ "baseAsset": "ONE",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FTMBNB",
+ "status": "TRADING",
+ "baseAsset": "FTM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BNB",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000100",
+ "maxPrice": "10000.00000000",
+ "tickSize": "0.00000100"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.10000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FTMBTC",
+ "status": "TRADING",
+ "baseAsset": "FTM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "BTC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00000001",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00000001"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "1.00000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "1.00000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "0.00100000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FTMUSDT",
+ "status": "TRADING",
+ "baseAsset": "FTM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDT",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FTMTUSD",
+ "status": "TRADING",
+ "baseAsset": "FTM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "TUSD",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FTMPAX",
+ "status": "TRADING",
+ "baseAsset": "FTM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "PAX",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ },
+ {
+ "symbol": "FTMUSDC",
+ "status": "TRADING",
+ "baseAsset": "FTM",
+ "baseAssetPrecision": 8,
+ "quoteAsset": "USDC",
+ "quotePrecision": 8,
+ "orderTypes": [
+ "LIMIT",
+ "LIMIT_MAKER",
+ "MARKET",
+ "STOP_LOSS_LIMIT",
+ "TAKE_PROFIT_LIMIT"
+ ],
+ "icebergAllowed": true,
+ "isSpotTradingAllowed": true,
+ "isMarginTradingAllowed": false,
+ "filters": [
+ {
+ "filterType": "PRICE_FILTER",
+ "minPrice": "0.00001000",
+ "maxPrice": "100000.00000000",
+ "tickSize": "0.00001000"
+ },
+ {
+ "filterType": "PERCENT_PRICE",
+ "multiplierUp": "5",
+ "multiplierDown": "0.2",
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "LOT_SIZE",
+ "minQty": "0.10000000",
+ "maxQty": "90000000.00000000",
+ "stepSize": "0.10000000"
+ },
+ {
+ "filterType": "MIN_NOTIONAL",
+ "minNotional": "10.00000000",
+ "applyToMarket": true,
+ "avgPriceMins": 5
+ },
+ {
+ "filterType": "ICEBERG_PARTS",
+ "limit": 10
+ },
+ {
+ "filterType": "MAX_NUM_ALGO_ORDERS",
+ "maxNumAlgoOrders": 5
+ }
+ ]
+ }
+ ]
+ },
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v1/historicalTrades": {
+ "GET": [
+ {
+ "data": {
+ "code": -2014,
+ "msg": "API-key format invalid."
+ },
+ "queryString": "fromid=1337\u0026limit=5\u0026symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ },
+ {
+ "data": {
+ "code": -2014,
+ "msg": "API-key format invalid."
+ },
+ "queryString": "fromid=0\u0026limit=5\u0026symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ },
+ {
+ "data": {
+ "code": -2014,
+ "msg": "API-key format invalid."
+ },
+ "queryString": "limit=5\u0026symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v1/klines": {
+ "GET": [
+ {
+ "data": [
+ [
+ 1560289800000,
+ "7881.84000000",
+ "7893.07000000",
+ "7875.00000000",
+ "7883.54000000",
+ "48.48529700",
+ 1560290099999,
+ "382349.29249228",
+ 834,
+ "26.54171500",
+ "209356.25914881",
+ "0"
+ ],
+ [
+ 1560290100000,
+ "7885.23000000",
+ "7888.87000000",
+ "7878.02000000",
+ "7885.00000000",
+ "67.35000200",
+ 1560290399999,
+ "530915.10829860",
+ 842,
+ "41.30834600",
+ "325645.54788180",
+ "0"
+ ],
+ [
+ 1560290400000,
+ "7883.90000000",
+ "7890.85000000",
+ "7874.59000000",
+ "7875.96000000",
+ "38.78600600",
+ 1560290699999,
+ "305845.05705121",
+ 738,
+ "12.07722800",
+ "95228.17170730",
+ "0"
+ ],
+ [
+ 1560290700000,
+ "7874.61000000",
+ "7880.22000000",
+ "7873.00000000",
+ "7878.10000000",
+ "32.01931100",
+ 1560290999999,
+ "252191.69888947",
+ 634,
+ "19.45375600",
+ "153223.94584195",
+ "0"
+ ],
+ [
+ 1560291000000,
+ "7876.46000000",
+ "7897.80000000",
+ "7875.00000000",
+ "7895.15000000",
+ "57.09996400",
+ 1560291299999,
+ "450163.99985188",
+ 1072,
+ "32.52785000",
+ "256489.35917382",
+ "0"
+ ],
+ [
+ 1560291300000,
+ "7897.02000000",
+ "7900.00000000",
+ "7881.26000000",
+ "7892.98000000",
+ "36.86890600",
+ 1560291599999,
+ "290969.83727260",
+ 793,
+ "21.04945500",
+ "166142.18520686",
+ "0"
+ ],
+ [
+ 1560291600000,
+ "7892.02000000",
+ "7905.04000000",
+ "7889.28000000",
+ "7905.00000000",
+ "35.37265200",
+ 1560291899999,
+ "279242.32341654",
+ 793,
+ "20.33734800",
+ "160562.95336440",
+ "0"
+ ],
+ [
+ 1560291900000,
+ "7905.00000000",
+ "7909.29000000",
+ "7894.18000000",
+ "7900.96000000",
+ "51.66462800",
+ 1560292199999,
+ "408277.84852476",
+ 830,
+ "29.64769400",
+ "234290.68021458",
+ "0"
+ ],
+ [
+ 1560292200000,
+ "7900.77000000",
+ "7906.52000000",
+ "7889.61000000",
+ "7896.68000000",
+ "45.26993800",
+ 1560292499999,
+ "357641.67054969",
+ 800,
+ "26.03810900",
+ "205699.79402493",
+ "0"
+ ],
+ [
+ 1560292500000,
+ "7896.56000000",
+ "7903.00000000",
+ "7894.00000000",
+ "7902.66000000",
+ "44.63988800",
+ 1560292799999,
+ "352595.79732206",
+ 831,
+ "22.42822900",
+ "177163.31409709",
+ "0"
+ ],
+ [
+ 1560292800000,
+ "7901.68000000",
+ "7905.72000000",
+ "7879.90000000",
+ "7886.98000000",
+ "116.18438300",
+ 1560293099999,
+ "916943.64246997",
+ 1282,
+ "51.26161500",
+ "404408.36174471",
+ "0"
+ ],
+ [
+ 1560293100000,
+ "7885.45000000",
+ "7889.43000000",
+ "7877.31000000",
+ "7879.75000000",
+ "41.70249800",
+ 1560293399999,
+ "328738.15323699",
+ 753,
+ "22.28951500",
+ "175709.46569603",
+ "0"
+ ],
+ [
+ 1560293400000,
+ "7879.77000000",
+ "7886.96000000",
+ "7869.37000000",
+ "7870.00000000",
+ "85.97570200",
+ 1560293699999,
+ "677186.81101133",
+ 927,
+ "55.44460500",
+ "436658.83891601",
+ "0"
+ ],
+ [
+ 1560293700000,
+ "7870.00000000",
+ "7870.00000000",
+ "7863.49000000",
+ "7869.55000000",
+ "72.24212400",
+ 1560293999999,
+ "568442.90824311",
+ 764,
+ "53.28308100",
+ "419285.91751837",
+ "0"
+ ],
+ [
+ 1560294000000,
+ "7867.93000000",
+ "7929.78000000",
+ "7867.20000000",
+ "7896.14000000",
+ "282.87952800",
+ 1560294299999,
+ "2229697.40509594",
+ 1487,
+ "244.70839500",
+ "1928487.97570286",
+ "0"
+ ],
+ [
+ 1560294300000,
+ "7898.81000000",
+ "7902.13000000",
+ "7885.58000000",
+ "7888.42000000",
+ "65.27782600",
+ 1560294599999,
+ "515260.60356970",
+ 743,
+ "37.86963800",
+ "298905.24330721",
+ "0"
+ ],
+ [
+ 1560294600000,
+ "7891.60000000",
+ "7894.72000000",
+ "7880.64000000",
+ "7883.61000000",
+ "57.53969200",
+ 1560294899999,
+ "453829.17707837",
+ 669,
+ "26.13476400",
+ "206142.58590609",
+ "0"
+ ],
+ [
+ 1560294900000,
+ "7884.22000000",
+ "7900.10000000",
+ "7882.81000000",
+ "7891.07000000",
+ "85.75378900",
+ 1560295199999,
+ "676735.70630014",
+ 908,
+ "52.85499000",
+ "417113.35460680",
+ "0"
+ ],
+ [
+ 1560295200000,
+ "7892.17000000",
+ "7905.97000000",
+ "7887.98000000",
+ "7905.97000000",
+ "124.03521600",
+ 1560295499999,
+ "979680.45514714",
+ 892,
+ "40.74581600",
+ "321816.22842545",
+ "0"
+ ],
+ [
+ 1560295500000,
+ "7904.91000000",
+ "7906.85000000",
+ "7894.12000000",
+ "7904.00000000",
+ "49.88850200",
+ 1560295799999,
+ "394182.50097019",
+ 658,
+ "24.09410100",
+ "190373.54848526",
+ "0"
+ ],
+ [
+ 1560295800000,
+ "7904.00000000",
+ "7908.20000000",
+ "7895.66000000",
+ "7897.35000000",
+ "58.66883700",
+ 1560296099999,
+ "463609.99079062",
+ 778,
+ "24.77859000",
+ "195812.97883943",
+ "0"
+ ],
+ [
+ 1560296100000,
+ "7898.12000000",
+ "7904.32000000",
+ "7886.80000000",
+ "7891.37000000",
+ "45.37032000",
+ 1560296399999,
+ "358173.04332748",
+ 654,
+ "26.56629600",
+ "209713.84022121",
+ "0"
+ ],
+ [
+ 1560296400000,
+ "7891.48000000",
+ "7894.97000000",
+ "7881.31000000",
+ "7882.90000000",
+ "36.15788200",
+ 1560296699999,
+ "285239.28461983",
+ 553,
+ "19.52315300",
+ "154024.35607127",
+ "0"
+ ],
+ [
+ 1560296700000,
+ "7883.57000000",
+ "7895.01000000",
+ "7883.57000000",
+ "7885.63000000",
+ "64.60177300",
+ 1560296999999,
+ "509686.52481889",
+ 548,
+ "42.80302800",
+ "337717.93005312",
+ "0"
+ ]
+ ],
+ "queryString": "interval=5m\u0026limit=24\u0026symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v1/ticker/24hr": {
+ "GET": [
+ {
+ "data": [
+ {
+ "symbol": "ETHBTC",
+ "priceChange": "0.00015200",
+ "priceChangePercent": "0.492",
+ "weightedAvgPrice": "0.03090567",
+ "prevClosePrice": "0.03089900",
+ "lastPrice": "0.03105300",
+ "lastQty": "0.03900000",
+ "bidPrice": "0.03104200",
+ "bidQty": "1.61700000",
+ "askPrice": "0.03105300",
+ "askQty": "8.39600000",
+ "openPrice": "0.03090100",
+ "highPrice": "0.03124000",
+ "lowPrice": "0.03069600",
+ "volume": "129150.93400000",
+ "quoteVolume": "3991.49565303",
+ "openTime": 1560210242200,
+ "closeTime": 1560296642200,
+ "firstId": 127054257,
+ "lastId": 127184979,
+ "count": 130723
+ },
+ {
+ "symbol": "LTCBTC",
+ "priceChange": "0.00104700",
+ "priceChangePercent": "6.475",
+ "weightedAvgPrice": "0.01671812",
+ "prevClosePrice": "0.01617000",
+ "lastPrice": "0.01721700",
+ "lastQty": "0.12000000",
+ "bidPrice": "0.01721300",
+ "bidQty": "0.58000000",
+ "askPrice": "0.01721700",
+ "askQty": "1.91000000",
+ "openPrice": "0.01617000",
+ "highPrice": "0.01752700",
+ "lowPrice": "0.01594300",
+ "volume": "514301.53000000",
+ "quoteVolume": "8598.15583782",
+ "openTime": 1560210241807,
+ "closeTime": 1560296641807,
+ "firstId": 27757801,
+ "lastId": 27905612,
+ "count": 147812
+ },
+ {
+ "symbol": "BNBBTC",
+ "priceChange": "0.00003740",
+ "priceChangePercent": "0.933",
+ "weightedAvgPrice": "0.00400785",
+ "prevClosePrice": "0.00401100",
+ "lastPrice": "0.00404770",
+ "lastQty": "0.31000000",
+ "bidPrice": "0.00404700",
+ "bidQty": "11.09000000",
+ "askPrice": "0.00404770",
+ "askQty": "11.29000000",
+ "openPrice": "0.00401030",
+ "highPrice": "0.00404780",
+ "lowPrice": "0.00396120",
+ "volume": "2500696.35000000",
+ "quoteVolume": "10022.42483221",
+ "openTime": 1560210241963,
+ "closeTime": 1560296641963,
+ "firstId": 49608008,
+ "lastId": 49690881,
+ "count": 82874
+ },
+ {
+ "symbol": "NEOBTC",
+ "priceChange": "0.00001800",
+ "priceChangePercent": "1.171",
+ "weightedAvgPrice": "0.00153873",
+ "prevClosePrice": "0.00153700",
+ "lastPrice": "0.00155500",
+ "lastQty": "54.36000000",
+ "bidPrice": "0.00155500",
+ "bidQty": "44.70000000",
+ "askPrice": "0.00155600",
+ "askQty": "297.12000000",
+ "openPrice": "0.00153700",
+ "highPrice": "0.00157500",
+ "lowPrice": "0.00151300",
+ "volume": "349009.48000000",
+ "quoteVolume": "537.03121117",
+ "openTime": 1560210242365,
+ "closeTime": 1560296642365,
+ "firstId": 26947014,
+ "lastId": 26964071,
+ "count": 17058
+ },
+ {
+ "symbol": "QTUMETH",
+ "priceChange": "-0.00016400",
+ "priceChangePercent": "-1.263",
+ "weightedAvgPrice": "0.01292534",
+ "prevClosePrice": "0.01298000",
+ "lastPrice": "0.01282000",
+ "lastQty": "1.00000000",
+ "bidPrice": "0.01277300",
+ "bidQty": "3.95000000",
+ "askPrice": "0.01282000",
+ "askQty": "16.44000000",
+ "openPrice": "0.01298400",
+ "highPrice": "0.01336000",
+ "lowPrice": "0.01269100",
+ "volume": "64460.16000000",
+ "quoteVolume": "833.16968650",
+ "openTime": 1560210242001,
+ "closeTime": 1560296642001,
+ "firstId": 3591805,
+ "lastId": 3593885,
+ "count": 2081
+ },
+ {
+ "symbol": "EOSETH",
+ "priceChange": "-0.00021200",
+ "priceChangePercent": "-0.815",
+ "weightedAvgPrice": "0.02589703",
+ "prevClosePrice": "0.02599100",
+ "lastPrice": "0.02579800",
+ "lastQty": "10.95000000",
+ "bidPrice": "0.02580000",
+ "bidQty": "0.77000000",
+ "askPrice": "0.02580300",
+ "askQty": "30.88000000",
+ "openPrice": "0.02601000",
+ "highPrice": "0.02624600",
+ "lowPrice": "0.02566800",
+ "volume": "189008.84000000",
+ "quoteVolume": "4894.76829344",
+ "openTime": 1560210241817,
+ "closeTime": 1560296641817,
+ "firstId": 15155696,
+ "lastId": 15163777,
+ "count": 8082
+ },
+ {
+ "symbol": "SNTETH",
+ "priceChange": "0.00000075",
+ "priceChangePercent": "0.621",
+ "weightedAvgPrice": "0.00012203",
+ "prevClosePrice": "0.00012087",
+ "lastPrice": "0.00012161",
+ "lastQty": "3506.00000000",
+ "bidPrice": "0.00012129",
+ "bidQty": "8230.00000000",
+ "askPrice": "0.00012177",
+ "askQty": "7413.00000000",
+ "openPrice": "0.00012086",
+ "highPrice": "0.00012576",
+ "lowPrice": "0.00011935",
+ "volume": "1619318.00000000",
+ "quoteVolume": "197.60326762",
+ "openTime": 1560210241181,
+ "closeTime": 1560296641181,
+ "firstId": 2179270,
+ "lastId": 2180436,
+ "count": 1167
+ },
+ {
+ "symbol": "BNTETH",
+ "priceChange": "0.00002800",
+ "priceChangePercent": "0.981",
+ "weightedAvgPrice": "0.00284127",
+ "prevClosePrice": "0.00284800",
+ "lastPrice": "0.00288200",
+ "lastQty": "92.00000000",
+ "bidPrice": "0.00287800",
+ "bidQty": "428.00000000",
+ "askPrice": "0.00288200",
+ "askQty": "1987.00000000",
+ "openPrice": "0.00285400",
+ "highPrice": "0.00288300",
+ "lowPrice": "0.00280800",
+ "volume": "243660.13000000",
+ "quoteVolume": "692.30447894",
+ "openTime": 1560210241719,
+ "closeTime": 1560296641719,
+ "firstId": 921359,
+ "lastId": 922549,
+ "count": 1191
+ },
+ {
+ "symbol": "BCCBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.07908100",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998596356,
+ "closeTime": 1558084996356,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "GASBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00039292",
+ "prevClosePrice": "0.00039600",
+ "lastPrice": "0.00039600",
+ "lastQty": "477.44000000",
+ "bidPrice": "0.00039500",
+ "bidQty": "1671.60000000",
+ "askPrice": "0.00039700",
+ "askQty": "206.04000000",
+ "openPrice": "0.00039600",
+ "highPrice": "0.00040100",
+ "lowPrice": "0.00038500",
+ "volume": "151310.29000000",
+ "quoteVolume": "59.45228817",
+ "openTime": 1560210242353,
+ "closeTime": 1560296642353,
+ "firstId": 5210558,
+ "lastId": 5214567,
+ "count": 4010
+ },
+ {
+ "symbol": "BNBETH",
+ "priceChange": "0.00063900",
+ "priceChangePercent": "0.492",
+ "weightedAvgPrice": "0.12963651",
+ "prevClosePrice": "0.12969200",
+ "lastPrice": "0.13040000",
+ "lastQty": "0.04000000",
+ "bidPrice": "0.13026500",
+ "bidQty": "6.87000000",
+ "askPrice": "0.13040000",
+ "askQty": "16.84000000",
+ "openPrice": "0.12976100",
+ "highPrice": "0.13125000",
+ "lowPrice": "0.12841600",
+ "volume": "71426.40000000",
+ "quoteVolume": "9259.46897511",
+ "openTime": 1560210239869,
+ "closeTime": 1560296639869,
+ "firstId": 13474298,
+ "lastId": 13490901,
+ "count": 16604
+ },
+ {
+ "symbol": "BTCUSDT",
+ "priceChange": "-80.09000000",
+ "priceChangePercent": "-1.005",
+ "weightedAvgPrice": "7847.79388595",
+ "prevClosePrice": "7964.64000000",
+ "lastPrice": "7886.47000000",
+ "lastQty": "0.18337000",
+ "bidPrice": "7885.11000000",
+ "bidQty": "0.08648600",
+ "askPrice": "7887.47000000",
+ "askQty": "0.09149000",
+ "openPrice": "7966.56000000",
+ "highPrice": "8010.00000000",
+ "lowPrice": "7692.23000000",
+ "volume": "30439.44903900",
+ "quoteVolume": "238882522.05987985",
+ "openTime": 1560210242340,
+ "closeTime": 1560296642340,
+ "firstId": 134002942,
+ "lastId": 134313369,
+ "count": 310428
+ },
+ {
+ "symbol": "ETHUSDT",
+ "priceChange": "-1.25000000",
+ "priceChangePercent": "-0.508",
+ "weightedAvgPrice": "242.34131800",
+ "prevClosePrice": "246.13000000",
+ "lastPrice": "244.86000000",
+ "lastQty": "0.04524000",
+ "bidPrice": "244.76000000",
+ "bidQty": "4.45732000",
+ "askPrice": "244.88000000",
+ "askQty": "0.45741000",
+ "openPrice": "246.11000000",
+ "highPrice": "247.80000000",
+ "lowPrice": "236.49000000",
+ "volume": "238959.65780000",
+ "quoteVolume": "57909798.42086450",
+ "openTime": 1560210242308,
+ "closeTime": 1560296642308,
+ "firstId": 79293778,
+ "lastId": 79427408,
+ "count": 133631
+ },
+ {
+ "symbol": "HSRBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00041400",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998596357,
+ "closeTime": 1558084996357,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "OAXETH",
+ "priceChange": "0.00003860",
+ "priceChangePercent": "4.412",
+ "weightedAvgPrice": "0.00093744",
+ "prevClosePrice": "0.00087100",
+ "lastPrice": "0.00091340",
+ "lastQty": "345.00000000",
+ "bidPrice": "0.00090880",
+ "bidQty": "53.00000000",
+ "askPrice": "0.00091450",
+ "askQty": "314.00000000",
+ "openPrice": "0.00087480",
+ "highPrice": "0.00102220",
+ "lowPrice": "0.00082690",
+ "volume": "819183.00000000",
+ "quoteVolume": "767.93268970",
+ "openTime": 1560210242345,
+ "closeTime": 1560296642345,
+ "firstId": 1230567,
+ "lastId": 1233261,
+ "count": 2695
+ },
+ {
+ "symbol": "DNTETH",
+ "priceChange": "0.00000118",
+ "priceChangePercent": "1.613",
+ "weightedAvgPrice": "0.00007304",
+ "prevClosePrice": "0.00007286",
+ "lastPrice": "0.00007433",
+ "lastQty": "136.00000000",
+ "bidPrice": "0.00007428",
+ "bidQty": "60907.00000000",
+ "askPrice": "0.00007498",
+ "askQty": "6886.00000000",
+ "openPrice": "0.00007315",
+ "highPrice": "0.00007593",
+ "lowPrice": "0.00007091",
+ "volume": "1873284.00000000",
+ "quoteVolume": "136.82393602",
+ "openTime": 1560210234786,
+ "closeTime": 1560296634786,
+ "firstId": 1482380,
+ "lastId": 1482908,
+ "count": 529
+ },
+ {
+ "symbol": "MCOETH",
+ "priceChange": "0.00212900",
+ "priceChangePercent": "8.516",
+ "weightedAvgPrice": "0.02645715",
+ "prevClosePrice": "0.02505000",
+ "lastPrice": "0.02712900",
+ "lastQty": "22.85000000",
+ "bidPrice": "0.02697800",
+ "bidQty": "9.66000000",
+ "askPrice": "0.02712000",
+ "askQty": "1.28000000",
+ "openPrice": "0.02500000",
+ "highPrice": "0.02807100",
+ "lowPrice": "0.02498500",
+ "volume": "44966.87000000",
+ "quoteVolume": "1189.69509856",
+ "openTime": 1560210242110,
+ "closeTime": 1560296642110,
+ "firstId": 1667413,
+ "lastId": 1671898,
+ "count": 4486
+ },
+ {
+ "symbol": "ICNETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00166300",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998596358,
+ "closeTime": 1558084996358,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "MCOBTC",
+ "priceChange": "0.00006900",
+ "priceChangePercent": "8.949",
+ "weightedAvgPrice": "0.00082091",
+ "prevClosePrice": "0.00077300",
+ "lastPrice": "0.00084000",
+ "lastQty": "5.00000000",
+ "bidPrice": "0.00083700",
+ "bidQty": "138.28000000",
+ "askPrice": "0.00084000",
+ "askQty": "4.42000000",
+ "openPrice": "0.00077100",
+ "highPrice": "0.00086700",
+ "lowPrice": "0.00077000",
+ "volume": "340047.00000000",
+ "quoteVolume": "279.14906756",
+ "openTime": 1560210242297,
+ "closeTime": 1560296642297,
+ "firstId": 7832972,
+ "lastId": 7846921,
+ "count": 13950
+ },
+ {
+ "symbol": "WTCBTC",
+ "priceChange": "0.00000520",
+ "priceChangePercent": "1.899",
+ "weightedAvgPrice": "0.00027704",
+ "prevClosePrice": "0.00027400",
+ "lastPrice": "0.00027910",
+ "lastQty": "88.93000000",
+ "bidPrice": "0.00027890",
+ "bidQty": "69.87000000",
+ "askPrice": "0.00027920",
+ "askQty": "76.19000000",
+ "openPrice": "0.00027390",
+ "highPrice": "0.00028500",
+ "lowPrice": "0.00027180",
+ "volume": "1107228.23000000",
+ "quoteVolume": "306.74562803",
+ "openTime": 1560210241733,
+ "closeTime": 1560296641733,
+ "firstId": 9902375,
+ "lastId": 9911179,
+ "count": 8805
+ },
+ {
+ "symbol": "WTCETH",
+ "priceChange": "0.00013400",
+ "priceChangePercent": "1.511",
+ "weightedAvgPrice": "0.00895546",
+ "prevClosePrice": "0.00887000",
+ "lastPrice": "0.00900400",
+ "lastQty": "1.36000000",
+ "bidPrice": "0.00897000",
+ "bidQty": "2.46000000",
+ "askPrice": "0.00900300",
+ "askQty": "5.85000000",
+ "openPrice": "0.00887000",
+ "highPrice": "0.00922100",
+ "lowPrice": "0.00883600",
+ "volume": "48612.76000000",
+ "quoteVolume": "435.34981892",
+ "openTime": 1560210242194,
+ "closeTime": 1560296642194,
+ "firstId": 2679645,
+ "lastId": 2680798,
+ "count": 1154
+ },
+ {
+ "symbol": "LRCBTC",
+ "priceChange": "-0.00000029",
+ "priceChangePercent": "-3.341",
+ "weightedAvgPrice": "0.00000829",
+ "prevClosePrice": "0.00000868",
+ "lastPrice": "0.00000839",
+ "lastQty": "341.00000000",
+ "bidPrice": "0.00000839",
+ "bidQty": "3419.00000000",
+ "askPrice": "0.00000840",
+ "askQty": "31956.00000000",
+ "openPrice": "0.00000868",
+ "highPrice": "0.00000873",
+ "lowPrice": "0.00000808",
+ "volume": "7560191.00000000",
+ "quoteVolume": "62.69600662",
+ "openTime": 1560210230584,
+ "closeTime": 1560296630584,
+ "firstId": 4590594,
+ "lastId": 4594678,
+ "count": 4085
+ },
+ {
+ "symbol": "LRCETH",
+ "priceChange": "-0.00001001",
+ "priceChangePercent": "-3.552",
+ "weightedAvgPrice": "0.00026811",
+ "prevClosePrice": "0.00028072",
+ "lastPrice": "0.00027183",
+ "lastQty": "343.00000000",
+ "bidPrice": "0.00026992",
+ "bidQty": "838.00000000",
+ "askPrice": "0.00027211",
+ "askQty": "1101.00000000",
+ "openPrice": "0.00028184",
+ "highPrice": "0.00028246",
+ "lowPrice": "0.00026172",
+ "volume": "650259.00000000",
+ "quoteVolume": "174.34401360",
+ "openTime": 1560210240757,
+ "closeTime": 1560296640757,
+ "firstId": 1642858,
+ "lastId": 1643965,
+ "count": 1108
+ },
+ {
+ "symbol": "QTUMBTC",
+ "priceChange": "-0.00000200",
+ "priceChangePercent": "-0.500",
+ "weightedAvgPrice": "0.00039913",
+ "prevClosePrice": "0.00040000",
+ "lastPrice": "0.00039800",
+ "lastQty": "1901.77000000",
+ "bidPrice": "0.00039700",
+ "bidQty": "213.92000000",
+ "askPrice": "0.00039800",
+ "askQty": "1446.60000000",
+ "openPrice": "0.00040000",
+ "highPrice": "0.00041300",
+ "lowPrice": "0.00039300",
+ "volume": "423019.61000000",
+ "quoteVolume": "168.83809369",
+ "openTime": 1560210242039,
+ "closeTime": 1560296642039,
+ "firstId": 9862161,
+ "lastId": 9868847,
+ "count": 6687
+ },
+ {
+ "symbol": "YOYOBTC",
+ "priceChange": "0.00000013",
+ "priceChangePercent": "4.050",
+ "weightedAvgPrice": "0.00000329",
+ "prevClosePrice": "0.00000323",
+ "lastPrice": "0.00000334",
+ "lastQty": "2928.00000000",
+ "bidPrice": "0.00000332",
+ "bidQty": "2882.00000000",
+ "askPrice": "0.00000333",
+ "askQty": "9354.00000000",
+ "openPrice": "0.00000321",
+ "highPrice": "0.00000345",
+ "lowPrice": "0.00000318",
+ "volume": "20563763.00000000",
+ "quoteVolume": "67.73176743",
+ "openTime": 1560210236448,
+ "closeTime": 1560296636448,
+ "firstId": 4366438,
+ "lastId": 4370171,
+ "count": 3734
+ },
+ {
+ "symbol": "OMGBTC",
+ "priceChange": "-0.00000200",
+ "priceChangePercent": "-0.791",
+ "weightedAvgPrice": "0.00025000",
+ "prevClosePrice": "0.00025300",
+ "lastPrice": "0.00025100",
+ "lastQty": "12.44000000",
+ "bidPrice": "0.00025000",
+ "bidQty": "2747.29000000",
+ "askPrice": "0.00025100",
+ "askQty": "4986.18000000",
+ "openPrice": "0.00025300",
+ "highPrice": "0.00025400",
+ "lowPrice": "0.00024500",
+ "volume": "599909.58000000",
+ "quoteVolume": "149.97758385",
+ "openTime": 1560210240810,
+ "closeTime": 1560296640810,
+ "firstId": 9755698,
+ "lastId": 9760139,
+ "count": 4442
+ },
+ {
+ "symbol": "OMGETH",
+ "priceChange": "-0.00016200",
+ "priceChangePercent": "-1.972",
+ "weightedAvgPrice": "0.00806463",
+ "prevClosePrice": "0.00821700",
+ "lastPrice": "0.00805500",
+ "lastQty": "3.60000000",
+ "bidPrice": "0.00804800",
+ "bidQty": "2.93000000",
+ "askPrice": "0.00807200",
+ "askQty": "3.60000000",
+ "openPrice": "0.00821700",
+ "highPrice": "0.00823000",
+ "lowPrice": "0.00794700",
+ "volume": "143961.83000000",
+ "quoteVolume": "1160.99857784",
+ "openTime": 1560210241816,
+ "closeTime": 1560296641816,
+ "firstId": 3348268,
+ "lastId": 3350350,
+ "count": 2083
+ },
+ {
+ "symbol": "ZRXBTC",
+ "priceChange": "-0.00000013",
+ "priceChangePercent": "-0.315",
+ "weightedAvgPrice": "0.00004095",
+ "prevClosePrice": "0.00004118",
+ "lastPrice": "0.00004113",
+ "lastQty": "1181.00000000",
+ "bidPrice": "0.00004112",
+ "bidQty": "1141.00000000",
+ "askPrice": "0.00004113",
+ "askQty": "450.00000000",
+ "openPrice": "0.00004126",
+ "highPrice": "0.00004135",
+ "lowPrice": "0.00004055",
+ "volume": "3902287.00000000",
+ "quoteVolume": "159.79234638",
+ "openTime": 1560210241770,
+ "closeTime": 1560296641770,
+ "firstId": 11914440,
+ "lastId": 11920946,
+ "count": 6507
+ },
+ {
+ "symbol": "ZRXETH",
+ "priceChange": "-0.00000756",
+ "priceChangePercent": "-0.567",
+ "weightedAvgPrice": "0.00132220",
+ "prevClosePrice": "0.00133228",
+ "lastPrice": "0.00132632",
+ "lastQty": "8.00000000",
+ "bidPrice": "0.00132400",
+ "bidQty": "6095.00000000",
+ "askPrice": "0.00132636",
+ "askQty": "1861.00000000",
+ "openPrice": "0.00133388",
+ "highPrice": "0.00136000",
+ "lowPrice": "0.00130925",
+ "volume": "491642.00000000",
+ "quoteVolume": "650.04899345",
+ "openTime": 1560210240537,
+ "closeTime": 1560296640537,
+ "firstId": 3507829,
+ "lastId": 3509417,
+ "count": 1589
+ },
+ {
+ "symbol": "STRATBTC",
+ "priceChange": "-0.00000040",
+ "priceChangePercent": "-0.333",
+ "weightedAvgPrice": "0.00011976",
+ "prevClosePrice": "0.00012040",
+ "lastPrice": "0.00011970",
+ "lastQty": "49.99000000",
+ "bidPrice": "0.00011960",
+ "bidQty": "248.55000000",
+ "askPrice": "0.00011970",
+ "askQty": "58.70000000",
+ "openPrice": "0.00012010",
+ "highPrice": "0.00012190",
+ "lowPrice": "0.00011770",
+ "volume": "720978.13000000",
+ "quoteVolume": "86.34414101",
+ "openTime": 1560210240546,
+ "closeTime": 1560296640546,
+ "firstId": 8033229,
+ "lastId": 8037702,
+ "count": 4474
+ },
+ {
+ "symbol": "STRATETH",
+ "priceChange": "-0.00004700",
+ "priceChangePercent": "-1.208",
+ "weightedAvgPrice": "0.00387753",
+ "prevClosePrice": "0.00388500",
+ "lastPrice": "0.00384300",
+ "lastQty": "36.23000000",
+ "bidPrice": "0.00384500",
+ "bidQty": "251.47000000",
+ "askPrice": "0.00386500",
+ "askQty": "234.00000000",
+ "openPrice": "0.00389000",
+ "highPrice": "0.00394800",
+ "lowPrice": "0.00382500",
+ "volume": "41218.38000000",
+ "quoteVolume": "159.82561490",
+ "openTime": 1560210241809,
+ "closeTime": 1560296641809,
+ "firstId": 1238235,
+ "lastId": 1238975,
+ "count": 741
+ },
+ {
+ "symbol": "SNGLSBTC",
+ "priceChange": "0.00000008",
+ "priceChangePercent": "3.509",
+ "weightedAvgPrice": "0.00000238",
+ "prevClosePrice": "0.00000227",
+ "lastPrice": "0.00000236",
+ "lastQty": "159037.00000000",
+ "bidPrice": "0.00000236",
+ "bidQty": "148725.00000000",
+ "askPrice": "0.00000238",
+ "askQty": "32797.00000000",
+ "openPrice": "0.00000228",
+ "highPrice": "0.00000249",
+ "lowPrice": "0.00000225",
+ "volume": "25483511.00000000",
+ "quoteVolume": "60.59798108",
+ "openTime": 1560210240941,
+ "closeTime": 1560296640941,
+ "firstId": 4325983,
+ "lastId": 4329865,
+ "count": 3883
+ },
+ {
+ "symbol": "SNGLSETH",
+ "priceChange": "0.00000337",
+ "priceChangePercent": "4.583",
+ "weightedAvgPrice": "0.00007736",
+ "prevClosePrice": "0.00007364",
+ "lastPrice": "0.00007691",
+ "lastQty": "179.00000000",
+ "bidPrice": "0.00007599",
+ "bidQty": "1621.00000000",
+ "askPrice": "0.00007684",
+ "askQty": "459.00000000",
+ "openPrice": "0.00007354",
+ "highPrice": "0.00008054",
+ "lowPrice": "0.00007310",
+ "volume": "2111144.00000000",
+ "quoteVolume": "163.31190790",
+ "openTime": 1560210239190,
+ "closeTime": 1560296639190,
+ "firstId": 1163775,
+ "lastId": 1164550,
+ "count": 776
+ },
+ {
+ "symbol": "BQXBTC",
+ "priceChange": "0.00000050",
+ "priceChangePercent": "2.894",
+ "weightedAvgPrice": "0.00001791",
+ "prevClosePrice": "0.00001727",
+ "lastPrice": "0.00001778",
+ "lastQty": "159.00000000",
+ "bidPrice": "0.00001774",
+ "bidQty": "113.00000000",
+ "askPrice": "0.00001778",
+ "askQty": "66.00000000",
+ "openPrice": "0.00001728",
+ "highPrice": "0.00001868",
+ "lowPrice": "0.00001700",
+ "volume": "9571328.00000000",
+ "quoteVolume": "171.44754189",
+ "openTime": 1560210242324,
+ "closeTime": 1560296642324,
+ "firstId": 6001241,
+ "lastId": 6010667,
+ "count": 9427
+ },
+ {
+ "symbol": "BQXETH",
+ "priceChange": "0.00001010",
+ "priceChangePercent": "1.803",
+ "weightedAvgPrice": "0.00057860",
+ "prevClosePrice": "0.00056050",
+ "lastPrice": "0.00057020",
+ "lastQty": "1458.00000000",
+ "bidPrice": "0.00057030",
+ "bidQty": "113.00000000",
+ "askPrice": "0.00057380",
+ "askQty": "394.00000000",
+ "openPrice": "0.00056010",
+ "highPrice": "0.00060530",
+ "lowPrice": "0.00055280",
+ "volume": "322112.00000000",
+ "quoteVolume": "186.37477570",
+ "openTime": 1560210240832,
+ "closeTime": 1560296640832,
+ "firstId": 1261881,
+ "lastId": 1262992,
+ "count": 1112
+ },
+ {
+ "symbol": "KNCBTC",
+ "priceChange": "0.00000188",
+ "priceChangePercent": "5.587",
+ "weightedAvgPrice": "0.00003455",
+ "prevClosePrice": "0.00003366",
+ "lastPrice": "0.00003553",
+ "lastQty": "534.00000000",
+ "bidPrice": "0.00003550",
+ "bidQty": "187.00000000",
+ "askPrice": "0.00003553",
+ "askQty": "464.00000000",
+ "openPrice": "0.00003365",
+ "highPrice": "0.00003609",
+ "lowPrice": "0.00003329",
+ "volume": "2797127.00000000",
+ "quoteVolume": "96.62843017",
+ "openTime": 1560210241405,
+ "closeTime": 1560296641405,
+ "firstId": 5095530,
+ "lastId": 5101712,
+ "count": 6183
+ },
+ {
+ "symbol": "KNCETH",
+ "priceChange": "0.00005400",
+ "priceChangePercent": "4.963",
+ "weightedAvgPrice": "0.00111681",
+ "prevClosePrice": "0.00108910",
+ "lastPrice": "0.00114210",
+ "lastQty": "975.00000000",
+ "bidPrice": "0.00114150",
+ "bidQty": "1712.00000000",
+ "askPrice": "0.00114480",
+ "askQty": "120.00000000",
+ "openPrice": "0.00108810",
+ "highPrice": "0.00116080",
+ "lowPrice": "0.00108190",
+ "volume": "264204.00000000",
+ "quoteVolume": "295.06698640",
+ "openTime": 1560210241059,
+ "closeTime": 1560296641059,
+ "firstId": 2154131,
+ "lastId": 2155333,
+ "count": 1203
+ },
+ {
+ "symbol": "FUNBTC",
+ "priceChange": "-0.00000004",
+ "priceChangePercent": "-4.878",
+ "weightedAvgPrice": "0.00000080",
+ "prevClosePrice": "0.00000082",
+ "lastPrice": "0.00000078",
+ "lastQty": "214233.00000000",
+ "bidPrice": "0.00000077",
+ "bidQty": "2417010.00000000",
+ "askPrice": "0.00000078",
+ "askQty": "322941.00000000",
+ "openPrice": "0.00000082",
+ "highPrice": "0.00000083",
+ "lowPrice": "0.00000076",
+ "volume": "54646905.00000000",
+ "quoteVolume": "43.48782924",
+ "openTime": 1560210230586,
+ "closeTime": 1560296630586,
+ "firstId": 5586495,
+ "lastId": 5588481,
+ "count": 1987
+ },
+ {
+ "symbol": "FUNETH",
+ "priceChange": "-0.00000152",
+ "priceChangePercent": "-5.736",
+ "weightedAvgPrice": "0.00002549",
+ "prevClosePrice": "0.00002616",
+ "lastPrice": "0.00002498",
+ "lastQty": "562.00000000",
+ "bidPrice": "0.00002479",
+ "bidQty": "10513.00000000",
+ "askPrice": "0.00002498",
+ "askQty": "8089.00000000",
+ "openPrice": "0.00002650",
+ "highPrice": "0.00002669",
+ "lowPrice": "0.00002434",
+ "volume": "37047505.00000000",
+ "quoteVolume": "944.19988859",
+ "openTime": 1560210239801,
+ "closeTime": 1560296639801,
+ "firstId": 1659933,
+ "lastId": 1661347,
+ "count": 1415
+ },
+ {
+ "symbol": "SNMBTC",
+ "priceChange": "0.00000012",
+ "priceChangePercent": "3.380",
+ "weightedAvgPrice": "0.00000357",
+ "prevClosePrice": "0.00000355",
+ "lastPrice": "0.00000367",
+ "lastQty": "4182.00000000",
+ "bidPrice": "0.00000367",
+ "bidQty": "8133.00000000",
+ "askPrice": "0.00000368",
+ "askQty": "2254.00000000",
+ "openPrice": "0.00000355",
+ "highPrice": "0.00000372",
+ "lowPrice": "0.00000339",
+ "volume": "22586348.00000000",
+ "quoteVolume": "80.59334586",
+ "openTime": 1560210241131,
+ "closeTime": 1560296641131,
+ "firstId": 3523254,
+ "lastId": 3528715,
+ "count": 5462
+ },
+ {
+ "symbol": "SNMETH",
+ "priceChange": "0.00000289",
+ "priceChangePercent": "2.510",
+ "weightedAvgPrice": "0.00011544",
+ "prevClosePrice": "0.00011508",
+ "lastPrice": "0.00011804",
+ "lastQty": "86.00000000",
+ "bidPrice": "0.00011791",
+ "bidQty": "8133.00000000",
+ "askPrice": "0.00011867",
+ "askQty": "215.00000000",
+ "openPrice": "0.00011515",
+ "highPrice": "0.00012045",
+ "lowPrice": "0.00011034",
+ "volume": "2537020.00000000",
+ "quoteVolume": "292.88486052",
+ "openTime": 1560210242288,
+ "closeTime": 1560296642288,
+ "firstId": 969963,
+ "lastId": 971920,
+ "count": 1958
+ },
+ {
+ "symbol": "NEOETH",
+ "priceChange": "0.00029700",
+ "priceChangePercent": "0.596",
+ "weightedAvgPrice": "0.04981716",
+ "prevClosePrice": "0.04981100",
+ "lastPrice": "0.05010100",
+ "lastQty": "7.97000000",
+ "bidPrice": "0.05006000",
+ "bidQty": "0.39000000",
+ "askPrice": "0.05018000",
+ "askQty": "164.28000000",
+ "openPrice": "0.04980400",
+ "highPrice": "0.05094900",
+ "lowPrice": "0.04896100",
+ "volume": "28677.23000000",
+ "quoteVolume": "1428.61819190",
+ "openTime": 1560210242365,
+ "closeTime": 1560296642365,
+ "firstId": 7656571,
+ "lastId": 7659639,
+ "count": 3069
+ },
+ {
+ "symbol": "IOTABTC",
+ "priceChange": "-0.00000026",
+ "priceChangePercent": "-0.484",
+ "weightedAvgPrice": "0.00005315",
+ "prevClosePrice": "0.00005387",
+ "lastPrice": "0.00005350",
+ "lastQty": "337.00000000",
+ "bidPrice": "0.00005347",
+ "bidQty": "2250.00000000",
+ "askPrice": "0.00005350",
+ "askQty": "1562.00000000",
+ "openPrice": "0.00005376",
+ "highPrice": "0.00005396",
+ "lowPrice": "0.00005250",
+ "volume": "5150101.00000000",
+ "quoteVolume": "273.73349618",
+ "openTime": 1560210242327,
+ "closeTime": 1560296642327,
+ "firstId": 18580088,
+ "lastId": 18590852,
+ "count": 10765
+ },
+ {
+ "symbol": "IOTAETH",
+ "priceChange": "-0.00001957",
+ "priceChangePercent": "-1.123",
+ "weightedAvgPrice": "0.00171979",
+ "prevClosePrice": "0.00173606",
+ "lastPrice": "0.00172314",
+ "lastQty": "7.00000000",
+ "bidPrice": "0.00172083",
+ "bidQty": "1133.00000000",
+ "askPrice": "0.00172575",
+ "askQty": "144.00000000",
+ "openPrice": "0.00174271",
+ "highPrice": "0.00174313",
+ "lowPrice": "0.00169500",
+ "volume": "371813.00000000",
+ "quoteVolume": "639.44166338",
+ "openTime": 1560210241005,
+ "closeTime": 1560296641005,
+ "firstId": 5468943,
+ "lastId": 5470707,
+ "count": 1765
+ },
+ {
+ "symbol": "LINKBTC",
+ "priceChange": "-0.00000593",
+ "priceChangePercent": "-3.991",
+ "weightedAvgPrice": "0.00014535",
+ "prevClosePrice": "0.00014871",
+ "lastPrice": "0.00014266",
+ "lastQty": "41.00000000",
+ "bidPrice": "0.00014260",
+ "bidQty": "268.00000000",
+ "askPrice": "0.00014267",
+ "askQty": "661.00000000",
+ "openPrice": "0.00014859",
+ "highPrice": "0.00015200",
+ "lowPrice": "0.00014057",
+ "volume": "6349418.00000000",
+ "quoteVolume": "922.86768905",
+ "openTime": 1560210240936,
+ "closeTime": 1560296640936,
+ "firstId": 11348226,
+ "lastId": 11381826,
+ "count": 33601
+ },
+ {
+ "symbol": "LINKETH",
+ "priceChange": "-0.00023228",
+ "priceChangePercent": "-4.815",
+ "weightedAvgPrice": "0.00467012",
+ "prevClosePrice": "0.00482415",
+ "lastPrice": "0.00459200",
+ "lastQty": "40.00000000",
+ "bidPrice": "0.00459201",
+ "bidQty": "2266.00000000",
+ "askPrice": "0.00460213",
+ "askQty": "1.00000000",
+ "openPrice": "0.00482428",
+ "highPrice": "0.00492263",
+ "lowPrice": "0.00454546",
+ "volume": "1030757.00000000",
+ "quoteVolume": "4813.76122754",
+ "openTime": 1560210242231,
+ "closeTime": 1560296642231,
+ "firstId": 2862059,
+ "lastId": 2869630,
+ "count": 7572
+ },
+ {
+ "symbol": "XVGBTC",
+ "priceChange": "-0.00000002",
+ "priceChangePercent": "-1.739",
+ "weightedAvgPrice": "0.00000115",
+ "prevClosePrice": "0.00000114",
+ "lastPrice": "0.00000113",
+ "lastQty": "54711.00000000",
+ "bidPrice": "0.00000113",
+ "bidQty": "4408637.00000000",
+ "askPrice": "0.00000114",
+ "askQty": "344267.00000000",
+ "openPrice": "0.00000115",
+ "highPrice": "0.00000117",
+ "lowPrice": "0.00000113",
+ "volume": "136811687.00000000",
+ "quoteVolume": "156.88872673",
+ "openTime": 1560210235980,
+ "closeTime": 1560296635980,
+ "firstId": 20129264,
+ "lastId": 20132344,
+ "count": 3081
+ },
+ {
+ "symbol": "XVGETH",
+ "priceChange": "-0.00000032",
+ "priceChangePercent": "-0.862",
+ "weightedAvgPrice": "0.00003718",
+ "prevClosePrice": "0.00003708",
+ "lastPrice": "0.00003680",
+ "lastQty": "4849.00000000",
+ "bidPrice": "0.00003663",
+ "bidQty": "578.00000000",
+ "askPrice": "0.00003680",
+ "askQty": "6535.00000000",
+ "openPrice": "0.00003712",
+ "highPrice": "0.00003755",
+ "lowPrice": "0.00003657",
+ "volume": "8673507.00000000",
+ "quoteVolume": "322.44859371",
+ "openTime": 1560210241135,
+ "closeTime": 1560296641135,
+ "firstId": 6117073,
+ "lastId": 6118193,
+ "count": 1121
+ },
+ {
+ "symbol": "SALTBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00004250",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998596365,
+ "closeTime": 1558084996365,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "SALTETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00113800",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998596365,
+ "closeTime": 1558084996365,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "MDABTC",
+ "priceChange": "-0.00000266",
+ "priceChangePercent": "-1.965",
+ "weightedAvgPrice": "0.00013338",
+ "prevClosePrice": "0.00013533",
+ "lastPrice": "0.00013268",
+ "lastQty": "45.00000000",
+ "bidPrice": "0.00013255",
+ "bidQty": "40.00000000",
+ "askPrice": "0.00013298",
+ "askQty": "17.00000000",
+ "openPrice": "0.00013534",
+ "highPrice": "0.00013693",
+ "lowPrice": "0.00013077",
+ "volume": "938136.00000000",
+ "quoteVolume": "125.13010446",
+ "openTime": 1560210241557,
+ "closeTime": 1560296641557,
+ "firstId": 8780864,
+ "lastId": 8788201,
+ "count": 7338
+ },
+ {
+ "symbol": "MDAETH",
+ "priceChange": "-0.00009910",
+ "priceChangePercent": "-2.255",
+ "weightedAvgPrice": "0.00431183",
+ "prevClosePrice": "0.00437570",
+ "lastPrice": "0.00429610",
+ "lastQty": "50.00000000",
+ "bidPrice": "0.00426730",
+ "bidQty": "3.00000000",
+ "askPrice": "0.00428670",
+ "askQty": "707.00000000",
+ "openPrice": "0.00439520",
+ "highPrice": "0.00444460",
+ "lowPrice": "0.00422650",
+ "volume": "56379.00000000",
+ "quoteVolume": "243.09655230",
+ "openTime": 1560210238623,
+ "closeTime": 1560296638623,
+ "firstId": 1730058,
+ "lastId": 1730984,
+ "count": 927
+ },
+ {
+ "symbol": "MTLBTC",
+ "priceChange": "0.00001100",
+ "priceChangePercent": "16.616",
+ "weightedAvgPrice": "0.00007875",
+ "prevClosePrice": "0.00006640",
+ "lastPrice": "0.00007720",
+ "lastQty": "4807.39000000",
+ "bidPrice": "0.00007730",
+ "bidQty": "6697.11000000",
+ "askPrice": "0.00007760",
+ "askQty": "5157.34000000",
+ "openPrice": "0.00006620",
+ "highPrice": "0.00008680",
+ "lowPrice": "0.00006440",
+ "volume": "18780379.34000000",
+ "quoteVolume": "1479.01354461",
+ "openTime": 1560210242227,
+ "closeTime": 1560296642227,
+ "firstId": 7084732,
+ "lastId": 7121519,
+ "count": 36788
+ },
+ {
+ "symbol": "MTLETH",
+ "priceChange": "0.00035300",
+ "priceChangePercent": "16.465",
+ "weightedAvgPrice": "0.00253959",
+ "prevClosePrice": "0.00214400",
+ "lastPrice": "0.00249700",
+ "lastQty": "527.98000000",
+ "bidPrice": "0.00248800",
+ "bidQty": "227.91000000",
+ "askPrice": "0.00249700",
+ "askQty": "1562.94000000",
+ "openPrice": "0.00214400",
+ "highPrice": "0.00280000",
+ "lowPrice": "0.00208900",
+ "volume": "1171712.55000000",
+ "quoteVolume": "2975.66422113",
+ "openTime": 1560210242207,
+ "closeTime": 1560296642207,
+ "firstId": 952831,
+ "lastId": 958349,
+ "count": 5519
+ },
+ {
+ "symbol": "SUBBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00000457",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998596366,
+ "closeTime": 1558084996366,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "SUBETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00012334",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998596366,
+ "closeTime": 1558084996366,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "EOSBTC",
+ "priceChange": "-0.00000250",
+ "priceChangePercent": "-0.311",
+ "weightedAvgPrice": "0.00080084",
+ "prevClosePrice": "0.00080340",
+ "lastPrice": "0.00080100",
+ "lastQty": "2.98000000",
+ "bidPrice": "0.00080070",
+ "bidQty": "2.49000000",
+ "askPrice": "0.00080090",
+ "askQty": "7.47000000",
+ "openPrice": "0.00080350",
+ "highPrice": "0.00080890",
+ "lowPrice": "0.00079300",
+ "volume": "1858358.48000000",
+ "quoteVolume": "1488.24572639",
+ "openTime": 1560210242368,
+ "closeTime": 1560296642368,
+ "firstId": 38418626,
+ "lastId": 38462380,
+ "count": 43755
+ },
+ {
+ "symbol": "SNTBTC",
+ "priceChange": "0.00000004",
+ "priceChangePercent": "1.070",
+ "weightedAvgPrice": "0.00000377",
+ "prevClosePrice": "0.00000374",
+ "lastPrice": "0.00000378",
+ "lastQty": "29825.00000000",
+ "bidPrice": "0.00000377",
+ "bidQty": "192935.00000000",
+ "askPrice": "0.00000378",
+ "askQty": "67025.00000000",
+ "openPrice": "0.00000374",
+ "highPrice": "0.00000390",
+ "lowPrice": "0.00000368",
+ "volume": "13159718.00000000",
+ "quoteVolume": "49.58038702",
+ "openTime": 1560210240136,
+ "closeTime": 1560296640136,
+ "firstId": 5740006,
+ "lastId": 5742829,
+ "count": 2824
+ },
+ {
+ "symbol": "ETCETH",
+ "priceChange": "-0.00008200",
+ "priceChangePercent": "-0.244",
+ "weightedAvgPrice": "0.03355313",
+ "prevClosePrice": "0.03363200",
+ "lastPrice": "0.03359100",
+ "lastQty": "0.43000000",
+ "bidPrice": "0.03355100",
+ "bidQty": "107.49000000",
+ "askPrice": "0.03362200",
+ "askQty": "0.40000000",
+ "openPrice": "0.03367300",
+ "highPrice": "0.03417000",
+ "lowPrice": "0.03319800",
+ "volume": "8005.46000000",
+ "quoteVolume": "268.60822303",
+ "openTime": 1560210240280,
+ "closeTime": 1560296640280,
+ "firstId": 3873566,
+ "lastId": 3875015,
+ "count": 1450
+ },
+ {
+ "symbol": "ETCBTC",
+ "priceChange": "0.00000300",
+ "priceChangePercent": "0.288",
+ "weightedAvgPrice": "0.00103873",
+ "prevClosePrice": "0.00104000",
+ "lastPrice": "0.00104300",
+ "lastQty": "22.44000000",
+ "bidPrice": "0.00104200",
+ "bidQty": "182.80000000",
+ "askPrice": "0.00104400",
+ "askQty": "191.64000000",
+ "openPrice": "0.00104000",
+ "highPrice": "0.00105500",
+ "lowPrice": "0.00102800",
+ "volume": "163116.19000000",
+ "quoteVolume": "169.43360276",
+ "openTime": 1560210242350,
+ "closeTime": 1560296642350,
+ "firstId": 15627778,
+ "lastId": 15635061,
+ "count": 7284
+ },
+ {
+ "symbol": "MTHBTC",
+ "priceChange": "0.00000017",
+ "priceChangePercent": "5.629",
+ "weightedAvgPrice": "0.00000316",
+ "prevClosePrice": "0.00000302",
+ "lastPrice": "0.00000319",
+ "lastQty": "4775.00000000",
+ "bidPrice": "0.00000318",
+ "bidQty": "6848.00000000",
+ "askPrice": "0.00000319",
+ "askQty": "2349.00000000",
+ "openPrice": "0.00000302",
+ "highPrice": "0.00000328",
+ "lowPrice": "0.00000293",
+ "volume": "42896418.00000000",
+ "quoteVolume": "135.49103561",
+ "openTime": 1560210240728,
+ "closeTime": 1560296640728,
+ "firstId": 4255083,
+ "lastId": 4260995,
+ "count": 5913
+ },
+ {
+ "symbol": "MTHETH",
+ "priceChange": "0.00000441",
+ "priceChangePercent": "4.510",
+ "weightedAvgPrice": "0.00010240",
+ "prevClosePrice": "0.00009865",
+ "lastPrice": "0.00010220",
+ "lastQty": "319.00000000",
+ "bidPrice": "0.00010226",
+ "bidQty": "6848.00000000",
+ "askPrice": "0.00010289",
+ "askQty": "1244.00000000",
+ "openPrice": "0.00009779",
+ "highPrice": "0.00010624",
+ "lowPrice": "0.00009525",
+ "volume": "1752326.00000000",
+ "quoteVolume": "179.44533951",
+ "openTime": 1560210238835,
+ "closeTime": 1560296638835,
+ "firstId": 943061,
+ "lastId": 943913,
+ "count": 853
+ },
+ {
+ "symbol": "ENGBTC",
+ "priceChange": "0.00000827",
+ "priceChangePercent": "12.741",
+ "weightedAvgPrice": "0.00007091",
+ "prevClosePrice": "0.00006516",
+ "lastPrice": "0.00007318",
+ "lastQty": "5.00000000",
+ "bidPrice": "0.00007273",
+ "bidQty": "344.00000000",
+ "askPrice": "0.00007318",
+ "askQty": "211.00000000",
+ "openPrice": "0.00006491",
+ "highPrice": "0.00007757",
+ "lowPrice": "0.00006346",
+ "volume": "3059932.00000000",
+ "quoteVolume": "216.99438061",
+ "openTime": 1560210242165,
+ "closeTime": 1560296642165,
+ "firstId": 5630092,
+ "lastId": 5644229,
+ "count": 14138
+ },
+ {
+ "symbol": "ENGETH",
+ "priceChange": "0.00025750",
+ "priceChangePercent": "12.261",
+ "weightedAvgPrice": "0.00231274",
+ "prevClosePrice": "0.00211420",
+ "lastPrice": "0.00235760",
+ "lastQty": "5.00000000",
+ "bidPrice": "0.00233800",
+ "bidQty": "527.00000000",
+ "askPrice": "0.00235760",
+ "askQty": "378.00000000",
+ "openPrice": "0.00210010",
+ "highPrice": "0.00260000",
+ "lowPrice": "0.00205690",
+ "volume": "443175.00000000",
+ "quoteVolume": "1024.95058690",
+ "openTime": 1560210239817,
+ "closeTime": 1560296639817,
+ "firstId": 1453262,
+ "lastId": 1455901,
+ "count": 2640
+ },
+ {
+ "symbol": "DNTBTC",
+ "priceChange": "0.00000008",
+ "priceChangePercent": "3.556",
+ "weightedAvgPrice": "0.00000227",
+ "prevClosePrice": "0.00000225",
+ "lastPrice": "0.00000233",
+ "lastQty": "480.00000000",
+ "bidPrice": "0.00000231",
+ "bidQty": "54543.00000000",
+ "askPrice": "0.00000233",
+ "askQty": "11203.00000000",
+ "openPrice": "0.00000225",
+ "highPrice": "0.00000236",
+ "lowPrice": "0.00000221",
+ "volume": "21250598.00000000",
+ "quoteVolume": "48.31214098",
+ "openTime": 1560210241240,
+ "closeTime": 1560296641240,
+ "firstId": 5013016,
+ "lastId": 5015881,
+ "count": 2866
+ },
+ {
+ "symbol": "ZECBTC",
+ "priceChange": "0.00009000",
+ "priceChangePercent": "0.899",
+ "weightedAvgPrice": "0.01001830",
+ "prevClosePrice": "0.01000400",
+ "lastPrice": "0.01010300",
+ "lastQty": "2.56400000",
+ "bidPrice": "0.01010000",
+ "bidQty": "17.87400000",
+ "askPrice": "0.01010400",
+ "askQty": "2.00000000",
+ "openPrice": "0.01001300",
+ "highPrice": "0.01017200",
+ "lowPrice": "0.00985400",
+ "volume": "28655.84300000",
+ "quoteVolume": "287.08275248",
+ "openTime": 1560210238612,
+ "closeTime": 1560296638612,
+ "firstId": 8065285,
+ "lastId": 8074828,
+ "count": 9544
+ },
+ {
+ "symbol": "ZECETH",
+ "priceChange": "0.00155000",
+ "priceChangePercent": "0.479",
+ "weightedAvgPrice": "0.32341918",
+ "prevClosePrice": "0.32422000",
+ "lastPrice": "0.32522000",
+ "lastQty": "6.78800000",
+ "bidPrice": "0.32490000",
+ "bidQty": "8.09600000",
+ "askPrice": "0.32599000",
+ "askQty": "25.08400000",
+ "openPrice": "0.32367000",
+ "highPrice": "0.32927000",
+ "lowPrice": "0.31854000",
+ "volume": "2092.86900000",
+ "quoteVolume": "676.87398032",
+ "openTime": 1560210242116,
+ "closeTime": 1560296642116,
+ "firstId": 1749003,
+ "lastId": 1750023,
+ "count": 1021
+ },
+ {
+ "symbol": "BNTBTC",
+ "priceChange": "0.00000139",
+ "priceChangePercent": "1.580",
+ "weightedAvgPrice": "0.00008786",
+ "prevClosePrice": "0.00008825",
+ "lastPrice": "0.00008939",
+ "lastQty": "224.00000000",
+ "bidPrice": "0.00008939",
+ "bidQty": "62082.00000000",
+ "askPrice": "0.00008949",
+ "askQty": "42.00000000",
+ "openPrice": "0.00008800",
+ "highPrice": "0.00008944",
+ "lowPrice": "0.00008670",
+ "volume": "661758.00000000",
+ "quoteVolume": "58.14323040",
+ "openTime": 1560210242087,
+ "closeTime": 1560296642087,
+ "firstId": 1784458,
+ "lastId": 1787000,
+ "count": 2543
+ },
+ {
+ "symbol": "ASTBTC",
+ "priceChange": "0.00000015",
+ "priceChangePercent": "2.479",
+ "weightedAvgPrice": "0.00000614",
+ "prevClosePrice": "0.00000604",
+ "lastPrice": "0.00000620",
+ "lastQty": "151.00000000",
+ "bidPrice": "0.00000618",
+ "bidQty": "3874.00000000",
+ "askPrice": "0.00000620",
+ "askQty": "3391.00000000",
+ "openPrice": "0.00000605",
+ "highPrice": "0.00000638",
+ "lowPrice": "0.00000585",
+ "volume": "17930397.00000000",
+ "quoteVolume": "110.10547200",
+ "openTime": 1560210242239,
+ "closeTime": 1560296642239,
+ "firstId": 5137032,
+ "lastId": 5142854,
+ "count": 5823
+ },
+ {
+ "symbol": "ASTETH",
+ "priceChange": "0.00000380",
+ "priceChangePercent": "1.940",
+ "weightedAvgPrice": "0.00019926",
+ "prevClosePrice": "0.00019660",
+ "lastPrice": "0.00019970",
+ "lastQty": "17804.00000000",
+ "bidPrice": "0.00019870",
+ "bidQty": "3874.00000000",
+ "askPrice": "0.00019980",
+ "askQty": "1251.00000000",
+ "openPrice": "0.00019590",
+ "highPrice": "0.00020680",
+ "lowPrice": "0.00018970",
+ "volume": "873370.00000000",
+ "quoteVolume": "174.02669020",
+ "openTime": 1560210241593,
+ "closeTime": 1560296641593,
+ "firstId": 1358586,
+ "lastId": 1359368,
+ "count": 783
+ },
+ {
+ "symbol": "DASHBTC",
+ "priceChange": "-0.00029900",
+ "priceChangePercent": "-1.576",
+ "weightedAvgPrice": "0.01864979",
+ "prevClosePrice": "0.01895700",
+ "lastPrice": "0.01867300",
+ "lastQty": "0.41500000",
+ "bidPrice": "0.01867100",
+ "bidQty": "0.36900000",
+ "askPrice": "0.01867300",
+ "askQty": "9.02000000",
+ "openPrice": "0.01897200",
+ "highPrice": "0.01897200",
+ "lowPrice": "0.01842200",
+ "volume": "10466.58400000",
+ "quoteVolume": "195.19960267",
+ "openTime": 1560210241862,
+ "closeTime": 1560296641862,
+ "firstId": 8639146,
+ "lastId": 8647555,
+ "count": 8410
+ },
+ {
+ "symbol": "DASHETH",
+ "priceChange": "-0.01072000",
+ "priceChangePercent": "-1.752",
+ "weightedAvgPrice": "0.60252279",
+ "prevClosePrice": "0.61228000",
+ "lastPrice": "0.60109000",
+ "lastQty": "0.35700000",
+ "bidPrice": "0.60109000",
+ "bidQty": "0.07600000",
+ "askPrice": "0.60192000",
+ "askQty": "0.35700000",
+ "openPrice": "0.61181000",
+ "highPrice": "0.61250000",
+ "lowPrice": "0.59708000",
+ "volume": "930.59900000",
+ "quoteVolume": "560.70710767",
+ "openTime": 1560210242238,
+ "closeTime": 1560296642238,
+ "firstId": 1714660,
+ "lastId": 1716007,
+ "count": 1348
+ },
+ {
+ "symbol": "OAXBTC",
+ "priceChange": "0.00000141",
+ "priceChangePercent": "5.226",
+ "weightedAvgPrice": "0.00002873",
+ "prevClosePrice": "0.00002697",
+ "lastPrice": "0.00002839",
+ "lastQty": "53.00000000",
+ "bidPrice": "0.00002833",
+ "bidQty": "3109.00000000",
+ "askPrice": "0.00002839",
+ "askQty": "2012.00000000",
+ "openPrice": "0.00002698",
+ "highPrice": "0.00003150",
+ "lowPrice": "0.00002565",
+ "volume": "17054216.00000000",
+ "quoteVolume": "489.97286248",
+ "openTime": 1560210242047,
+ "closeTime": 1560296642047,
+ "firstId": 4552949,
+ "lastId": 4577482,
+ "count": 24534
+ },
+ {
+ "symbol": "ICNBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00005742",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998596370,
+ "closeTime": 1558084996370,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BTGBTC",
+ "priceChange": "-0.00002200",
+ "priceChangePercent": "-0.682",
+ "weightedAvgPrice": "0.00322480",
+ "prevClosePrice": "0.00322900",
+ "lastPrice": "0.00320500",
+ "lastQty": "3.58000000",
+ "bidPrice": "0.00320100",
+ "bidQty": "29.19000000",
+ "askPrice": "0.00320500",
+ "askQty": "2.22000000",
+ "openPrice": "0.00322700",
+ "highPrice": "0.00334800",
+ "lowPrice": "0.00317900",
+ "volume": "26729.06000000",
+ "quoteVolume": "86.19585656",
+ "openTime": 1560210236082,
+ "closeTime": 1560296636082,
+ "firstId": 5839399,
+ "lastId": 5844843,
+ "count": 5445
+ },
+ {
+ "symbol": "BTGETH",
+ "priceChange": "-0.00069000",
+ "priceChangePercent": "-0.662",
+ "weightedAvgPrice": "0.10425666",
+ "prevClosePrice": "0.10473400",
+ "lastPrice": "0.10349500",
+ "lastQty": "0.28000000",
+ "bidPrice": "0.10299500",
+ "bidQty": "2.15000000",
+ "askPrice": "0.10354200",
+ "askQty": "2.26000000",
+ "openPrice": "0.10418500",
+ "highPrice": "0.10764400",
+ "lowPrice": "0.10250200",
+ "volume": "1197.30000000",
+ "quoteVolume": "124.82650177",
+ "openTime": 1560210241450,
+ "closeTime": 1560296641450,
+ "firstId": 928738,
+ "lastId": 929450,
+ "count": 713
+ },
+ {
+ "symbol": "EVXBTC",
+ "priceChange": "0.00000060",
+ "priceChangePercent": "0.559",
+ "weightedAvgPrice": "0.00010671",
+ "prevClosePrice": "0.00010785",
+ "lastPrice": "0.00010788",
+ "lastQty": "81.00000000",
+ "bidPrice": "0.00010741",
+ "bidQty": "404.00000000",
+ "askPrice": "0.00010794",
+ "askQty": "12.00000000",
+ "openPrice": "0.00010728",
+ "highPrice": "0.00011039",
+ "lowPrice": "0.00010389",
+ "volume": "1645260.00000000",
+ "quoteVolume": "175.55784899",
+ "openTime": 1560210242353,
+ "closeTime": 1560296642353,
+ "firstId": 6014545,
+ "lastId": 6022719,
+ "count": 8175
+ },
+ {
+ "symbol": "EVXETH",
+ "priceChange": "-0.00001500",
+ "priceChangePercent": "-0.430",
+ "weightedAvgPrice": "0.00344513",
+ "prevClosePrice": "0.00348530",
+ "lastPrice": "0.00347030",
+ "lastQty": "999.00000000",
+ "bidPrice": "0.00345920",
+ "bidQty": "1156.00000000",
+ "askPrice": "0.00349280",
+ "askQty": "35.00000000",
+ "openPrice": "0.00348530",
+ "highPrice": "0.00358370",
+ "lowPrice": "0.00335030",
+ "volume": "186518.00000000",
+ "quoteVolume": "642.57880230",
+ "openTime": 1560210241963,
+ "closeTime": 1560296641963,
+ "firstId": 1249684,
+ "lastId": 1251257,
+ "count": 1574
+ },
+ {
+ "symbol": "REQBTC",
+ "priceChange": "0.00000001",
+ "priceChangePercent": "0.319",
+ "weightedAvgPrice": "0.00000316",
+ "prevClosePrice": "0.00000313",
+ "lastPrice": "0.00000314",
+ "lastQty": "561.00000000",
+ "bidPrice": "0.00000314",
+ "bidQty": "17217.00000000",
+ "askPrice": "0.00000315",
+ "askQty": "5503.00000000",
+ "openPrice": "0.00000313",
+ "highPrice": "0.00000326",
+ "lowPrice": "0.00000303",
+ "volume": "14854514.00000000",
+ "quoteVolume": "46.88217170",
+ "openTime": 1560210215960,
+ "closeTime": 1560296615960,
+ "firstId": 4318970,
+ "lastId": 4321880,
+ "count": 2911
+ },
+ {
+ "symbol": "REQETH",
+ "priceChange": "-0.00000041",
+ "priceChangePercent": "-0.402",
+ "weightedAvgPrice": "0.00010219",
+ "prevClosePrice": "0.00010175",
+ "lastPrice": "0.00010147",
+ "lastQty": "100.00000000",
+ "bidPrice": "0.00010097",
+ "bidQty": "17217.00000000",
+ "askPrice": "0.00010159",
+ "askQty": "551.00000000",
+ "openPrice": "0.00010188",
+ "highPrice": "0.00010523",
+ "lowPrice": "0.00009898",
+ "volume": "1333467.00000000",
+ "quoteVolume": "136.27241780",
+ "openTime": 1560210238801,
+ "closeTime": 1560296638801,
+ "firstId": 2042439,
+ "lastId": 2043040,
+ "count": 602
+ },
+ {
+ "symbol": "VIBBTC",
+ "priceChange": "0.00000010",
+ "priceChangePercent": "1.645",
+ "weightedAvgPrice": "0.00000619",
+ "prevClosePrice": "0.00000606",
+ "lastPrice": "0.00000618",
+ "lastQty": "268.00000000",
+ "bidPrice": "0.00000615",
+ "bidQty": "5243.00000000",
+ "askPrice": "0.00000618",
+ "askQty": "98984.00000000",
+ "openPrice": "0.00000608",
+ "highPrice": "0.00000636",
+ "lowPrice": "0.00000603",
+ "volume": "19303398.00000000",
+ "quoteVolume": "119.56552058",
+ "openTime": 1560210236313,
+ "closeTime": 1560296636313,
+ "firstId": 4801338,
+ "lastId": 4806520,
+ "count": 5183
+ },
+ {
+ "symbol": "VIBETH",
+ "priceChange": "0.00000194",
+ "priceChangePercent": "0.989",
+ "weightedAvgPrice": "0.00019996",
+ "prevClosePrice": "0.00019656",
+ "lastPrice": "0.00019819",
+ "lastQty": "501.00000000",
+ "bidPrice": "0.00019751",
+ "bidQty": "16552.00000000",
+ "askPrice": "0.00019993",
+ "askQty": "76910.00000000",
+ "openPrice": "0.00019625",
+ "highPrice": "0.00020499",
+ "lowPrice": "0.00019592",
+ "volume": "2247030.00000000",
+ "quoteVolume": "449.31674219",
+ "openTime": 1560210242356,
+ "closeTime": 1560296642356,
+ "firstId": 1174773,
+ "lastId": 1175567,
+ "count": 795
+ },
+ {
+ "symbol": "HSRETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.01247400",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998596373,
+ "closeTime": 1558084996373,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "TRXBTC",
+ "priceChange": "-0.00000001",
+ "priceChangePercent": "-0.253",
+ "weightedAvgPrice": "0.00000390",
+ "prevClosePrice": "0.00000394",
+ "lastPrice": "0.00000394",
+ "lastQty": "4972.00000000",
+ "bidPrice": "0.00000394",
+ "bidQty": "2521027.00000000",
+ "askPrice": "0.00000395",
+ "askQty": "561866.00000000",
+ "openPrice": "0.00000395",
+ "highPrice": "0.00000401",
+ "lowPrice": "0.00000383",
+ "volume": "263078543.00000000",
+ "quoteVolume": "1026.60259312",
+ "openTime": 1560210241078,
+ "closeTime": 1560296641078,
+ "firstId": 42882235,
+ "lastId": 42902745,
+ "count": 20511
+ },
+ {
+ "symbol": "TRXETH",
+ "priceChange": "-0.00000081",
+ "priceChangePercent": "-0.634",
+ "weightedAvgPrice": "0.00012616",
+ "prevClosePrice": "0.00012780",
+ "lastPrice": "0.00012703",
+ "lastQty": "5659.00000000",
+ "bidPrice": "0.00012703",
+ "bidQty": "5659.00000000",
+ "askPrice": "0.00012725",
+ "askQty": "16371.00000000",
+ "openPrice": "0.00012784",
+ "highPrice": "0.00012953",
+ "lowPrice": "0.00012385",
+ "volume": "34987685.00000000",
+ "quoteVolume": "4413.96662798",
+ "openTime": 1560210240540,
+ "closeTime": 1560296640540,
+ "firstId": 17894967,
+ "lastId": 17901611,
+ "count": 6645
+ },
+ {
+ "symbol": "POWRBTC",
+ "priceChange": "0.00000013",
+ "priceChangePercent": "0.852",
+ "weightedAvgPrice": "0.00001525",
+ "prevClosePrice": "0.00001529",
+ "lastPrice": "0.00001539",
+ "lastQty": "525.00000000",
+ "bidPrice": "0.00001539",
+ "bidQty": "536.00000000",
+ "askPrice": "0.00001540",
+ "askQty": "2677.00000000",
+ "openPrice": "0.00001526",
+ "highPrice": "0.00001553",
+ "lowPrice": "0.00001490",
+ "volume": "3746091.00000000",
+ "quoteVolume": "57.13839353",
+ "openTime": 1560210240100,
+ "closeTime": 1560296640100,
+ "firstId": 6182324,
+ "lastId": 6185266,
+ "count": 2943
+ },
+ {
+ "symbol": "POWRETH",
+ "priceChange": "0.00000263",
+ "priceChangePercent": "0.532",
+ "weightedAvgPrice": "0.00049383",
+ "prevClosePrice": "0.00049600",
+ "lastPrice": "0.00049663",
+ "lastQty": "50.00000000",
+ "bidPrice": "0.00049404",
+ "bidQty": "536.00000000",
+ "askPrice": "0.00049711",
+ "askQty": "22.00000000",
+ "openPrice": "0.00049400",
+ "highPrice": "0.00050137",
+ "lowPrice": "0.00048522",
+ "volume": "354456.00000000",
+ "quoteVolume": "175.04242672",
+ "openTime": 1560210239439,
+ "closeTime": 1560296639439,
+ "firstId": 1476512,
+ "lastId": 1477175,
+ "count": 664
+ },
+ {
+ "symbol": "ARKBTC",
+ "priceChange": "0.00000320",
+ "priceChangePercent": "4.205",
+ "weightedAvgPrice": "0.00007744",
+ "prevClosePrice": "0.00007610",
+ "lastPrice": "0.00007930",
+ "lastQty": "478.81000000",
+ "bidPrice": "0.00007900",
+ "bidQty": "827.43000000",
+ "askPrice": "0.00007920",
+ "askQty": "1314.14000000",
+ "openPrice": "0.00007610",
+ "highPrice": "0.00008230",
+ "lowPrice": "0.00007470",
+ "volume": "1265879.48000000",
+ "quoteVolume": "98.02832177",
+ "openTime": 1560210241793,
+ "closeTime": 1560296641793,
+ "firstId": 4685760,
+ "lastId": 4690985,
+ "count": 5226
+ },
+ {
+ "symbol": "ARKETH",
+ "priceChange": "0.00007200",
+ "priceChangePercent": "2.921",
+ "weightedAvgPrice": "0.00251155",
+ "prevClosePrice": "0.00246500",
+ "lastPrice": "0.00253700",
+ "lastQty": "4.00000000",
+ "bidPrice": "0.00253900",
+ "bidQty": "827.43000000",
+ "askPrice": "0.00255200",
+ "askQty": "427.84000000",
+ "openPrice": "0.00246500",
+ "highPrice": "0.00261000",
+ "lowPrice": "0.00242600",
+ "volume": "51368.41000000",
+ "quoteVolume": "129.01409567",
+ "openTime": 1560210239029,
+ "closeTime": 1560296639029,
+ "firstId": 1123673,
+ "lastId": 1125117,
+ "count": 1445
+ },
+ {
+ "symbol": "YOYOETH",
+ "priceChange": "0.00000440",
+ "priceChangePercent": "4.258",
+ "weightedAvgPrice": "0.00010727",
+ "prevClosePrice": "0.00010457",
+ "lastPrice": "0.00010774",
+ "lastQty": "105.00000000",
+ "bidPrice": "0.00010673",
+ "bidQty": "2882.00000000",
+ "askPrice": "0.00010782",
+ "askQty": "1367.00000000",
+ "openPrice": "0.00010334",
+ "highPrice": "0.00011196",
+ "lowPrice": "0.00010300",
+ "volume": "688507.00000000",
+ "quoteVolume": "73.85433245",
+ "openTime": 1560210241949,
+ "closeTime": 1560296641949,
+ "firstId": 1087652,
+ "lastId": 1088099,
+ "count": 448
+ },
+ {
+ "symbol": "XRPBTC",
+ "priceChange": "-0.00000032",
+ "priceChangePercent": "-0.640",
+ "weightedAvgPrice": "0.00004971",
+ "prevClosePrice": "0.00005002",
+ "lastPrice": "0.00004970",
+ "lastQty": "11783.00000000",
+ "bidPrice": "0.00004968",
+ "bidQty": "744.00000000",
+ "askPrice": "0.00004971",
+ "askQty": "10398.00000000",
+ "openPrice": "0.00005002",
+ "highPrice": "0.00005020",
+ "lowPrice": "0.00004924",
+ "volume": "49405902.00000000",
+ "quoteVolume": "2456.13112196",
+ "openTime": 1560210241740,
+ "closeTime": 1560296641740,
+ "firstId": 50136865,
+ "lastId": 50207595,
+ "count": 70731
+ },
+ {
+ "symbol": "XRPETH",
+ "priceChange": "-0.00002224",
+ "priceChangePercent": "-1.372",
+ "weightedAvgPrice": "0.00160898",
+ "prevClosePrice": "0.00161902",
+ "lastPrice": "0.00159861",
+ "lastQty": "381.00000000",
+ "bidPrice": "0.00159986",
+ "bidQty": "87.00000000",
+ "askPrice": "0.00160128",
+ "askQty": "74.00000000",
+ "openPrice": "0.00162085",
+ "highPrice": "0.00162613",
+ "lowPrice": "0.00158911",
+ "volume": "1766647.00000000",
+ "quoteVolume": "2842.49467935",
+ "openTime": 1560210242327,
+ "closeTime": 1560296642327,
+ "firstId": 14142362,
+ "lastId": 14149962,
+ "count": 7601
+ },
+ {
+ "symbol": "MODBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00004280",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998597363,
+ "closeTime": 1558084997363,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "MODETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00116700",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998597363,
+ "closeTime": 1558084997363,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "ENJBTC",
+ "priceChange": "0.00000107",
+ "priceChangePercent": "5.617",
+ "weightedAvgPrice": "0.00001983",
+ "prevClosePrice": "0.00001904",
+ "lastPrice": "0.00002012",
+ "lastQty": "1977.00000000",
+ "bidPrice": "0.00002010",
+ "bidQty": "39635.00000000",
+ "askPrice": "0.00002012",
+ "askQty": "392.00000000",
+ "openPrice": "0.00001905",
+ "highPrice": "0.00002077",
+ "lowPrice": "0.00001890",
+ "volume": "30238611.00000000",
+ "quoteVolume": "599.65868796",
+ "openTime": 1560210242358,
+ "closeTime": 1560296642358,
+ "firstId": 10783571,
+ "lastId": 10807151,
+ "count": 23581
+ },
+ {
+ "symbol": "ENJETH",
+ "priceChange": "0.00003518",
+ "priceChangePercent": "5.707",
+ "weightedAvgPrice": "0.00063987",
+ "prevClosePrice": "0.00061974",
+ "lastPrice": "0.00065160",
+ "lastQty": "18.00000000",
+ "bidPrice": "0.00064710",
+ "bidQty": "106.00000000",
+ "askPrice": "0.00065056",
+ "askQty": "1463.00000000",
+ "openPrice": "0.00061642",
+ "highPrice": "0.00066969",
+ "lowPrice": "0.00061307",
+ "volume": "2706776.00000000",
+ "quoteVolume": "1731.98387383",
+ "openTime": 1560210241883,
+ "closeTime": 1560296641883,
+ "firstId": 3090249,
+ "lastId": 3094577,
+ "count": 4329
+ },
+ {
+ "symbol": "STORJBTC",
+ "priceChange": "0.00000620",
+ "priceChangePercent": "17.499",
+ "weightedAvgPrice": "0.00004550",
+ "prevClosePrice": "0.00003533",
+ "lastPrice": "0.00004163",
+ "lastQty": "235.00000000",
+ "bidPrice": "0.00004154",
+ "bidQty": "151.00000000",
+ "askPrice": "0.00004164",
+ "askQty": "71.00000000",
+ "openPrice": "0.00003543",
+ "highPrice": "0.00006100",
+ "lowPrice": "0.00003470",
+ "volume": "24031456.00000000",
+ "quoteVolume": "1093.51850034",
+ "openTime": 1560210242042,
+ "closeTime": 1560296642042,
+ "firstId": 4337221,
+ "lastId": 4381768,
+ "count": 44548
+ },
+ {
+ "symbol": "STORJETH",
+ "priceChange": "0.00019190",
+ "priceChangePercent": "16.729",
+ "weightedAvgPrice": "0.00147553",
+ "prevClosePrice": "0.00114690",
+ "lastPrice": "0.00133900",
+ "lastQty": "151.00000000",
+ "bidPrice": "0.00133910",
+ "bidQty": "10.00000000",
+ "askPrice": "0.00134610",
+ "askQty": "255.00000000",
+ "openPrice": "0.00114710",
+ "highPrice": "0.00198890",
+ "lowPrice": "0.00112170",
+ "volume": "1285867.00000000",
+ "quoteVolume": "1897.33970080",
+ "openTime": 1560210239859,
+ "closeTime": 1560296639859,
+ "firstId": 814540,
+ "lastId": 820344,
+ "count": 5805
+ },
+ {
+ "symbol": "BNBUSDT",
+ "priceChange": "-0.02830000",
+ "priceChangePercent": "-0.089",
+ "weightedAvgPrice": "31.52359766",
+ "prevClosePrice": "31.95490000",
+ "lastPrice": "31.92130000",
+ "lastQty": "226.81000000",
+ "bidPrice": "31.91380000",
+ "bidQty": "146.59000000",
+ "askPrice": "31.92480000",
+ "askQty": "100.00000000",
+ "openPrice": "31.94960000",
+ "highPrice": "32.08210000",
+ "lowPrice": "30.93120000",
+ "volume": "2730428.18000000",
+ "quoteVolume": "86072919.39840800",
+ "openTime": 1560210242352,
+ "closeTime": 1560296642352,
+ "firstId": 30651623,
+ "lastId": 30725904,
+ "count": 74282
+ },
+ {
+ "symbol": "VENBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.14920000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998597393,
+ "closeTime": 1558084997393,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "YOYOBNB",
+ "priceChange": "0.00002000",
+ "priceChangePercent": "2.494",
+ "weightedAvgPrice": "0.00081916",
+ "prevClosePrice": "0.00080500",
+ "lastPrice": "0.00082200",
+ "lastQty": "2786.00000000",
+ "bidPrice": "0.00081900",
+ "bidQty": "3013.00000000",
+ "askPrice": "0.00083000",
+ "askQty": "507.00000000",
+ "openPrice": "0.00080200",
+ "highPrice": "0.00085900",
+ "lowPrice": "0.00079500",
+ "volume": "496144.00000000",
+ "quoteVolume": "406.42118400",
+ "openTime": 1560210236890,
+ "closeTime": 1560296636890,
+ "firstId": 719874,
+ "lastId": 720102,
+ "count": 229
+ },
+ {
+ "symbol": "POWRBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00380255",
+ "prevClosePrice": "0.00380000",
+ "lastPrice": "0.00383000",
+ "lastQty": "41.70000000",
+ "bidPrice": "0.00379000",
+ "bidQty": "2403.70000000",
+ "askPrice": "0.00383000",
+ "askQty": "9159.50000000",
+ "openPrice": "0.00383000",
+ "highPrice": "0.00386000",
+ "lowPrice": "0.00375000",
+ "volume": "91786.00000000",
+ "quoteVolume": "349.02108200",
+ "openTime": 1560210227441,
+ "closeTime": 1560296627441,
+ "firstId": 451261,
+ "lastId": 451486,
+ "count": 226
+ },
+ {
+ "symbol": "VENBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00013928",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998597397,
+ "closeTime": 1558084997397,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "VENETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00325194",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998597399,
+ "closeTime": 1558084997399,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "KMDBTC",
+ "priceChange": "-0.00000390",
+ "priceChangePercent": "-1.868",
+ "weightedAvgPrice": "0.00020512",
+ "prevClosePrice": "0.00020900",
+ "lastPrice": "0.00020490",
+ "lastQty": "29.99000000",
+ "bidPrice": "0.00020460",
+ "bidQty": "30.00000000",
+ "askPrice": "0.00020500",
+ "askQty": "453.47000000",
+ "openPrice": "0.00020880",
+ "highPrice": "0.00020930",
+ "lowPrice": "0.00020270",
+ "volume": "217452.58000000",
+ "quoteVolume": "44.60377784",
+ "openTime": 1560210241731,
+ "closeTime": 1560296641731,
+ "firstId": 5284540,
+ "lastId": 5287842,
+ "count": 3303
+ },
+ {
+ "symbol": "KMDETH",
+ "priceChange": "-0.00020200",
+ "priceChangePercent": "-2.987",
+ "weightedAvgPrice": "0.00664017",
+ "prevClosePrice": "0.00677400",
+ "lastPrice": "0.00656000",
+ "lastQty": "20.20000000",
+ "bidPrice": "0.00658200",
+ "bidQty": "152.00000000",
+ "askPrice": "0.00660700",
+ "askQty": "137.00000000",
+ "openPrice": "0.00676200",
+ "highPrice": "0.00677900",
+ "lowPrice": "0.00652600",
+ "volume": "13681.06000000",
+ "quoteVolume": "90.84460652",
+ "openTime": 1560210241612,
+ "closeTime": 1560296641612,
+ "firstId": 945461,
+ "lastId": 945846,
+ "count": 386
+ },
+ {
+ "symbol": "NULSBNB",
+ "priceChange": "-0.00083000",
+ "priceChangePercent": "-2.770",
+ "weightedAvgPrice": "0.02966464",
+ "prevClosePrice": "0.02999000",
+ "lastPrice": "0.02913000",
+ "lastQty": "10.80000000",
+ "bidPrice": "0.02904000",
+ "bidQty": "122.80000000",
+ "askPrice": "0.02923000",
+ "askQty": "49.00000000",
+ "openPrice": "0.02996000",
+ "highPrice": "0.03153000",
+ "lowPrice": "0.02840000",
+ "volume": "135537.50000000",
+ "quoteVolume": "4020.67167500",
+ "openTime": 1560210238569,
+ "closeTime": 1560296638569,
+ "firstId": 506039,
+ "lastId": 507621,
+ "count": 1583
+ },
+ {
+ "symbol": "RCNBTC",
+ "priceChange": "0.00000006",
+ "priceChangePercent": "1.474",
+ "weightedAvgPrice": "0.00000411",
+ "prevClosePrice": "0.00000407",
+ "lastPrice": "0.00000413",
+ "lastQty": "8799.00000000",
+ "bidPrice": "0.00000413",
+ "bidQty": "809.00000000",
+ "askPrice": "0.00000414",
+ "askQty": "4257.00000000",
+ "openPrice": "0.00000407",
+ "highPrice": "0.00000425",
+ "lowPrice": "0.00000393",
+ "volume": "14682714.00000000",
+ "quoteVolume": "60.30640815",
+ "openTime": 1560210240946,
+ "closeTime": 1560296640946,
+ "firstId": 5058891,
+ "lastId": 5062837,
+ "count": 3947
+ },
+ {
+ "symbol": "RCNETH",
+ "priceChange": "0.00000233",
+ "priceChangePercent": "1.775",
+ "weightedAvgPrice": "0.00013381",
+ "prevClosePrice": "0.00013126",
+ "lastPrice": "0.00013359",
+ "lastQty": "98.00000000",
+ "bidPrice": "0.00013265",
+ "bidQty": "809.00000000",
+ "askPrice": "0.00013381",
+ "askQty": "21569.00000000",
+ "openPrice": "0.00013126",
+ "highPrice": "0.00013793",
+ "lowPrice": "0.00012768",
+ "volume": "894798.00000000",
+ "quoteVolume": "119.73456894",
+ "openTime": 1560210242365,
+ "closeTime": 1560296642365,
+ "firstId": 950385,
+ "lastId": 950797,
+ "count": 413
+ },
+ {
+ "symbol": "RCNBNB",
+ "priceChange": "0.00001900",
+ "priceChangePercent": "1.881",
+ "weightedAvgPrice": "0.00103115",
+ "prevClosePrice": "0.00101200",
+ "lastPrice": "0.00102900",
+ "lastQty": "6673.00000000",
+ "bidPrice": "0.00101900",
+ "bidQty": "998.00000000",
+ "askPrice": "0.00102700",
+ "askQty": "1756.00000000",
+ "openPrice": "0.00101000",
+ "highPrice": "0.00105800",
+ "lowPrice": "0.00097900",
+ "volume": "877011.00000000",
+ "quoteVolume": "904.33393600",
+ "openTime": 1560210236791,
+ "closeTime": 1560296636791,
+ "firstId": 453983,
+ "lastId": 454384,
+ "count": 402
+ },
+ {
+ "symbol": "NULSBTC",
+ "priceChange": "-0.00000258",
+ "priceChangePercent": "-2.140",
+ "weightedAvgPrice": "0.00011926",
+ "prevClosePrice": "0.00012062",
+ "lastPrice": "0.00011798",
+ "lastQty": "214.00000000",
+ "bidPrice": "0.00011745",
+ "bidQty": "168.00000000",
+ "askPrice": "0.00011802",
+ "askQty": "225.00000000",
+ "openPrice": "0.00012056",
+ "highPrice": "0.00012647",
+ "lowPrice": "0.00011426",
+ "volume": "7507206.00000000",
+ "quoteVolume": "895.28635919",
+ "openTime": 1560210242217,
+ "closeTime": 1560296642217,
+ "firstId": 6073457,
+ "lastId": 6102894,
+ "count": 29438
+ },
+ {
+ "symbol": "NULSETH",
+ "priceChange": "-0.00009543",
+ "priceChangePercent": "-2.442",
+ "weightedAvgPrice": "0.00381871",
+ "prevClosePrice": "0.00390493",
+ "lastPrice": "0.00381235",
+ "lastQty": "3.00000000",
+ "bidPrice": "0.00378219",
+ "bidQty": "225.00000000",
+ "askPrice": "0.00380761",
+ "askQty": "75.00000000",
+ "openPrice": "0.00390778",
+ "highPrice": "0.00410076",
+ "lowPrice": "0.00369718",
+ "volume": "158007.00000000",
+ "quoteVolume": "603.38355733",
+ "openTime": 1560210241715,
+ "closeTime": 1560296641715,
+ "firstId": 1115786,
+ "lastId": 1118819,
+ "count": 3034
+ },
+ {
+ "symbol": "RDNBTC",
+ "priceChange": "0.00000031",
+ "priceChangePercent": "0.714",
+ "weightedAvgPrice": "0.00004406",
+ "prevClosePrice": "0.00004353",
+ "lastPrice": "0.00004374",
+ "lastQty": "25.00000000",
+ "bidPrice": "0.00004375",
+ "bidQty": "107.00000000",
+ "askPrice": "0.00004382",
+ "askQty": "28.00000000",
+ "openPrice": "0.00004343",
+ "highPrice": "0.00004546",
+ "lowPrice": "0.00004299",
+ "volume": "899882.00000000",
+ "quoteVolume": "39.65037678",
+ "openTime": 1560210241896,
+ "closeTime": 1560296641896,
+ "firstId": 3087856,
+ "lastId": 3090646,
+ "count": 2791
+ },
+ {
+ "symbol": "RDNETH",
+ "priceChange": "0.00000460",
+ "priceChangePercent": "0.327",
+ "weightedAvgPrice": "0.00142790",
+ "prevClosePrice": "0.00141110",
+ "lastPrice": "0.00141110",
+ "lastQty": "90.00000000",
+ "bidPrice": "0.00140580",
+ "bidQty": "3685.00000000",
+ "askPrice": "0.00141110",
+ "askQty": "410.00000000",
+ "openPrice": "0.00140650",
+ "highPrice": "0.00148000",
+ "lowPrice": "0.00138970",
+ "volume": "93495.00000000",
+ "quoteVolume": "133.50149370",
+ "openTime": 1560210239020,
+ "closeTime": 1560296639020,
+ "firstId": 1181422,
+ "lastId": 1182078,
+ "count": 657
+ },
+ {
+ "symbol": "RDNBNB",
+ "priceChange": "0.00005000",
+ "priceChangePercent": "0.464",
+ "weightedAvgPrice": "0.01102214",
+ "prevClosePrice": "0.01094000",
+ "lastPrice": "0.01082000",
+ "lastQty": "1304.00000000",
+ "bidPrice": "0.01082000",
+ "bidQty": "5555.70000000",
+ "askPrice": "0.01087000",
+ "askQty": "32053.10000000",
+ "openPrice": "0.01077000",
+ "highPrice": "0.01143000",
+ "lowPrice": "0.01069000",
+ "volume": "66428.60000000",
+ "quoteVolume": "732.18512900",
+ "openTime": 1560210241610,
+ "closeTime": 1560296641610,
+ "firstId": 242875,
+ "lastId": 243299,
+ "count": 425
+ },
+ {
+ "symbol": "XMRBTC",
+ "priceChange": "0.00010300",
+ "priceChangePercent": "0.948",
+ "weightedAvgPrice": "0.01099919",
+ "prevClosePrice": "0.01086400",
+ "lastPrice": "0.01096700",
+ "lastQty": "3.84300000",
+ "bidPrice": "0.01096800",
+ "bidQty": "0.73700000",
+ "askPrice": "0.01098300",
+ "askQty": "1.50000000",
+ "openPrice": "0.01086400",
+ "highPrice": "0.01111600",
+ "lowPrice": "0.01083100",
+ "volume": "34685.44300000",
+ "quoteVolume": "381.51166925",
+ "openTime": 1560210242348,
+ "closeTime": 1560296642348,
+ "firstId": 11359555,
+ "lastId": 11373233,
+ "count": 13679
+ },
+ {
+ "symbol": "XMRETH",
+ "priceChange": "0.00183000",
+ "priceChangePercent": "0.520",
+ "weightedAvgPrice": "0.35624748",
+ "prevClosePrice": "0.35176000",
+ "lastPrice": "0.35359000",
+ "lastQty": "0.07500000",
+ "bidPrice": "0.35288000",
+ "bidQty": "0.84800000",
+ "askPrice": "0.35381000",
+ "askQty": "0.70100000",
+ "openPrice": "0.35176000",
+ "highPrice": "0.36129000",
+ "lowPrice": "0.35080000",
+ "volume": "1897.26300000",
+ "quoteVolume": "675.89516498",
+ "openTime": 1560210240283,
+ "closeTime": 1560296640283,
+ "firstId": 2168587,
+ "lastId": 2170241,
+ "count": 1655
+ },
+ {
+ "symbol": "DLTBNB",
+ "priceChange": "0.00009000",
+ "priceChangePercent": "2.368",
+ "weightedAvgPrice": "0.00382176",
+ "prevClosePrice": "0.00381000",
+ "lastPrice": "0.00389000",
+ "lastQty": "29.70000000",
+ "bidPrice": "0.00387000",
+ "bidQty": "17066.00000000",
+ "askPrice": "0.00391000",
+ "askQty": "2083.00000000",
+ "openPrice": "0.00380000",
+ "highPrice": "0.00405000",
+ "lowPrice": "0.00366000",
+ "volume": "543880.60000000",
+ "quoteVolume": "2078.58080900",
+ "openTime": 1560210234620,
+ "closeTime": 1560296634620,
+ "firstId": 389614,
+ "lastId": 390345,
+ "count": 732
+ },
+ {
+ "symbol": "WTCBNB",
+ "priceChange": "0.00050000",
+ "priceChangePercent": "0.728",
+ "weightedAvgPrice": "0.06931776",
+ "prevClosePrice": "0.06830000",
+ "lastPrice": "0.06920000",
+ "lastQty": "77.00000000",
+ "bidPrice": "0.06890000",
+ "bidQty": "2.83000000",
+ "askPrice": "0.06920000",
+ "askQty": "117.00000000",
+ "openPrice": "0.06870000",
+ "highPrice": "0.07090000",
+ "lowPrice": "0.06830000",
+ "volume": "11660.04000000",
+ "quoteVolume": "808.24781600",
+ "openTime": 1560210235985,
+ "closeTime": 1560296635985,
+ "firstId": 461689,
+ "lastId": 461995,
+ "count": 307
+ },
+ {
+ "symbol": "DLTBTC",
+ "priceChange": "0.00000038",
+ "priceChangePercent": "2.480",
+ "weightedAvgPrice": "0.00001540",
+ "prevClosePrice": "0.00001536",
+ "lastPrice": "0.00001570",
+ "lastQty": "66.00000000",
+ "bidPrice": "0.00001571",
+ "bidQty": "662.00000000",
+ "askPrice": "0.00001573",
+ "askQty": "30463.00000000",
+ "openPrice": "0.00001532",
+ "highPrice": "0.00001620",
+ "lowPrice": "0.00001464",
+ "volume": "11501395.00000000",
+ "quoteVolume": "177.13842835",
+ "openTime": 1560210241967,
+ "closeTime": 1560296641967,
+ "firstId": 5699669,
+ "lastId": 5707628,
+ "count": 7960
+ },
+ {
+ "symbol": "DLTETH",
+ "priceChange": "0.00000826",
+ "priceChangePercent": "1.653",
+ "weightedAvgPrice": "0.00049157",
+ "prevClosePrice": "0.00049929",
+ "lastPrice": "0.00050804",
+ "lastQty": "27.00000000",
+ "bidPrice": "0.00050509",
+ "bidQty": "662.00000000",
+ "askPrice": "0.00051257",
+ "askQty": "1879.00000000",
+ "openPrice": "0.00049978",
+ "highPrice": "0.00052497",
+ "lowPrice": "0.00047283",
+ "volume": "519195.00000000",
+ "quoteVolume": "255.22035012",
+ "openTime": 1560210241374,
+ "closeTime": 1560296641374,
+ "firstId": 1267553,
+ "lastId": 1268664,
+ "count": 1112
+ },
+ {
+ "symbol": "AMBBTC",
+ "priceChange": "0.00000003",
+ "priceChangePercent": "0.515",
+ "weightedAvgPrice": "0.00000583",
+ "prevClosePrice": "0.00000583",
+ "lastPrice": "0.00000586",
+ "lastQty": "4853.00000000",
+ "bidPrice": "0.00000586",
+ "bidQty": "10201.00000000",
+ "askPrice": "0.00000587",
+ "askQty": "1622.00000000",
+ "openPrice": "0.00000583",
+ "highPrice": "0.00000591",
+ "lowPrice": "0.00000575",
+ "volume": "7669268.00000000",
+ "quoteVolume": "44.71236193",
+ "openTime": 1560210204263,
+ "closeTime": 1560296604263,
+ "firstId": 4565725,
+ "lastId": 4567662,
+ "count": 1938
+ },
+ {
+ "symbol": "AMBETH",
+ "priceChange": "-0.00000064",
+ "priceChangePercent": "-0.339",
+ "weightedAvgPrice": "0.00018931",
+ "prevClosePrice": "0.00018896",
+ "lastPrice": "0.00018838",
+ "lastQty": "54.00000000",
+ "bidPrice": "0.00018854",
+ "bidQty": "1200.00000000",
+ "askPrice": "0.00018968",
+ "askQty": "312.00000000",
+ "openPrice": "0.00018902",
+ "highPrice": "0.00019255",
+ "lowPrice": "0.00018599",
+ "volume": "656943.00000000",
+ "quoteVolume": "124.36862293",
+ "openTime": 1560210231423,
+ "closeTime": 1560296631423,
+ "firstId": 1152721,
+ "lastId": 1153157,
+ "count": 437
+ },
+ {
+ "symbol": "AMBBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00145689",
+ "prevClosePrice": "0.00146000",
+ "lastPrice": "0.00145000",
+ "lastQty": "21610.00000000",
+ "bidPrice": "0.00144000",
+ "bidQty": "29761.20000000",
+ "askPrice": "0.00145000",
+ "askQty": "35310.00000000",
+ "openPrice": "0.00145000",
+ "highPrice": "0.00148000",
+ "lowPrice": "0.00143000",
+ "volume": "173160.50000000",
+ "quoteVolume": "252.27513200",
+ "openTime": 1560210240442,
+ "closeTime": 1560296640442,
+ "firstId": 368401,
+ "lastId": 368544,
+ "count": 144
+ },
+ {
+ "symbol": "BCCETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "2.47246000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998597445,
+ "closeTime": 1558084997445,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BCCUSDT",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "448.70000000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998597452,
+ "closeTime": 1558084997452,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BCCBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "54.29000000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998597457,
+ "closeTime": 1558084997457,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BATBTC",
+ "priceChange": "-0.00000062",
+ "priceChangePercent": "-1.486",
+ "weightedAvgPrice": "0.00004124",
+ "prevClosePrice": "0.00004170",
+ "lastPrice": "0.00004109",
+ "lastQty": "125.00000000",
+ "bidPrice": "0.00004106",
+ "bidQty": "375.00000000",
+ "askPrice": "0.00004110",
+ "askQty": "588.00000000",
+ "openPrice": "0.00004171",
+ "highPrice": "0.00004174",
+ "lowPrice": "0.00004081",
+ "volume": "6055925.00000000",
+ "quoteVolume": "249.76239151",
+ "openTime": 1560210241542,
+ "closeTime": 1560296641542,
+ "firstId": 11688347,
+ "lastId": 11700560,
+ "count": 12214
+ },
+ {
+ "symbol": "BATETH",
+ "priceChange": "-0.00002582",
+ "priceChangePercent": "-1.913",
+ "weightedAvgPrice": "0.00133679",
+ "prevClosePrice": "0.00134956",
+ "lastPrice": "0.00132378",
+ "lastQty": "253.00000000",
+ "bidPrice": "0.00132069",
+ "bidQty": "184.00000000",
+ "askPrice": "0.00132565",
+ "askQty": "123.00000000",
+ "openPrice": "0.00134960",
+ "highPrice": "0.00135400",
+ "lowPrice": "0.00132010",
+ "volume": "649017.00000000",
+ "quoteVolume": "867.60063383",
+ "openTime": 1560210239281,
+ "closeTime": 1560296639281,
+ "firstId": 3103446,
+ "lastId": 3106237,
+ "count": 2792
+ },
+ {
+ "symbol": "BATBNB",
+ "priceChange": "-0.00024000",
+ "priceChangePercent": "-2.312",
+ "weightedAvgPrice": "0.01029064",
+ "prevClosePrice": "0.01041000",
+ "lastPrice": "0.01014000",
+ "lastQty": "386.50000000",
+ "bidPrice": "0.01014000",
+ "bidQty": "2558.60000000",
+ "askPrice": "0.01017000",
+ "askQty": "1322.10000000",
+ "openPrice": "0.01038000",
+ "highPrice": "0.01042000",
+ "lowPrice": "0.01014000",
+ "volume": "250421.60000000",
+ "quoteVolume": "2576.99801800",
+ "openTime": 1560210235103,
+ "closeTime": 1560296635103,
+ "firstId": 824117,
+ "lastId": 825016,
+ "count": 900
+ },
+ {
+ "symbol": "BCPTBTC",
+ "priceChange": "-0.00000006",
+ "priceChangePercent": "-0.779",
+ "weightedAvgPrice": "0.00000760",
+ "prevClosePrice": "0.00000770",
+ "lastPrice": "0.00000764",
+ "lastQty": "3256.00000000",
+ "bidPrice": "0.00000764",
+ "bidQty": "4577.00000000",
+ "askPrice": "0.00000765",
+ "askQty": "132.00000000",
+ "openPrice": "0.00000770",
+ "highPrice": "0.00000779",
+ "lowPrice": "0.00000744",
+ "volume": "10863972.00000000",
+ "quoteVolume": "82.53020301",
+ "openTime": 1560210235092,
+ "closeTime": 1560296635092,
+ "firstId": 7168287,
+ "lastId": 7172651,
+ "count": 4365
+ },
+ {
+ "symbol": "BCPTETH",
+ "priceChange": "-0.00000417",
+ "priceChangePercent": "-1.661",
+ "weightedAvgPrice": "0.00024664",
+ "prevClosePrice": "0.00024914",
+ "lastPrice": "0.00024692",
+ "lastQty": "107.00000000",
+ "bidPrice": "0.00024545",
+ "bidQty": "4577.00000000",
+ "askPrice": "0.00024730",
+ "askQty": "908.00000000",
+ "openPrice": "0.00025109",
+ "highPrice": "0.00025243",
+ "lowPrice": "0.00024100",
+ "volume": "544840.00000000",
+ "quoteVolume": "134.37784875",
+ "openTime": 1560210238867,
+ "closeTime": 1560296638867,
+ "firstId": 1401950,
+ "lastId": 1402486,
+ "count": 537
+ },
+ {
+ "symbol": "BCPTBNB",
+ "priceChange": "-0.00005000",
+ "priceChangePercent": "-2.591",
+ "weightedAvgPrice": "0.00189467",
+ "prevClosePrice": "0.00194000",
+ "lastPrice": "0.00188000",
+ "lastQty": "224.90000000",
+ "bidPrice": "0.00188000",
+ "bidQty": "5015.90000000",
+ "askPrice": "0.00190000",
+ "askQty": "5391.20000000",
+ "openPrice": "0.00193000",
+ "highPrice": "0.00196000",
+ "lowPrice": "0.00186000",
+ "volume": "918395.90000000",
+ "quoteVolume": "1740.05855900",
+ "openTime": 1560210225652,
+ "closeTime": 1560296625652,
+ "firstId": 434120,
+ "lastId": 434499,
+ "count": 380
+ },
+ {
+ "symbol": "ARNBTC",
+ "priceChange": "-0.00000063",
+ "priceChangePercent": "-1.020",
+ "weightedAvgPrice": "0.00006161",
+ "prevClosePrice": "0.00006175",
+ "lastPrice": "0.00006112",
+ "lastQty": "2153.00000000",
+ "bidPrice": "0.00006106",
+ "bidQty": "2000.00000000",
+ "askPrice": "0.00006124",
+ "askQty": "132.00000000",
+ "openPrice": "0.00006175",
+ "highPrice": "0.00006325",
+ "lowPrice": "0.00006070",
+ "volume": "1897758.00000000",
+ "quoteVolume": "116.91851829",
+ "openTime": 1560210241233,
+ "closeTime": 1560296641233,
+ "firstId": 12882845,
+ "lastId": 12887958,
+ "count": 5114
+ },
+ {
+ "symbol": "ARNETH",
+ "priceChange": "-0.00002913",
+ "priceChangePercent": "-1.459",
+ "weightedAvgPrice": "0.00199587",
+ "prevClosePrice": "0.00199769",
+ "lastPrice": "0.00196702",
+ "lastQty": "10.00000000",
+ "bidPrice": "0.00196370",
+ "bidQty": "508.00000000",
+ "askPrice": "0.00197444",
+ "askQty": "146.00000000",
+ "openPrice": "0.00199615",
+ "highPrice": "0.00204300",
+ "lowPrice": "0.00195602",
+ "volume": "188365.00000000",
+ "quoteVolume": "375.95179014",
+ "openTime": 1560210240421,
+ "closeTime": 1560296640421,
+ "firstId": 4281415,
+ "lastId": 4282333,
+ "count": 919
+ },
+ {
+ "symbol": "GVTBTC",
+ "priceChange": "-0.00000750",
+ "priceChangePercent": "-1.634",
+ "weightedAvgPrice": "0.00045413",
+ "prevClosePrice": "0.00045790",
+ "lastPrice": "0.00045140",
+ "lastQty": "13.25000000",
+ "bidPrice": "0.00045170",
+ "bidQty": "47.65000000",
+ "askPrice": "0.00045290",
+ "askQty": "13.25000000",
+ "openPrice": "0.00045890",
+ "highPrice": "0.00046790",
+ "lowPrice": "0.00044800",
+ "volume": "96628.17000000",
+ "quoteVolume": "43.88187023",
+ "openTime": 1560210241809,
+ "closeTime": 1560296641809,
+ "firstId": 7069285,
+ "lastId": 7071895,
+ "count": 2611
+ },
+ {
+ "symbol": "GVTETH",
+ "priceChange": "-0.00021700",
+ "priceChangePercent": "-1.463",
+ "weightedAvgPrice": "0.01468622",
+ "prevClosePrice": "0.01486200",
+ "lastPrice": "0.01461500",
+ "lastQty": "6.46000000",
+ "bidPrice": "0.01452600",
+ "bidQty": "69.00000000",
+ "askPrice": "0.01461700",
+ "askQty": "20.42000000",
+ "openPrice": "0.01483200",
+ "highPrice": "0.01504500",
+ "lowPrice": "0.01446000",
+ "volume": "6478.14000000",
+ "quoteVolume": "95.13935858",
+ "openTime": 1560210217399,
+ "closeTime": 1560296617399,
+ "firstId": 1409021,
+ "lastId": 1409573,
+ "count": 553
+ },
+ {
+ "symbol": "CDTBTC",
+ "priceChange": "0.00000004",
+ "priceChangePercent": "3.008",
+ "weightedAvgPrice": "0.00000136",
+ "prevClosePrice": "0.00000132",
+ "lastPrice": "0.00000137",
+ "lastQty": "7761.00000000",
+ "bidPrice": "0.00000137",
+ "bidQty": "49773.00000000",
+ "askPrice": "0.00000138",
+ "askQty": "40467.00000000",
+ "openPrice": "0.00000133",
+ "highPrice": "0.00000140",
+ "lowPrice": "0.00000130",
+ "volume": "37827845.00000000",
+ "quoteVolume": "51.31227442",
+ "openTime": 1560210239344,
+ "closeTime": 1560296639344,
+ "firstId": 4238131,
+ "lastId": 4240680,
+ "count": 2550
+ },
+ {
+ "symbol": "CDTETH",
+ "priceChange": "0.00000134",
+ "priceChangePercent": "3.139",
+ "weightedAvgPrice": "0.00004455",
+ "prevClosePrice": "0.00004269",
+ "lastPrice": "0.00004403",
+ "lastQty": "600.00000000",
+ "bidPrice": "0.00004402",
+ "bidQty": "49773.00000000",
+ "askPrice": "0.00004424",
+ "askQty": "857.00000000",
+ "openPrice": "0.00004269",
+ "highPrice": "0.00004550",
+ "lowPrice": "0.00004240",
+ "volume": "2710915.00000000",
+ "quoteVolume": "120.76179468",
+ "openTime": 1560210241981,
+ "closeTime": 1560296641981,
+ "firstId": 1835497,
+ "lastId": 1836032,
+ "count": 536
+ },
+ {
+ "symbol": "GXSBTC",
+ "priceChange": "0.00000340",
+ "priceChangePercent": "1.162",
+ "weightedAvgPrice": "0.00029066",
+ "prevClosePrice": "0.00029280",
+ "lastPrice": "0.00029610",
+ "lastQty": "84.93000000",
+ "bidPrice": "0.00029580",
+ "bidQty": "157.75000000",
+ "askPrice": "0.00029640",
+ "askQty": "101.38000000",
+ "openPrice": "0.00029270",
+ "highPrice": "0.00032200",
+ "lowPrice": "0.00025900",
+ "volume": "3149184.66000000",
+ "quoteVolume": "915.34318858",
+ "openTime": 1560210242322,
+ "closeTime": 1560296642322,
+ "firstId": 3586935,
+ "lastId": 3622172,
+ "count": 35238
+ },
+ {
+ "symbol": "GXSETH",
+ "priceChange": "0.00004900",
+ "priceChangePercent": "0.516",
+ "weightedAvgPrice": "0.00940418",
+ "prevClosePrice": "0.00948900",
+ "lastPrice": "0.00954000",
+ "lastQty": "18.87000000",
+ "bidPrice": "0.00951500",
+ "bidQty": "157.75000000",
+ "askPrice": "0.00955500",
+ "askQty": "16.65000000",
+ "openPrice": "0.00949100",
+ "highPrice": "0.01041100",
+ "lowPrice": "0.00838700",
+ "volume": "243866.40000000",
+ "quoteVolume": "2293.36358499",
+ "openTime": 1560210242051,
+ "closeTime": 1560296642051,
+ "firstId": 1238669,
+ "lastId": 1245114,
+ "count": 6446
+ },
+ {
+ "symbol": "NEOUSDT",
+ "priceChange": "0.02200000",
+ "priceChangePercent": "0.180",
+ "weightedAvgPrice": "12.08073978",
+ "prevClosePrice": "12.24700000",
+ "lastPrice": "12.26700000",
+ "lastQty": "70.00000000",
+ "bidPrice": "12.26700000",
+ "bidQty": "1.17000000",
+ "askPrice": "12.26800000",
+ "askQty": "4.27300000",
+ "openPrice": "12.24500000",
+ "highPrice": "12.42000000",
+ "lowPrice": "11.68800000",
+ "volume": "558424.34900000",
+ "quoteVolume": "6746179.24927800",
+ "openTime": 1560210237792,
+ "closeTime": 1560296637792,
+ "firstId": 18155404,
+ "lastId": 18176825,
+ "count": 21422
+ },
+ {
+ "symbol": "NEOBNB",
+ "priceChange": "0.00200000",
+ "priceChangePercent": "0.522",
+ "weightedAvgPrice": "0.38337832",
+ "prevClosePrice": "0.38400000",
+ "lastPrice": "0.38500000",
+ "lastQty": "146.48000000",
+ "bidPrice": "0.38400000",
+ "bidQty": "27.94300000",
+ "askPrice": "0.38500000",
+ "askQty": "115.57700000",
+ "openPrice": "0.38300000",
+ "highPrice": "0.39200000",
+ "lowPrice": "0.37800000",
+ "volume": "19920.56500000",
+ "quoteVolume": "7637.11281000",
+ "openTime": 1560210237381,
+ "closeTime": 1560296637381,
+ "firstId": 2038710,
+ "lastId": 2042095,
+ "count": 3386
+ },
+ {
+ "symbol": "POEBTC",
+ "priceChange": "-0.00000001",
+ "priceChangePercent": "-1.538",
+ "weightedAvgPrice": "0.00000065",
+ "prevClosePrice": "0.00000065",
+ "lastPrice": "0.00000064",
+ "lastQty": "235277.00000000",
+ "bidPrice": "0.00000064",
+ "bidQty": "3222870.00000000",
+ "askPrice": "0.00000065",
+ "askQty": "312602.00000000",
+ "openPrice": "0.00000065",
+ "highPrice": "0.00000067",
+ "lowPrice": "0.00000064",
+ "volume": "70540139.00000000",
+ "quoteVolume": "45.74407070",
+ "openTime": 1560210239171,
+ "closeTime": 1560296639171,
+ "firstId": 7566317,
+ "lastId": 7567421,
+ "count": 1105
+ },
+ {
+ "symbol": "POEETH",
+ "priceChange": "-0.00000049",
+ "priceChangePercent": "-2.300",
+ "weightedAvgPrice": "0.00002105",
+ "prevClosePrice": "0.00002132",
+ "lastPrice": "0.00002081",
+ "lastQty": "1554.00000000",
+ "bidPrice": "0.00002078",
+ "bidQty": "968.00000000",
+ "askPrice": "0.00002095",
+ "askQty": "4784.00000000",
+ "openPrice": "0.00002130",
+ "highPrice": "0.00002156",
+ "lowPrice": "0.00002068",
+ "volume": "3379172.00000000",
+ "quoteVolume": "71.12596409",
+ "openTime": 1560210194782,
+ "closeTime": 1560296594782,
+ "firstId": 2488105,
+ "lastId": 2488377,
+ "count": 273
+ },
+ {
+ "symbol": "QSPBTC",
+ "priceChange": "-0.00000002",
+ "priceChangePercent": "-0.592",
+ "weightedAvgPrice": "0.00000335",
+ "prevClosePrice": "0.00000339",
+ "lastPrice": "0.00000336",
+ "lastQty": "1016.00000000",
+ "bidPrice": "0.00000335",
+ "bidQty": "212420.00000000",
+ "askPrice": "0.00000336",
+ "askQty": "115244.00000000",
+ "openPrice": "0.00000338",
+ "highPrice": "0.00000342",
+ "lowPrice": "0.00000327",
+ "volume": "10066422.00000000",
+ "quoteVolume": "33.76750494",
+ "openTime": 1560210241979,
+ "closeTime": 1560296641979,
+ "firstId": 4840090,
+ "lastId": 4841711,
+ "count": 1622
+ },
+ {
+ "symbol": "QSPETH",
+ "priceChange": "-0.00000122",
+ "priceChangePercent": "-1.110",
+ "weightedAvgPrice": "0.00010943",
+ "prevClosePrice": "0.00010951",
+ "lastPrice": "0.00010873",
+ "lastQty": "127.00000000",
+ "bidPrice": "0.00010781",
+ "bidQty": "108.00000000",
+ "askPrice": "0.00010850",
+ "askQty": "8321.00000000",
+ "openPrice": "0.00010995",
+ "highPrice": "0.00011545",
+ "lowPrice": "0.00010615",
+ "volume": "379490.00000000",
+ "quoteVolume": "41.52813557",
+ "openTime": 1560210242240,
+ "closeTime": 1560296642240,
+ "firstId": 1564258,
+ "lastId": 1564685,
+ "count": 428
+ },
+ {
+ "symbol": "QSPBNB",
+ "priceChange": "-0.00001100",
+ "priceChangePercent": "-1.306",
+ "weightedAvgPrice": "0.00084182",
+ "prevClosePrice": "0.00084200",
+ "lastPrice": "0.00083100",
+ "lastQty": "1108.00000000",
+ "bidPrice": "0.00082900",
+ "bidQty": "262.00000000",
+ "askPrice": "0.00083200",
+ "askQty": "10769.00000000",
+ "openPrice": "0.00084200",
+ "highPrice": "0.00085600",
+ "lowPrice": "0.00082200",
+ "volume": "816912.00000000",
+ "quoteVolume": "687.69429200",
+ "openTime": 1560210242143,
+ "closeTime": 1560296642143,
+ "firstId": 601000,
+ "lastId": 601296,
+ "count": 297
+ },
+ {
+ "symbol": "BTSBTC",
+ "priceChange": "0.00000004",
+ "priceChangePercent": "0.516",
+ "weightedAvgPrice": "0.00000775",
+ "prevClosePrice": "0.00000775",
+ "lastPrice": "0.00000779",
+ "lastQty": "1326.00000000",
+ "bidPrice": "0.00000777",
+ "bidQty": "12870.00000000",
+ "askPrice": "0.00000779",
+ "askQty": "3978.00000000",
+ "openPrice": "0.00000775",
+ "highPrice": "0.00000782",
+ "lowPrice": "0.00000765",
+ "volume": "2969793.00000000",
+ "quoteVolume": "23.02004965",
+ "openTime": 1560210239025,
+ "closeTime": 1560296639025,
+ "firstId": 5347398,
+ "lastId": 5349854,
+ "count": 2457
+ },
+ {
+ "symbol": "BTSETH",
+ "priceChange": "-0.00000079",
+ "priceChangePercent": "-0.315",
+ "weightedAvgPrice": "0.00025104",
+ "prevClosePrice": "0.00025060",
+ "lastPrice": "0.00024981",
+ "lastQty": "75.00000000",
+ "bidPrice": "0.00025011",
+ "bidQty": "481.00000000",
+ "askPrice": "0.00025162",
+ "askQty": "560.00000000",
+ "openPrice": "0.00025060",
+ "highPrice": "0.00025341",
+ "lowPrice": "0.00024788",
+ "volume": "226591.00000000",
+ "quoteVolume": "56.88231642",
+ "openTime": 1560210232049,
+ "closeTime": 1560296632049,
+ "firstId": 1586243,
+ "lastId": 1586484,
+ "count": 242
+ },
+ {
+ "symbol": "BTSBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00193092",
+ "prevClosePrice": "0.00194000",
+ "lastPrice": "0.00194000",
+ "lastQty": "82.00000000",
+ "bidPrice": "0.00192000",
+ "bidQty": "5887.30000000",
+ "askPrice": "0.00194000",
+ "askQty": "25392.60000000",
+ "openPrice": "0.00194000",
+ "highPrice": "0.00195000",
+ "lowPrice": "0.00190000",
+ "volume": "55264.80000000",
+ "quoteVolume": "106.71173700",
+ "openTime": 1560210234586,
+ "closeTime": 1560296634586,
+ "firstId": 344266,
+ "lastId": 344336,
+ "count": 71
+ },
+ {
+ "symbol": "XZCBTC",
+ "priceChange": "0.00004000",
+ "priceChangePercent": "3.265",
+ "weightedAvgPrice": "0.00121648",
+ "prevClosePrice": "0.00122600",
+ "lastPrice": "0.00126500",
+ "lastQty": "2.60000000",
+ "bidPrice": "0.00126500",
+ "bidQty": "77.50000000",
+ "askPrice": "0.00126600",
+ "askQty": "3.16000000",
+ "openPrice": "0.00122500",
+ "highPrice": "0.00131000",
+ "lowPrice": "0.00116000",
+ "volume": "190665.49000000",
+ "quoteVolume": "231.94161761",
+ "openTime": 1560210242123,
+ "closeTime": 1560296642123,
+ "firstId": 3055623,
+ "lastId": 3068630,
+ "count": 13008
+ },
+ {
+ "symbol": "XZCETH",
+ "priceChange": "0.00124600",
+ "priceChangePercent": "3.148",
+ "weightedAvgPrice": "0.03937281",
+ "prevClosePrice": "0.03996600",
+ "lastPrice": "0.04082500",
+ "lastQty": "0.87000000",
+ "bidPrice": "0.04065700",
+ "bidQty": "77.50000000",
+ "askPrice": "0.04115100",
+ "askQty": "1.03000000",
+ "openPrice": "0.03957900",
+ "highPrice": "0.04158000",
+ "lowPrice": "0.03796800",
+ "volume": "9518.75000000",
+ "quoteVolume": "374.77996142",
+ "openTime": 1560210242338,
+ "closeTime": 1560296642338,
+ "firstId": 602091,
+ "lastId": 603636,
+ "count": 1546
+ },
+ {
+ "symbol": "XZCBNB",
+ "priceChange": "0.00700000",
+ "priceChangePercent": "2.288",
+ "weightedAvgPrice": "0.30573753",
+ "prevClosePrice": "0.30800000",
+ "lastPrice": "0.31300000",
+ "lastQty": "0.80000000",
+ "bidPrice": "0.31200000",
+ "bidQty": "1.53100000",
+ "askPrice": "0.31600000",
+ "askQty": "29.15800000",
+ "openPrice": "0.30600000",
+ "highPrice": "0.32400000",
+ "lowPrice": "0.29200000",
+ "volume": "7162.17000000",
+ "quoteVolume": "2189.74416100",
+ "openTime": 1560210241793,
+ "closeTime": 1560296641793,
+ "firstId": 189846,
+ "lastId": 190720,
+ "count": 875
+ },
+ {
+ "symbol": "LSKBTC",
+ "priceChange": "0.00000440",
+ "priceChangePercent": "1.711",
+ "weightedAvgPrice": "0.00025927",
+ "prevClosePrice": "0.00025720",
+ "lastPrice": "0.00026150",
+ "lastQty": "32.57000000",
+ "bidPrice": "0.00026130",
+ "bidQty": "4.59000000",
+ "askPrice": "0.00026190",
+ "askQty": "30.90000000",
+ "openPrice": "0.00025710",
+ "highPrice": "0.00026610",
+ "lowPrice": "0.00025300",
+ "volume": "330389.31000000",
+ "quoteVolume": "85.65874582",
+ "openTime": 1560210241547,
+ "closeTime": 1560296641547,
+ "firstId": 6393123,
+ "lastId": 6397948,
+ "count": 4826
+ },
+ {
+ "symbol": "LSKETH",
+ "priceChange": "0.00010100",
+ "priceChangePercent": "1.211",
+ "weightedAvgPrice": "0.00839188",
+ "prevClosePrice": "0.00834300",
+ "lastPrice": "0.00844400",
+ "lastQty": "107.00000000",
+ "bidPrice": "0.00839100",
+ "bidQty": "9.44000000",
+ "askPrice": "0.00847400",
+ "askQty": "19.86000000",
+ "openPrice": "0.00834300",
+ "highPrice": "0.00860600",
+ "lowPrice": "0.00819900",
+ "volume": "17398.19000000",
+ "quoteVolume": "146.00345830",
+ "openTime": 1560210239221,
+ "closeTime": 1560296639221,
+ "firstId": 1573772,
+ "lastId": 1574447,
+ "count": 676
+ },
+ {
+ "symbol": "LSKBNB",
+ "priceChange": "0.00060000",
+ "priceChangePercent": "0.936",
+ "weightedAvgPrice": "0.06458953",
+ "prevClosePrice": "0.06410000",
+ "lastPrice": "0.06470000",
+ "lastQty": "46.36000000",
+ "bidPrice": "0.06440000",
+ "bidQty": "4.59000000",
+ "askPrice": "0.06490000",
+ "askQty": "17.81000000",
+ "openPrice": "0.06410000",
+ "highPrice": "0.06630000",
+ "lowPrice": "0.06300000",
+ "volume": "15686.06000000",
+ "quoteVolume": "1013.15522400",
+ "openTime": 1560210239225,
+ "closeTime": 1560296639225,
+ "firstId": 366952,
+ "lastId": 367311,
+ "count": 360
+ },
+ {
+ "symbol": "TNTBTC",
+ "priceChange": "0.00000011",
+ "priceChangePercent": "2.619",
+ "weightedAvgPrice": "0.00000429",
+ "prevClosePrice": "0.00000420",
+ "lastPrice": "0.00000431",
+ "lastQty": "159.00000000",
+ "bidPrice": "0.00000429",
+ "bidQty": "5537.00000000",
+ "askPrice": "0.00000431",
+ "askQty": "68079.00000000",
+ "openPrice": "0.00000420",
+ "highPrice": "0.00000448",
+ "lowPrice": "0.00000410",
+ "volume": "42295389.00000000",
+ "quoteVolume": "181.54155203",
+ "openTime": 1560210239553,
+ "closeTime": 1560296639553,
+ "firstId": 4797056,
+ "lastId": 4804445,
+ "count": 7390
+ },
+ {
+ "symbol": "TNTETH",
+ "priceChange": "0.00000290",
+ "priceChangePercent": "2.132",
+ "weightedAvgPrice": "0.00013902",
+ "prevClosePrice": "0.00013600",
+ "lastPrice": "0.00013891",
+ "lastQty": "87.00000000",
+ "bidPrice": "0.00013796",
+ "bidQty": "1848.00000000",
+ "askPrice": "0.00013891",
+ "askQty": "1762.00000000",
+ "openPrice": "0.00013601",
+ "highPrice": "0.00014520",
+ "lowPrice": "0.00013266",
+ "volume": "2405837.00000000",
+ "quoteVolume": "334.46647343",
+ "openTime": 1560210242074,
+ "closeTime": 1560296642074,
+ "firstId": 1229562,
+ "lastId": 1231269,
+ "count": 1708
+ },
+ {
+ "symbol": "FUELBTC",
+ "priceChange": "0.00000003",
+ "priceChangePercent": "2.632",
+ "weightedAvgPrice": "0.00000115",
+ "prevClosePrice": "0.00000114",
+ "lastPrice": "0.00000117",
+ "lastQty": "108434.00000000",
+ "bidPrice": "0.00000116",
+ "bidQty": "623780.00000000",
+ "askPrice": "0.00000117",
+ "askQty": "143431.00000000",
+ "openPrice": "0.00000114",
+ "highPrice": "0.00000119",
+ "lowPrice": "0.00000110",
+ "volume": "130322645.00000000",
+ "quoteVolume": "149.77708954",
+ "openTime": 1560210241549,
+ "closeTime": 1560296641549,
+ "firstId": 5171023,
+ "lastId": 5175128,
+ "count": 4106
+ },
+ {
+ "symbol": "FUELETH",
+ "priceChange": "0.00000056",
+ "priceChangePercent": "1.513",
+ "weightedAvgPrice": "0.00003773",
+ "prevClosePrice": "0.00003702",
+ "lastPrice": "0.00003757",
+ "lastQty": "10587.00000000",
+ "bidPrice": "0.00003754",
+ "bidQty": "6600.00000000",
+ "askPrice": "0.00003758",
+ "askQty": "434.00000000",
+ "openPrice": "0.00003701",
+ "highPrice": "0.00003835",
+ "lowPrice": "0.00003592",
+ "volume": "16293732.00000000",
+ "quoteVolume": "614.73045781",
+ "openTime": 1560210241436,
+ "closeTime": 1560296641436,
+ "firstId": 2048997,
+ "lastId": 2050957,
+ "count": 1961
+ },
+ {
+ "symbol": "MANABTC",
+ "priceChange": "-0.00000001",
+ "priceChangePercent": "-0.133",
+ "weightedAvgPrice": "0.00000746",
+ "prevClosePrice": "0.00000752",
+ "lastPrice": "0.00000752",
+ "lastQty": "2567.00000000",
+ "bidPrice": "0.00000750",
+ "bidQty": "7607.00000000",
+ "askPrice": "0.00000753",
+ "askQty": "3854.00000000",
+ "openPrice": "0.00000753",
+ "highPrice": "0.00000769",
+ "lowPrice": "0.00000732",
+ "volume": "11159576.00000000",
+ "quoteVolume": "83.24482390",
+ "openTime": 1560210239108,
+ "closeTime": 1560296639108,
+ "firstId": 6994197,
+ "lastId": 6998811,
+ "count": 4615
+ },
+ {
+ "symbol": "MANAETH",
+ "priceChange": "-0.00000287",
+ "priceChangePercent": "-1.172",
+ "weightedAvgPrice": "0.00024140",
+ "prevClosePrice": "0.00024419",
+ "lastPrice": "0.00024195",
+ "lastQty": "4588.00000000",
+ "bidPrice": "0.00024126",
+ "bidQty": "698.00000000",
+ "askPrice": "0.00024297",
+ "askQty": "1434.00000000",
+ "openPrice": "0.00024482",
+ "highPrice": "0.00024893",
+ "lowPrice": "0.00023749",
+ "volume": "1134408.00000000",
+ "quoteVolume": "273.85075075",
+ "openTime": 1560210241907,
+ "closeTime": 1560296641907,
+ "firstId": 2420496,
+ "lastId": 2421410,
+ "count": 915
+ },
+ {
+ "symbol": "BCDBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00015141",
+ "prevClosePrice": "0.00015200",
+ "lastPrice": "0.00015200",
+ "lastQty": "49.95000000",
+ "bidPrice": "0.00015200",
+ "bidQty": "209.59500000",
+ "askPrice": "0.00015300",
+ "askQty": "2009.10400000",
+ "openPrice": "0.00015200",
+ "highPrice": "0.00015400",
+ "lowPrice": "0.00014800",
+ "volume": "384708.63100000",
+ "quoteVolume": "58.24957044",
+ "openTime": 1560210241845,
+ "closeTime": 1560296641845,
+ "firstId": 6011931,
+ "lastId": 6014426,
+ "count": 2496
+ },
+ {
+ "symbol": "BCDETH",
+ "priceChange": "-0.00002000",
+ "priceChangePercent": "-0.406",
+ "weightedAvgPrice": "0.00490731",
+ "prevClosePrice": "0.00491000",
+ "lastPrice": "0.00491000",
+ "lastQty": "39.87000000",
+ "bidPrice": "0.00488000",
+ "bidQty": "226.63600000",
+ "askPrice": "0.00492000",
+ "askQty": "51.99100000",
+ "openPrice": "0.00493000",
+ "highPrice": "0.00496000",
+ "lowPrice": "0.00481000",
+ "volume": "32175.21400000",
+ "quoteVolume": "157.89366369",
+ "openTime": 1560210241867,
+ "closeTime": 1560296641867,
+ "firstId": 1777866,
+ "lastId": 1779008,
+ "count": 1143
+ },
+ {
+ "symbol": "DGDBTC",
+ "priceChange": "-0.00005800",
+ "priceChangePercent": "-1.412",
+ "weightedAvgPrice": "0.00406719",
+ "prevClosePrice": "0.00410100",
+ "lastPrice": "0.00405100",
+ "lastQty": "5.44900000",
+ "bidPrice": "0.00404400",
+ "bidQty": "1.19000000",
+ "askPrice": "0.00405500",
+ "askQty": "0.81000000",
+ "openPrice": "0.00410900",
+ "highPrice": "0.00414000",
+ "lowPrice": "0.00400000",
+ "volume": "9401.70400000",
+ "quoteVolume": "38.23849952",
+ "openTime": 1560210237619,
+ "closeTime": 1560296637619,
+ "firstId": 8082266,
+ "lastId": 8084561,
+ "count": 2296
+ },
+ {
+ "symbol": "DGDETH",
+ "priceChange": "-0.00374000",
+ "priceChangePercent": "-2.799",
+ "weightedAvgPrice": "0.13071898",
+ "prevClosePrice": "0.13287000",
+ "lastPrice": "0.12989000",
+ "lastQty": "0.08000000",
+ "bidPrice": "0.12994000",
+ "bidQty": "5.91800000",
+ "askPrice": "0.13062000",
+ "askQty": "1.99900000",
+ "openPrice": "0.13363000",
+ "highPrice": "0.13435000",
+ "lowPrice": "0.12942000",
+ "volume": "1500.93000000",
+ "quoteVolume": "196.20004045",
+ "openTime": 1560210232671,
+ "closeTime": 1560296632671,
+ "firstId": 2779736,
+ "lastId": 2780244,
+ "count": 509
+ },
+ {
+ "symbol": "IOTABNB",
+ "priceChange": "-0.00020000",
+ "priceChangePercent": "-1.494",
+ "weightedAvgPrice": "0.01326593",
+ "prevClosePrice": "0.01338000",
+ "lastPrice": "0.01319000",
+ "lastQty": "326.60000000",
+ "bidPrice": "0.01321000",
+ "bidQty": "134.60000000",
+ "askPrice": "0.01324000",
+ "askQty": "460.30000000",
+ "openPrice": "0.01339000",
+ "highPrice": "0.01345000",
+ "lowPrice": "0.01310000",
+ "volume": "274865.30000000",
+ "quoteVolume": "3646.34306300",
+ "openTime": 1560210241573,
+ "closeTime": 1560296641573,
+ "firstId": 1376244,
+ "lastId": 1377556,
+ "count": 1313
+ },
+ {
+ "symbol": "ADXBTC",
+ "priceChange": "0.00000044",
+ "priceChangePercent": "2.141",
+ "weightedAvgPrice": "0.00002061",
+ "prevClosePrice": "0.00002059",
+ "lastPrice": "0.00002099",
+ "lastQty": "96.00000000",
+ "bidPrice": "0.00002094",
+ "bidQty": "412.00000000",
+ "askPrice": "0.00002099",
+ "askQty": "736.00000000",
+ "openPrice": "0.00002055",
+ "highPrice": "0.00002137",
+ "lowPrice": "0.00002020",
+ "volume": "2651714.00000000",
+ "quoteVolume": "54.65445544",
+ "openTime": 1560210241875,
+ "closeTime": 1560296641875,
+ "firstId": 4587339,
+ "lastId": 4591228,
+ "count": 3890
+ },
+ {
+ "symbol": "ADXETH",
+ "priceChange": "0.00000940",
+ "priceChangePercent": "1.411",
+ "weightedAvgPrice": "0.00066672",
+ "prevClosePrice": "0.00066600",
+ "lastPrice": "0.00067540",
+ "lastQty": "894.00000000",
+ "bidPrice": "0.00067250",
+ "bidQty": "412.00000000",
+ "askPrice": "0.00067650",
+ "askQty": "518.00000000",
+ "openPrice": "0.00066600",
+ "highPrice": "0.00068280",
+ "lowPrice": "0.00065280",
+ "volume": "248704.00000000",
+ "quoteVolume": "165.81511890",
+ "openTime": 1560210241071,
+ "closeTime": 1560296641071,
+ "firstId": 977950,
+ "lastId": 978775,
+ "count": 826
+ },
+ {
+ "symbol": "ADXBNB",
+ "priceChange": "0.00007000",
+ "priceChangePercent": "1.370",
+ "weightedAvgPrice": "0.00513947",
+ "prevClosePrice": "0.00513000",
+ "lastPrice": "0.00518000",
+ "lastQty": "1114.30000000",
+ "bidPrice": "0.00516000",
+ "bidQty": "412.00000000",
+ "askPrice": "0.00519000",
+ "askQty": "1670.20000000",
+ "openPrice": "0.00511000",
+ "highPrice": "0.00523000",
+ "lowPrice": "0.00506000",
+ "volume": "76119.70000000",
+ "quoteVolume": "391.21499400",
+ "openTime": 1560210234114,
+ "closeTime": 1560296634114,
+ "firstId": 501616,
+ "lastId": 501943,
+ "count": 328
+ },
+ {
+ "symbol": "ADABTC",
+ "priceChange": "0.00000046",
+ "priceChangePercent": "4.315",
+ "weightedAvgPrice": "0.00001089",
+ "prevClosePrice": "0.00001066",
+ "lastPrice": "0.00001112",
+ "lastQty": "7324.00000000",
+ "bidPrice": "0.00001111",
+ "bidQty": "244930.00000000",
+ "askPrice": "0.00001112",
+ "askQty": "565.00000000",
+ "openPrice": "0.00001066",
+ "highPrice": "0.00001127",
+ "lowPrice": "0.00001047",
+ "volume": "207174872.00000000",
+ "quoteVolume": "2256.97846038",
+ "openTime": 1560210242001,
+ "closeTime": 1560296642001,
+ "firstId": 28548729,
+ "lastId": 28590337,
+ "count": 41609
+ },
+ {
+ "symbol": "ADAETH",
+ "priceChange": "0.00001227",
+ "priceChangePercent": "3.552",
+ "weightedAvgPrice": "0.00035140",
+ "prevClosePrice": "0.00034510",
+ "lastPrice": "0.00035770",
+ "lastQty": "9622.00000000",
+ "bidPrice": "0.00035771",
+ "bidQty": "4066.00000000",
+ "askPrice": "0.00035840",
+ "askQty": "53.00000000",
+ "openPrice": "0.00034543",
+ "highPrice": "0.00036523",
+ "lowPrice": "0.00033970",
+ "volume": "8759588.00000000",
+ "quoteVolume": "3078.12940777",
+ "openTime": 1560210240851,
+ "closeTime": 1560296640851,
+ "firstId": 9128113,
+ "lastId": 9134567,
+ "count": 6455
+ },
+ {
+ "symbol": "PPTBTC",
+ "priceChange": "0.00000580",
+ "priceChangePercent": "4.064",
+ "weightedAvgPrice": "0.00015195",
+ "prevClosePrice": "0.00014180",
+ "lastPrice": "0.00014850",
+ "lastQty": "102.62000000",
+ "bidPrice": "0.00014790",
+ "bidQty": "58.14000000",
+ "askPrice": "0.00014840",
+ "askQty": "108.30000000",
+ "openPrice": "0.00014270",
+ "highPrice": "0.00016160",
+ "lowPrice": "0.00013940",
+ "volume": "1575892.74000000",
+ "quoteVolume": "239.46305904",
+ "openTime": 1560210242114,
+ "closeTime": 1560296642114,
+ "firstId": 4679377,
+ "lastId": 4694125,
+ "count": 14749
+ },
+ {
+ "symbol": "PPTETH",
+ "priceChange": "0.00017600",
+ "priceChangePercent": "3.806",
+ "weightedAvgPrice": "0.00492030",
+ "prevClosePrice": "0.00462800",
+ "lastPrice": "0.00480000",
+ "lastQty": "87.00000000",
+ "bidPrice": "0.00475400",
+ "bidQty": "58.14000000",
+ "askPrice": "0.00479700",
+ "askQty": "345.44000000",
+ "openPrice": "0.00462400",
+ "highPrice": "0.00526000",
+ "lowPrice": "0.00451700",
+ "volume": "203371.98000000",
+ "quoteVolume": "1000.65046327",
+ "openTime": 1560210234489,
+ "closeTime": 1560296634489,
+ "firstId": 1395613,
+ "lastId": 1398988,
+ "count": 3376
+ },
+ {
+ "symbol": "CMTBTC",
+ "priceChange": "-0.00000014",
+ "priceChangePercent": "-2.905",
+ "weightedAvgPrice": "0.00000464",
+ "prevClosePrice": "0.00000481",
+ "lastPrice": "0.00000468",
+ "lastQty": "3546.00000000",
+ "bidPrice": "0.00000466",
+ "bidQty": "10955.00000000",
+ "askPrice": "0.00000468",
+ "askQty": "21592.00000000",
+ "openPrice": "0.00000482",
+ "highPrice": "0.00000482",
+ "lowPrice": "0.00000453",
+ "volume": "16439833.00000000",
+ "quoteVolume": "76.23472262",
+ "openTime": 1560210238991,
+ "closeTime": 1560296638991,
+ "firstId": 6004774,
+ "lastId": 6009219,
+ "count": 4446
+ },
+ {
+ "symbol": "CMTETH",
+ "priceChange": "-0.00000713",
+ "priceChangePercent": "-4.559",
+ "weightedAvgPrice": "0.00015002",
+ "prevClosePrice": "0.00015570",
+ "lastPrice": "0.00014927",
+ "lastQty": "8628.00000000",
+ "bidPrice": "0.00015002",
+ "bidQty": "28556.00000000",
+ "askPrice": "0.00015059",
+ "askQty": "10727.00000000",
+ "openPrice": "0.00015640",
+ "highPrice": "0.00015640",
+ "lowPrice": "0.00014738",
+ "volume": "778759.00000000",
+ "quoteVolume": "116.83297989",
+ "openTime": 1560210240654,
+ "closeTime": 1560296640654,
+ "firstId": 2000458,
+ "lastId": 2001204,
+ "count": 747
+ },
+ {
+ "symbol": "CMTBNB",
+ "priceChange": "-0.00004000",
+ "priceChangePercent": "-3.333",
+ "weightedAvgPrice": "0.00116551",
+ "prevClosePrice": "0.00120000",
+ "lastPrice": "0.00116000",
+ "lastQty": "6876.60000000",
+ "bidPrice": "0.00115000",
+ "bidQty": "11137.50000000",
+ "askPrice": "0.00116000",
+ "askQty": "3508.30000000",
+ "openPrice": "0.00120000",
+ "highPrice": "0.00121000",
+ "lowPrice": "0.00113000",
+ "volume": "260039.20000000",
+ "quoteVolume": "303.07906600",
+ "openTime": 1560210218019,
+ "closeTime": 1560296618019,
+ "firstId": 512977,
+ "lastId": 513198,
+ "count": 222
+ },
+ {
+ "symbol": "XLMBTC",
+ "priceChange": "0.00000008",
+ "priceChangePercent": "0.518",
+ "weightedAvgPrice": "0.00001541",
+ "prevClosePrice": "0.00001543",
+ "lastPrice": "0.00001551",
+ "lastQty": "22542.00000000",
+ "bidPrice": "0.00001550",
+ "bidQty": "30314.00000000",
+ "askPrice": "0.00001551",
+ "askQty": "29005.00000000",
+ "openPrice": "0.00001543",
+ "highPrice": "0.00001558",
+ "lowPrice": "0.00001529",
+ "volume": "19500707.00000000",
+ "quoteVolume": "300.42544956",
+ "openTime": 1560210242291,
+ "closeTime": 1560296642291,
+ "firstId": 24200410,
+ "lastId": 24211653,
+ "count": 11244
+ },
+ {
+ "symbol": "XLMETH",
+ "priceChange": "-0.00000064",
+ "priceChangePercent": "-0.128",
+ "weightedAvgPrice": "0.00049871",
+ "prevClosePrice": "0.00049885",
+ "lastPrice": "0.00049873",
+ "lastQty": "885.00000000",
+ "bidPrice": "0.00049872",
+ "bidQty": "629.00000000",
+ "askPrice": "0.00050032",
+ "askQty": "1406.00000000",
+ "openPrice": "0.00049937",
+ "highPrice": "0.00050429",
+ "lowPrice": "0.00049389",
+ "volume": "1302515.00000000",
+ "quoteVolume": "649.57993912",
+ "openTime": 1560210237948,
+ "closeTime": 1560296637948,
+ "firstId": 6764869,
+ "lastId": 6766357,
+ "count": 1489
+ },
+ {
+ "symbol": "XLMBNB",
+ "priceChange": "-0.00001000",
+ "priceChangePercent": "-0.260",
+ "weightedAvgPrice": "0.00383965",
+ "prevClosePrice": "0.00385000",
+ "lastPrice": "0.00384000",
+ "lastQty": "50.00000000",
+ "bidPrice": "0.00383000",
+ "bidQty": "3023.20000000",
+ "askPrice": "0.00384000",
+ "askQty": "742.50000000",
+ "openPrice": "0.00385000",
+ "highPrice": "0.00388000",
+ "lowPrice": "0.00380000",
+ "volume": "691538.20000000",
+ "quoteVolume": "2655.26581400",
+ "openTime": 1560210236651,
+ "closeTime": 1560296636651,
+ "firstId": 1702849,
+ "lastId": 1703832,
+ "count": 984
+ },
+ {
+ "symbol": "CNDBTC",
+ "priceChange": "-0.00000007",
+ "priceChangePercent": "-2.917",
+ "weightedAvgPrice": "0.00000234",
+ "prevClosePrice": "0.00000241",
+ "lastPrice": "0.00000233",
+ "lastQty": "3788.00000000",
+ "bidPrice": "0.00000232",
+ "bidQty": "10024.00000000",
+ "askPrice": "0.00000233",
+ "askQty": "78342.00000000",
+ "openPrice": "0.00000240",
+ "highPrice": "0.00000242",
+ "lowPrice": "0.00000226",
+ "volume": "10172405.00000000",
+ "quoteVolume": "23.78748630",
+ "openTime": 1560210241927,
+ "closeTime": 1560296641927,
+ "firstId": 5768128,
+ "lastId": 5769580,
+ "count": 1453
+ },
+ {
+ "symbol": "CNDETH",
+ "priceChange": "-0.00000239",
+ "priceChangePercent": "-3.084",
+ "weightedAvgPrice": "0.00007554",
+ "prevClosePrice": "0.00007712",
+ "lastPrice": "0.00007511",
+ "lastQty": "514.00000000",
+ "bidPrice": "0.00007482",
+ "bidQty": "353.00000000",
+ "askPrice": "0.00007511",
+ "askQty": "12513.00000000",
+ "openPrice": "0.00007750",
+ "highPrice": "0.00007820",
+ "lowPrice": "0.00007351",
+ "volume": "1200307.00000000",
+ "quoteVolume": "90.67116129",
+ "openTime": 1560210241560,
+ "closeTime": 1560296641560,
+ "firstId": 1991581,
+ "lastId": 1992137,
+ "count": 557
+ },
+ {
+ "symbol": "CNDBNB",
+ "priceChange": "-0.00002000",
+ "priceChangePercent": "-3.350",
+ "weightedAvgPrice": "0.00058433",
+ "prevClosePrice": "0.00059900",
+ "lastPrice": "0.00057700",
+ "lastQty": "16754.00000000",
+ "bidPrice": "0.00057300",
+ "bidQty": "10466.00000000",
+ "askPrice": "0.00057700",
+ "askQty": "4498.00000000",
+ "openPrice": "0.00059700",
+ "highPrice": "0.00060100",
+ "lowPrice": "0.00057400",
+ "volume": "644039.00000000",
+ "quoteVolume": "376.33171200",
+ "openTime": 1560210240388,
+ "closeTime": 1560296640388,
+ "firstId": 980442,
+ "lastId": 980606,
+ "count": 165
+ },
+ {
+ "symbol": "LENDBTC",
+ "priceChange": "0.00000009",
+ "priceChangePercent": "7.692",
+ "weightedAvgPrice": "0.00000128",
+ "prevClosePrice": "0.00000118",
+ "lastPrice": "0.00000126",
+ "lastQty": "49493.00000000",
+ "bidPrice": "0.00000125",
+ "bidQty": "112998.00000000",
+ "askPrice": "0.00000126",
+ "askQty": "118341.00000000",
+ "openPrice": "0.00000117",
+ "highPrice": "0.00000140",
+ "lowPrice": "0.00000114",
+ "volume": "273830746.00000000",
+ "quoteVolume": "351.27304656",
+ "openTime": 1560210239248,
+ "closeTime": 1560296639248,
+ "firstId": 5087959,
+ "lastId": 5099343,
+ "count": 11385
+ },
+ {
+ "symbol": "LENDETH",
+ "priceChange": "0.00000281",
+ "priceChangePercent": "7.408",
+ "weightedAvgPrice": "0.00004126",
+ "prevClosePrice": "0.00003813",
+ "lastPrice": "0.00004074",
+ "lastQty": "271.00000000",
+ "bidPrice": "0.00004036",
+ "bidQty": "722.00000000",
+ "askPrice": "0.00004074",
+ "askQty": "37842.00000000",
+ "openPrice": "0.00003793",
+ "highPrice": "0.00004526",
+ "lowPrice": "0.00003712",
+ "volume": "10121577.00000000",
+ "quoteVolume": "417.63617230",
+ "openTime": 1560210242226,
+ "closeTime": 1560296642226,
+ "firstId": 1853170,
+ "lastId": 1855291,
+ "count": 2122
+ },
+ {
+ "symbol": "WABIBTC",
+ "priceChange": "-0.00000086",
+ "priceChangePercent": "-2.072",
+ "weightedAvgPrice": "0.00004118",
+ "prevClosePrice": "0.00004150",
+ "lastPrice": "0.00004064",
+ "lastQty": "470.00000000",
+ "bidPrice": "0.00004063",
+ "bidQty": "1392.00000000",
+ "askPrice": "0.00004078",
+ "askQty": "49.00000000",
+ "openPrice": "0.00004150",
+ "highPrice": "0.00004247",
+ "lowPrice": "0.00003992",
+ "volume": "4118445.00000000",
+ "quoteVolume": "169.59354636",
+ "openTime": 1560210238799,
+ "closeTime": 1560296638799,
+ "firstId": 5961575,
+ "lastId": 5970450,
+ "count": 8876
+ },
+ {
+ "symbol": "WABIETH",
+ "priceChange": "-0.00002833",
+ "priceChangePercent": "-2.103",
+ "weightedAvgPrice": "0.00133710",
+ "prevClosePrice": "0.00134902",
+ "lastPrice": "0.00131909",
+ "lastQty": "10.00000000",
+ "bidPrice": "0.00131044",
+ "bidQty": "28.00000000",
+ "askPrice": "0.00131696",
+ "askQty": "36.00000000",
+ "openPrice": "0.00134742",
+ "highPrice": "0.00137966",
+ "lowPrice": "0.00129806",
+ "volume": "134563.00000000",
+ "quoteVolume": "179.92455716",
+ "openTime": 1560210240452,
+ "closeTime": 1560296640452,
+ "firstId": 1318310,
+ "lastId": 1319337,
+ "count": 1028
+ },
+ {
+ "symbol": "WABIBNB",
+ "priceChange": "-0.00027000",
+ "priceChangePercent": "-2.616",
+ "weightedAvgPrice": "0.01024498",
+ "prevClosePrice": "0.01038000",
+ "lastPrice": "0.01005000",
+ "lastQty": "12.00000000",
+ "bidPrice": "0.01005000",
+ "bidQty": "17.60000000",
+ "askPrice": "0.01008000",
+ "askQty": "428.00000000",
+ "openPrice": "0.01032000",
+ "highPrice": "0.01058000",
+ "lowPrice": "0.01005000",
+ "volume": "292635.20000000",
+ "quoteVolume": "2998.04069300",
+ "openTime": 1560210240459,
+ "closeTime": 1560296640459,
+ "firstId": 453632,
+ "lastId": 454376,
+ "count": 745
+ },
+ {
+ "symbol": "LTCETH",
+ "priceChange": "0.03159000",
+ "priceChangePercent": "6.038",
+ "weightedAvgPrice": "0.54400202",
+ "prevClosePrice": "0.52315000",
+ "lastPrice": "0.55474000",
+ "lastQty": "0.36200000",
+ "bidPrice": "0.55422000",
+ "bidQty": "7.55200000",
+ "askPrice": "0.55474000",
+ "askQty": "1.42100000",
+ "openPrice": "0.52315000",
+ "highPrice": "0.56870000",
+ "lowPrice": "0.51847000",
+ "volume": "23311.85100000",
+ "quoteVolume": "12681.69405103",
+ "openTime": 1560210241304,
+ "closeTime": 1560296641304,
+ "firstId": 5909053,
+ "lastId": 5925864,
+ "count": 16812
+ },
+ {
+ "symbol": "LTCUSDT",
+ "priceChange": "7.02000000",
+ "priceChangePercent": "5.452",
+ "weightedAvgPrice": "130.59813352",
+ "prevClosePrice": "128.80000000",
+ "lastPrice": "135.77000000",
+ "lastQty": "0.12000000",
+ "bidPrice": "135.73000000",
+ "bidQty": "15.10902000",
+ "askPrice": "135.77000000",
+ "askQty": "0.83679000",
+ "openPrice": "128.75000000",
+ "highPrice": "138.56000000",
+ "lowPrice": "124.85000000",
+ "volume": "876053.04634000",
+ "quoteVolume": "114410892.71528510",
+ "openTime": 1560210242213,
+ "closeTime": 1560296642213,
+ "firstId": 23711560,
+ "lastId": 23864373,
+ "count": 152814
+ },
+ {
+ "symbol": "LTCBNB",
+ "priceChange": "0.22000000",
+ "priceChangePercent": "5.459",
+ "weightedAvgPrice": "4.18284207",
+ "prevClosePrice": "4.03000000",
+ "lastPrice": "4.25000000",
+ "lastQty": "0.76848000",
+ "bidPrice": "4.25000000",
+ "bidQty": "179.81538000",
+ "askPrice": "4.26000000",
+ "askQty": "24.23826000",
+ "openPrice": "4.03000000",
+ "highPrice": "4.37000000",
+ "lowPrice": "4.01000000",
+ "volume": "34512.60212000",
+ "quoteVolume": "144360.76396640",
+ "openTime": 1560210242318,
+ "closeTime": 1560296642318,
+ "firstId": 2551019,
+ "lastId": 2570818,
+ "count": 19800
+ },
+ {
+ "symbol": "TNBBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00000062",
+ "prevClosePrice": "0.00000062",
+ "lastPrice": "0.00000062",
+ "lastQty": "151117.00000000",
+ "bidPrice": "0.00000062",
+ "bidQty": "954748.00000000",
+ "askPrice": "0.00000063",
+ "askQty": "4265152.00000000",
+ "openPrice": "0.00000062",
+ "highPrice": "0.00000064",
+ "lowPrice": "0.00000061",
+ "volume": "86546834.00000000",
+ "quoteVolume": "53.89275459",
+ "openTime": 1560210237598,
+ "closeTime": 1560296637598,
+ "firstId": 4756877,
+ "lastId": 4758181,
+ "count": 1305
+ },
+ {
+ "symbol": "TNBETH",
+ "priceChange": "-0.00000026",
+ "priceChangePercent": "-1.286",
+ "weightedAvgPrice": "0.00002017",
+ "prevClosePrice": "0.00002021",
+ "lastPrice": "0.00001995",
+ "lastQty": "4053.00000000",
+ "bidPrice": "0.00001995",
+ "bidQty": "3093.00000000",
+ "askPrice": "0.00002009",
+ "askQty": "8755.00000000",
+ "openPrice": "0.00002021",
+ "highPrice": "0.00002073",
+ "lowPrice": "0.00001966",
+ "volume": "4910763.00000000",
+ "quoteVolume": "99.06634329",
+ "openTime": 1560210241563,
+ "closeTime": 1560296641563,
+ "firstId": 1877351,
+ "lastId": 1878023,
+ "count": 673
+ },
+ {
+ "symbol": "WAVESBTC",
+ "priceChange": "0.00000290",
+ "priceChangePercent": "0.975",
+ "weightedAvgPrice": "0.00030052",
+ "prevClosePrice": "0.00029720",
+ "lastPrice": "0.00030020",
+ "lastQty": "183.74000000",
+ "bidPrice": "0.00030020",
+ "bidQty": "137.16000000",
+ "askPrice": "0.00030030",
+ "askQty": "0.04000000",
+ "openPrice": "0.00029730",
+ "highPrice": "0.00030370",
+ "lowPrice": "0.00029680",
+ "volume": "2356893.03000000",
+ "quoteVolume": "708.28957464",
+ "openTime": 1560210242223,
+ "closeTime": 1560296642223,
+ "firstId": 16604142,
+ "lastId": 16635713,
+ "count": 31572
+ },
+ {
+ "symbol": "WAVESETH",
+ "priceChange": "0.00004800",
+ "priceChangePercent": "0.498",
+ "weightedAvgPrice": "0.00972609",
+ "prevClosePrice": "0.00963500",
+ "lastPrice": "0.00968200",
+ "lastQty": "170.71000000",
+ "bidPrice": "0.00965500",
+ "bidQty": "105.23000000",
+ "askPrice": "0.00968300",
+ "askQty": "329.56000000",
+ "openPrice": "0.00963400",
+ "highPrice": "0.00984800",
+ "lowPrice": "0.00960000",
+ "volume": "365473.86000000",
+ "quoteVolume": "3554.63099067",
+ "openTime": 1560210242326,
+ "closeTime": 1560296642326,
+ "firstId": 2237870,
+ "lastId": 2245213,
+ "count": 7344
+ },
+ {
+ "symbol": "WAVESBNB",
+ "priceChange": "0.00030000",
+ "priceChangePercent": "0.405",
+ "weightedAvgPrice": "0.07504166",
+ "prevClosePrice": "0.07410000",
+ "lastPrice": "0.07430000",
+ "lastQty": "266.56000000",
+ "bidPrice": "0.07410000",
+ "bidQty": "121.00000000",
+ "askPrice": "0.07440000",
+ "askQty": "314.85000000",
+ "openPrice": "0.07400000",
+ "highPrice": "0.07600000",
+ "lowPrice": "0.07370000",
+ "volume": "48267.48000000",
+ "quoteVolume": "3622.07190400",
+ "openTime": 1560210236756,
+ "closeTime": 1560296636756,
+ "firstId": 464346,
+ "lastId": 465000,
+ "count": 655
+ },
+ {
+ "symbol": "GTOBTC",
+ "priceChange": "0.00000001",
+ "priceChangePercent": "0.236",
+ "weightedAvgPrice": "0.00000416",
+ "prevClosePrice": "0.00000423",
+ "lastPrice": "0.00000424",
+ "lastQty": "728.00000000",
+ "bidPrice": "0.00000424",
+ "bidQty": "1508.00000000",
+ "askPrice": "0.00000425",
+ "askQty": "83728.00000000",
+ "openPrice": "0.00000423",
+ "highPrice": "0.00000430",
+ "lowPrice": "0.00000402",
+ "volume": "35051445.00000000",
+ "quoteVolume": "145.69004880",
+ "openTime": 1560210238659,
+ "closeTime": 1560296638659,
+ "firstId": 7835247,
+ "lastId": 7841339,
+ "count": 6093
+ },
+ {
+ "symbol": "GTOETH",
+ "priceChange": "0.00000014",
+ "priceChangePercent": "0.102",
+ "weightedAvgPrice": "0.00013511",
+ "prevClosePrice": "0.00013703",
+ "lastPrice": "0.00013708",
+ "lastQty": "1608.00000000",
+ "bidPrice": "0.00013626",
+ "bidQty": "1508.00000000",
+ "askPrice": "0.00013709",
+ "askQty": "3494.00000000",
+ "openPrice": "0.00013694",
+ "highPrice": "0.00013959",
+ "lowPrice": "0.00013077",
+ "volume": "1856991.00000000",
+ "quoteVolume": "250.88897236",
+ "openTime": 1560210236177,
+ "closeTime": 1560296636177,
+ "firstId": 2703957,
+ "lastId": 2704859,
+ "count": 903
+ },
+ {
+ "symbol": "GTOBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00104286",
+ "prevClosePrice": "0.00106000",
+ "lastPrice": "0.00105000",
+ "lastQty": "44315.20000000",
+ "bidPrice": "0.00104000",
+ "bidQty": "43019.10000000",
+ "askPrice": "0.00106000",
+ "askQty": "45027.00000000",
+ "openPrice": "0.00105000",
+ "highPrice": "0.00108000",
+ "lowPrice": "0.00101000",
+ "volume": "2091211.80000000",
+ "quoteVolume": "2180.83746000",
+ "openTime": 1560210234060,
+ "closeTime": 1560296634060,
+ "firstId": 1071500,
+ "lastId": 1071957,
+ "count": 458
+ },
+ {
+ "symbol": "ICXBTC",
+ "priceChange": "0.00000060",
+ "priceChangePercent": "1.271",
+ "weightedAvgPrice": "0.00004746",
+ "prevClosePrice": "0.00004730",
+ "lastPrice": "0.00004780",
+ "lastQty": "21.00000000",
+ "bidPrice": "0.00004780",
+ "bidQty": "78125.42000000",
+ "askPrice": "0.00004800",
+ "askQty": "27556.80000000",
+ "openPrice": "0.00004720",
+ "highPrice": "0.00004840",
+ "lowPrice": "0.00004680",
+ "volume": "8846923.94000000",
+ "quoteVolume": "419.84124719",
+ "openTime": 1560210241552,
+ "closeTime": 1560296641552,
+ "firstId": 18306830,
+ "lastId": 18314605,
+ "count": 7776
+ },
+ {
+ "symbol": "ICXETH",
+ "priceChange": "0.00000500",
+ "priceChangePercent": "0.326",
+ "weightedAvgPrice": "0.00153473",
+ "prevClosePrice": "0.00152900",
+ "lastPrice": "0.00153800",
+ "lastQty": "50.22000000",
+ "bidPrice": "0.00153900",
+ "bidQty": "72.00000000",
+ "askPrice": "0.00154500",
+ "askQty": "656.97000000",
+ "openPrice": "0.00153300",
+ "highPrice": "0.00156000",
+ "lowPrice": "0.00151500",
+ "volume": "392267.60000000",
+ "quoteVolume": "602.02628154",
+ "openTime": 1560210229409,
+ "closeTime": 1560296629409,
+ "firstId": 6191290,
+ "lastId": 6192757,
+ "count": 1468
+ },
+ {
+ "symbol": "ICXBNB",
+ "priceChange": "0.00004000",
+ "priceChangePercent": "0.339",
+ "weightedAvgPrice": "0.01182259",
+ "prevClosePrice": "0.01181000",
+ "lastPrice": "0.01183000",
+ "lastQty": "22.20000000",
+ "bidPrice": "0.01183000",
+ "bidQty": "232.20000000",
+ "askPrice": "0.01189000",
+ "askQty": "233.30000000",
+ "openPrice": "0.01179000",
+ "highPrice": "0.01208000",
+ "lowPrice": "0.01162000",
+ "volume": "263588.90000000",
+ "quoteVolume": "3116.30290500",
+ "openTime": 1560210241591,
+ "closeTime": 1560296641591,
+ "firstId": 1072069,
+ "lastId": 1073003,
+ "count": 935
+ },
+ {
+ "symbol": "OSTBTC",
+ "priceChange": "0.00000016",
+ "priceChangePercent": "4.598",
+ "weightedAvgPrice": "0.00000357",
+ "prevClosePrice": "0.00000351",
+ "lastPrice": "0.00000364",
+ "lastQty": "20295.00000000",
+ "bidPrice": "0.00000363",
+ "bidQty": "74315.00000000",
+ "askPrice": "0.00000364",
+ "askQty": "24603.00000000",
+ "openPrice": "0.00000348",
+ "highPrice": "0.00000365",
+ "lowPrice": "0.00000345",
+ "volume": "23914199.00000000",
+ "quoteVolume": "85.36730912",
+ "openTime": 1560210242194,
+ "closeTime": 1560296642194,
+ "firstId": 4191302,
+ "lastId": 4195894,
+ "count": 4593
+ },
+ {
+ "symbol": "OSTETH",
+ "priceChange": "0.00000416",
+ "priceChangePercent": "3.688",
+ "weightedAvgPrice": "0.00011559",
+ "prevClosePrice": "0.00011329",
+ "lastPrice": "0.00011695",
+ "lastQty": "90.00000000",
+ "bidPrice": "0.00011661",
+ "bidQty": "46105.00000000",
+ "askPrice": "0.00011695",
+ "askQty": "175.00000000",
+ "openPrice": "0.00011279",
+ "highPrice": "0.00011870",
+ "lowPrice": "0.00011229",
+ "volume": "1542418.00000000",
+ "quoteVolume": "178.28299169",
+ "openTime": 1560210237443,
+ "closeTime": 1560296637443,
+ "firstId": 1187658,
+ "lastId": 1188464,
+ "count": 807
+ },
+ {
+ "symbol": "OSTBNB",
+ "priceChange": "0.00002700",
+ "priceChangePercent": "3.107",
+ "weightedAvgPrice": "0.00089030",
+ "prevClosePrice": "0.00087200",
+ "lastPrice": "0.00089600",
+ "lastQty": "2034.00000000",
+ "bidPrice": "0.00089600",
+ "bidQty": "13110.00000000",
+ "askPrice": "0.00090200",
+ "askQty": "4864.00000000",
+ "openPrice": "0.00086900",
+ "highPrice": "0.00091400",
+ "lowPrice": "0.00086500",
+ "volume": "1711154.00000000",
+ "quoteVolume": "1523.43867800",
+ "openTime": 1560210239163,
+ "closeTime": 1560296639163,
+ "firstId": 297225,
+ "lastId": 297872,
+ "count": 648
+ },
+ {
+ "symbol": "ELFBTC",
+ "priceChange": "-0.00000011",
+ "priceChangePercent": "-0.420",
+ "weightedAvgPrice": "0.00002599",
+ "prevClosePrice": "0.00002621",
+ "lastPrice": "0.00002610",
+ "lastQty": "2533.00000000",
+ "bidPrice": "0.00002609",
+ "bidQty": "1686.00000000",
+ "askPrice": "0.00002611",
+ "askQty": "250.00000000",
+ "openPrice": "0.00002621",
+ "highPrice": "0.00002683",
+ "lowPrice": "0.00002559",
+ "volume": "5243356.00000000",
+ "quoteVolume": "136.27505504",
+ "openTime": 1560210241842,
+ "closeTime": 1560296641842,
+ "firstId": 9939372,
+ "lastId": 9950883,
+ "count": 11512
+ },
+ {
+ "symbol": "ELFETH",
+ "priceChange": "-0.00000863",
+ "priceChangePercent": "-1.016",
+ "weightedAvgPrice": "0.00084235",
+ "prevClosePrice": "0.00084961",
+ "lastPrice": "0.00084070",
+ "lastQty": "318.00000000",
+ "bidPrice": "0.00083901",
+ "bidQty": "749.00000000",
+ "askPrice": "0.00084140",
+ "askQty": "75.00000000",
+ "openPrice": "0.00084933",
+ "highPrice": "0.00087077",
+ "lowPrice": "0.00082370",
+ "volume": "504565.00000000",
+ "quoteVolume": "425.01908037",
+ "openTime": 1560210241970,
+ "closeTime": 1560296641970,
+ "firstId": 3505666,
+ "lastId": 3507156,
+ "count": 1491
+ },
+ {
+ "symbol": "AIONBTC",
+ "priceChange": "0.00000070",
+ "priceChangePercent": "2.869",
+ "weightedAvgPrice": "0.00002472",
+ "prevClosePrice": "0.00002440",
+ "lastPrice": "0.00002510",
+ "lastQty": "1565.16000000",
+ "bidPrice": "0.00002500",
+ "bidQty": "135.83000000",
+ "askPrice": "0.00002510",
+ "askQty": "6906.06000000",
+ "openPrice": "0.00002440",
+ "highPrice": "0.00002520",
+ "lowPrice": "0.00002410",
+ "volume": "3189202.43000000",
+ "quoteVolume": "78.84927549",
+ "openTime": 1560210242307,
+ "closeTime": 1560296642307,
+ "firstId": 5975199,
+ "lastId": 5977874,
+ "count": 2676
+ },
+ {
+ "symbol": "AIONETH",
+ "priceChange": "0.00001700",
+ "priceChangePercent": "2.157",
+ "weightedAvgPrice": "0.00079942",
+ "prevClosePrice": "0.00078800",
+ "lastPrice": "0.00080500",
+ "lastQty": "336.41000000",
+ "bidPrice": "0.00080500",
+ "bidQty": "376.59000000",
+ "askPrice": "0.00080700",
+ "askQty": "1426.00000000",
+ "openPrice": "0.00078800",
+ "highPrice": "0.00081800",
+ "lowPrice": "0.00078200",
+ "volume": "511881.05000000",
+ "quoteVolume": "409.20933586",
+ "openTime": 1560210241380,
+ "closeTime": 1560296641380,
+ "firstId": 2054407,
+ "lastId": 2055874,
+ "count": 1468
+ },
+ {
+ "symbol": "AIONBNB",
+ "priceChange": "0.00012000",
+ "priceChangePercent": "1.977",
+ "weightedAvgPrice": "0.00614127",
+ "prevClosePrice": "0.00607000",
+ "lastPrice": "0.00619000",
+ "lastQty": "147.20000000",
+ "bidPrice": "0.00617000",
+ "bidQty": "659.50000000",
+ "askPrice": "0.00622000",
+ "askQty": "1964.50000000",
+ "openPrice": "0.00607000",
+ "highPrice": "0.00631000",
+ "lowPrice": "0.00603000",
+ "volume": "423101.20000000",
+ "quoteVolume": "2598.37970100",
+ "openTime": 1560210235396,
+ "closeTime": 1560296635396,
+ "firstId": 340342,
+ "lastId": 340786,
+ "count": 445
+ },
+ {
+ "symbol": "NEBLBTC",
+ "priceChange": "-0.00000110",
+ "priceChangePercent": "-0.625",
+ "weightedAvgPrice": "0.00017488",
+ "prevClosePrice": "0.00017620",
+ "lastPrice": "0.00017500",
+ "lastQty": "7.02000000",
+ "bidPrice": "0.00017440",
+ "bidQty": "238.71000000",
+ "askPrice": "0.00017520",
+ "askQty": "116.19000000",
+ "openPrice": "0.00017610",
+ "highPrice": "0.00018090",
+ "lowPrice": "0.00016950",
+ "volume": "480412.77000000",
+ "quoteVolume": "84.01470241",
+ "openTime": 1560210240408,
+ "closeTime": 1560296640408,
+ "firstId": 5877698,
+ "lastId": 5882155,
+ "count": 4458
+ },
+ {
+ "symbol": "NEBLETH",
+ "priceChange": "-0.00004300",
+ "priceChangePercent": "-0.754",
+ "weightedAvgPrice": "0.00563842",
+ "prevClosePrice": "0.00570000",
+ "lastPrice": "0.00565700",
+ "lastQty": "129.64000000",
+ "bidPrice": "0.00560700",
+ "bidQty": "238.71000000",
+ "askPrice": "0.00565100",
+ "askQty": "160.00000000",
+ "openPrice": "0.00570000",
+ "highPrice": "0.00583300",
+ "lowPrice": "0.00550300",
+ "volume": "38190.19000000",
+ "quoteVolume": "215.33250862",
+ "openTime": 1560210241044,
+ "closeTime": 1560296641044,
+ "firstId": 1501665,
+ "lastId": 1502578,
+ "count": 914
+ },
+ {
+ "symbol": "NEBLBNB",
+ "priceChange": "-0.00042000",
+ "priceChangePercent": "-0.956",
+ "weightedAvgPrice": "0.04388029",
+ "prevClosePrice": "0.04391000",
+ "lastPrice": "0.04349000",
+ "lastQty": "36.00000000",
+ "bidPrice": "0.04311000",
+ "bidQty": "135.60000000",
+ "askPrice": "0.04349000",
+ "askQty": "151.00000000",
+ "openPrice": "0.04391000",
+ "highPrice": "0.04525000",
+ "lowPrice": "0.04268000",
+ "volume": "24989.10000000",
+ "quoteVolume": "1096.52892100",
+ "openTime": 1560210235384,
+ "closeTime": 1560296635384,
+ "firstId": 318599,
+ "lastId": 319119,
+ "count": 521
+ },
+ {
+ "symbol": "BRDBTC",
+ "priceChange": "-0.00000080",
+ "priceChangePercent": "-1.426",
+ "weightedAvgPrice": "0.00005585",
+ "prevClosePrice": "0.00005613",
+ "lastPrice": "0.00005530",
+ "lastQty": "210.00000000",
+ "bidPrice": "0.00005531",
+ "bidQty": "1302.00000000",
+ "askPrice": "0.00005563",
+ "askQty": "1407.00000000",
+ "openPrice": "0.00005610",
+ "highPrice": "0.00005678",
+ "lowPrice": "0.00005523",
+ "volume": "282226.00000000",
+ "quoteVolume": "15.76364416",
+ "openTime": 1560210242332,
+ "closeTime": 1560296642332,
+ "firstId": 3609524,
+ "lastId": 3610956,
+ "count": 1433
+ },
+ {
+ "symbol": "BRDETH",
+ "priceChange": "-0.00004870",
+ "priceChangePercent": "-2.659",
+ "weightedAvgPrice": "0.00180834",
+ "prevClosePrice": "0.00183170",
+ "lastPrice": "0.00178290",
+ "lastQty": "7.00000000",
+ "bidPrice": "0.00178240",
+ "bidQty": "101.00000000",
+ "askPrice": "0.00179420",
+ "askQty": "1256.00000000",
+ "openPrice": "0.00183160",
+ "highPrice": "0.00183300",
+ "lowPrice": "0.00177950",
+ "volume": "17203.00000000",
+ "quoteVolume": "31.10895220",
+ "openTime": 1560210242293,
+ "closeTime": 1560296642293,
+ "firstId": 805624,
+ "lastId": 805826,
+ "count": 203
+ },
+ {
+ "symbol": "BRDBNB",
+ "priceChange": "-0.00038000",
+ "priceChangePercent": "-2.697",
+ "weightedAvgPrice": "0.01397083",
+ "prevClosePrice": "0.01404000",
+ "lastPrice": "0.01371000",
+ "lastQty": "13.00000000",
+ "bidPrice": "0.01368000",
+ "bidQty": "8.40000000",
+ "askPrice": "0.01377000",
+ "askQty": "145.00000000",
+ "openPrice": "0.01409000",
+ "highPrice": "0.01422000",
+ "lowPrice": "0.01371000",
+ "volume": "21360.50000000",
+ "quoteVolume": "298.42394900",
+ "openTime": 1560210236362,
+ "closeTime": 1560296636362,
+ "firstId": 245171,
+ "lastId": 245347,
+ "count": 177
+ },
+ {
+ "symbol": "MCOBNB",
+ "priceChange": "0.01573000",
+ "priceChangePercent": "8.148",
+ "weightedAvgPrice": "0.20501267",
+ "prevClosePrice": "0.19313000",
+ "lastPrice": "0.20879000",
+ "lastQty": "10.10000000",
+ "bidPrice": "0.20719000",
+ "bidQty": "37.70000000",
+ "askPrice": "0.20839000",
+ "askQty": "4.50000000",
+ "openPrice": "0.19306000",
+ "highPrice": "0.21500000",
+ "lowPrice": "0.19306000",
+ "volume": "19929.80000000",
+ "quoteVolume": "4085.86147300",
+ "openTime": 1560210242215,
+ "closeTime": 1560296642215,
+ "firstId": 344921,
+ "lastId": 346457,
+ "count": 1537
+ },
+ {
+ "symbol": "EDOBTC",
+ "priceChange": "0.00000430",
+ "priceChangePercent": "4.135",
+ "weightedAvgPrice": "0.00010733",
+ "prevClosePrice": "0.00010400",
+ "lastPrice": "0.00010830",
+ "lastQty": "557.40000000",
+ "bidPrice": "0.00010830",
+ "bidQty": "184.33000000",
+ "askPrice": "0.00010840",
+ "askQty": "55.01000000",
+ "openPrice": "0.00010400",
+ "highPrice": "0.00011170",
+ "lowPrice": "0.00010340",
+ "volume": "606490.16000000",
+ "quoteVolume": "65.09329546",
+ "openTime": 1560210223409,
+ "closeTime": 1560296623409,
+ "firstId": 3592227,
+ "lastId": 3597936,
+ "count": 5710
+ },
+ {
+ "symbol": "EDOETH",
+ "priceChange": "0.00011600",
+ "priceChangePercent": "3.437",
+ "weightedAvgPrice": "0.00346753",
+ "prevClosePrice": "0.00336800",
+ "lastPrice": "0.00349100",
+ "lastQty": "19.27000000",
+ "bidPrice": "0.00348500",
+ "bidQty": "61.47000000",
+ "askPrice": "0.00351000",
+ "askQty": "9.24000000",
+ "openPrice": "0.00337500",
+ "highPrice": "0.00362100",
+ "lowPrice": "0.00335800",
+ "volume": "54442.46000000",
+ "quoteVolume": "188.78063896",
+ "openTime": 1560210240311,
+ "closeTime": 1560296640311,
+ "firstId": 601819,
+ "lastId": 602653,
+ "count": 835
+ },
+ {
+ "symbol": "WINGSBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00001193",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998602344,
+ "closeTime": 1558085002344,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "WINGSETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00033460",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998602932,
+ "closeTime": 1558085002932,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "NAVBTC",
+ "priceChange": "0.00000100",
+ "priceChangePercent": "3.509",
+ "weightedAvgPrice": "0.00002891",
+ "prevClosePrice": "0.00002840",
+ "lastPrice": "0.00002950",
+ "lastQty": "1490.07000000",
+ "bidPrice": "0.00002930",
+ "bidQty": "2137.32000000",
+ "askPrice": "0.00002950",
+ "askQty": "1273.51000000",
+ "openPrice": "0.00002850",
+ "highPrice": "0.00002960",
+ "lowPrice": "0.00002820",
+ "volume": "1083484.38000000",
+ "quoteVolume": "31.31971411",
+ "openTime": 1560210233964,
+ "closeTime": 1560296633964,
+ "firstId": 3189188,
+ "lastId": 3190932,
+ "count": 1745
+ },
+ {
+ "symbol": "NAVETH",
+ "priceChange": "0.00002700",
+ "priceChangePercent": "2.941",
+ "weightedAvgPrice": "0.00092884",
+ "prevClosePrice": "0.00092200",
+ "lastPrice": "0.00094500",
+ "lastQty": "14.12000000",
+ "bidPrice": "0.00094200",
+ "bidQty": "1058.00000000",
+ "askPrice": "0.00095000",
+ "askQty": "14.12000000",
+ "openPrice": "0.00091800",
+ "highPrice": "0.00095700",
+ "lowPrice": "0.00091000",
+ "volume": "36596.39000000",
+ "quoteVolume": "33.99220182",
+ "openTime": 1560210238674,
+ "closeTime": 1560296638674,
+ "firstId": 695129,
+ "lastId": 695455,
+ "count": 327
+ },
+ {
+ "symbol": "NAVBNB",
+ "priceChange": "0.00015000",
+ "priceChangePercent": "2.116",
+ "weightedAvgPrice": "0.00718410",
+ "prevClosePrice": "0.00711000",
+ "lastPrice": "0.00724000",
+ "lastQty": "28.30000000",
+ "bidPrice": "0.00724000",
+ "bidQty": "251.60000000",
+ "askPrice": "0.00729000",
+ "askQty": "224.80000000",
+ "openPrice": "0.00709000",
+ "highPrice": "0.00734000",
+ "lowPrice": "0.00703000",
+ "volume": "61542.70000000",
+ "quoteVolume": "442.12867500",
+ "openTime": 1560210241586,
+ "closeTime": 1560296641586,
+ "firstId": 207203,
+ "lastId": 207532,
+ "count": 330
+ },
+ {
+ "symbol": "LUNBTC",
+ "priceChange": "0.00001000",
+ "priceChangePercent": "3.086",
+ "weightedAvgPrice": "0.00032517",
+ "prevClosePrice": "0.00032470",
+ "lastPrice": "0.00033400",
+ "lastQty": "15.88000000",
+ "bidPrice": "0.00033400",
+ "bidQty": "43.72000000",
+ "askPrice": "0.00033450",
+ "askQty": "30.87000000",
+ "openPrice": "0.00032400",
+ "highPrice": "0.00033600",
+ "lowPrice": "0.00031560",
+ "volume": "144362.83000000",
+ "quoteVolume": "46.94257390",
+ "openTime": 1560210240485,
+ "closeTime": 1560296640485,
+ "firstId": 5870299,
+ "lastId": 5873686,
+ "count": 3388
+ },
+ {
+ "symbol": "LUNETH",
+ "priceChange": "0.00031800",
+ "priceChangePercent": "3.040",
+ "weightedAvgPrice": "0.01062507",
+ "prevClosePrice": "0.01054900",
+ "lastPrice": "0.01077700",
+ "lastQty": "51.64000000",
+ "bidPrice": "0.01072500",
+ "bidQty": "59.27000000",
+ "askPrice": "0.01078300",
+ "askQty": "187.13000000",
+ "openPrice": "0.01045900",
+ "highPrice": "0.01096300",
+ "lowPrice": "0.01020600",
+ "volume": "9622.53000000",
+ "quoteVolume": "102.24000858",
+ "openTime": 1560210240667,
+ "closeTime": 1560296640667,
+ "firstId": 997746,
+ "lastId": 998160,
+ "count": 415
+ },
+ {
+ "symbol": "TRIGBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00001980",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998603891,
+ "closeTime": 1558085003891,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "TRIGETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00059400",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998604320,
+ "closeTime": 1558085004320,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "TRIGBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.01218000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998604366,
+ "closeTime": 1558085004366,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "APPCBTC",
+ "priceChange": "0.00000023",
+ "priceChangePercent": "1.879",
+ "weightedAvgPrice": "0.00001261",
+ "prevClosePrice": "0.00001224",
+ "lastPrice": "0.00001247",
+ "lastQty": "213.00000000",
+ "bidPrice": "0.00001246",
+ "bidQty": "825.00000000",
+ "askPrice": "0.00001247",
+ "askQty": "6582.00000000",
+ "openPrice": "0.00001224",
+ "highPrice": "0.00001308",
+ "lowPrice": "0.00001215",
+ "volume": "6839719.00000000",
+ "quoteVolume": "86.28034452",
+ "openTime": 1560210240343,
+ "closeTime": 1560296640343,
+ "firstId": 5618030,
+ "lastId": 5623762,
+ "count": 5733
+ },
+ {
+ "symbol": "APPCETH",
+ "priceChange": "0.00000140",
+ "priceChangePercent": "0.352",
+ "weightedAvgPrice": "0.00040776",
+ "prevClosePrice": "0.00039600",
+ "lastPrice": "0.00039960",
+ "lastQty": "20.00000000",
+ "bidPrice": "0.00040060",
+ "bidQty": "825.00000000",
+ "askPrice": "0.00040350",
+ "askQty": "532.00000000",
+ "openPrice": "0.00039820",
+ "highPrice": "0.00042380",
+ "lowPrice": "0.00039410",
+ "volume": "455456.00000000",
+ "quoteVolume": "185.71738710",
+ "openTime": 1560210235237,
+ "closeTime": 1560296635237,
+ "firstId": 1642575,
+ "lastId": 1643394,
+ "count": 820
+ },
+ {
+ "symbol": "APPCBNB",
+ "priceChange": "0.00007000",
+ "priceChangePercent": "2.303",
+ "weightedAvgPrice": "0.00316001",
+ "prevClosePrice": "0.00304000",
+ "lastPrice": "0.00311000",
+ "lastQty": "40.00000000",
+ "bidPrice": "0.00308000",
+ "bidQty": "384.90000000",
+ "askPrice": "0.00310000",
+ "askQty": "898.60000000",
+ "openPrice": "0.00304000",
+ "highPrice": "0.00329000",
+ "lowPrice": "0.00303000",
+ "volume": "211707.60000000",
+ "quoteVolume": "668.99863500",
+ "openTime": 1560210232182,
+ "closeTime": 1560296632182,
+ "firstId": 378049,
+ "lastId": 378457,
+ "count": 409
+ },
+ {
+ "symbol": "VIBEBTC",
+ "priceChange": "-0.00000026",
+ "priceChangePercent": "-4.012",
+ "weightedAvgPrice": "0.00000624",
+ "prevClosePrice": "0.00000649",
+ "lastPrice": "0.00000622",
+ "lastQty": "282.00000000",
+ "bidPrice": "0.00000619",
+ "bidQty": "37881.00000000",
+ "askPrice": "0.00000622",
+ "askQty": "23944.00000000",
+ "openPrice": "0.00000648",
+ "highPrice": "0.00000658",
+ "lowPrice": "0.00000601",
+ "volume": "51887173.00000000",
+ "quoteVolume": "323.77770486",
+ "openTime": 1560210240907,
+ "closeTime": 1560296640907,
+ "firstId": 6227627,
+ "lastId": 6240209,
+ "count": 12583
+ },
+ {
+ "symbol": "VIBEETH",
+ "priceChange": "-0.00000980",
+ "priceChangePercent": "-4.669",
+ "weightedAvgPrice": "0.00020264",
+ "prevClosePrice": "0.00020990",
+ "lastPrice": "0.00020010",
+ "lastQty": "2465.00000000",
+ "bidPrice": "0.00019990",
+ "bidQty": "2465.00000000",
+ "askPrice": "0.00020030",
+ "askQty": "3556.00000000",
+ "openPrice": "0.00020990",
+ "highPrice": "0.00021390",
+ "lowPrice": "0.00019430",
+ "volume": "3958161.00000000",
+ "quoteVolume": "802.07795210",
+ "openTime": 1560210231791,
+ "closeTime": 1560296631791,
+ "firstId": 1722168,
+ "lastId": 1724805,
+ "count": 2638
+ },
+ {
+ "symbol": "RLCBTC",
+ "priceChange": "0.00000060",
+ "priceChangePercent": "1.036",
+ "weightedAvgPrice": "0.00005946",
+ "prevClosePrice": "0.00005810",
+ "lastPrice": "0.00005850",
+ "lastQty": "48.58000000",
+ "bidPrice": "0.00005850",
+ "bidQty": "118.18000000",
+ "askPrice": "0.00005860",
+ "askQty": "313.52000000",
+ "openPrice": "0.00005790",
+ "highPrice": "0.00006150",
+ "lowPrice": "0.00005730",
+ "volume": "1959007.99000000",
+ "quoteVolume": "116.48232459",
+ "openTime": 1560210241737,
+ "closeTime": 1560296641737,
+ "firstId": 3913789,
+ "lastId": 3919607,
+ "count": 5819
+ },
+ {
+ "symbol": "RLCETH",
+ "priceChange": "0.00000200",
+ "priceChangePercent": "0.106",
+ "weightedAvgPrice": "0.00192565",
+ "prevClosePrice": "0.00187100",
+ "lastPrice": "0.00188500",
+ "lastQty": "6.34000000",
+ "bidPrice": "0.00188100",
+ "bidQty": "118.18000000",
+ "askPrice": "0.00188900",
+ "askQty": "277.01000000",
+ "openPrice": "0.00188300",
+ "highPrice": "0.00198900",
+ "lowPrice": "0.00185700",
+ "volume": "112970.54000000",
+ "quoteVolume": "217.54116267",
+ "openTime": 1560210241854,
+ "closeTime": 1560296641854,
+ "firstId": 1026466,
+ "lastId": 1027233,
+ "count": 768
+ },
+ {
+ "symbol": "RLCBNB",
+ "priceChange": "-0.00007000",
+ "priceChangePercent": "-0.481",
+ "weightedAvgPrice": "0.01480986",
+ "prevClosePrice": "0.01452000",
+ "lastPrice": "0.01449000",
+ "lastQty": "141.00000000",
+ "bidPrice": "0.01442000",
+ "bidQty": "118.10000000",
+ "askPrice": "0.01453000",
+ "askQty": "22.40000000",
+ "openPrice": "0.01456000",
+ "highPrice": "0.01535000",
+ "lowPrice": "0.01422000",
+ "volume": "160255.40000000",
+ "quoteVolume": "2373.35961300",
+ "openTime": 1560210238881,
+ "closeTime": 1560296638881,
+ "firstId": 236760,
+ "lastId": 237613,
+ "count": 854
+ },
+ {
+ "symbol": "INSBTC",
+ "priceChange": "0.00000270",
+ "priceChangePercent": "5.921",
+ "weightedAvgPrice": "0.00004716",
+ "prevClosePrice": "0.00004560",
+ "lastPrice": "0.00004830",
+ "lastQty": "1030.00000000",
+ "bidPrice": "0.00004830",
+ "bidQty": "11623.71000000",
+ "askPrice": "0.00004860",
+ "askQty": "2634.07000000",
+ "openPrice": "0.00004560",
+ "highPrice": "0.00004860",
+ "lowPrice": "0.00004510",
+ "volume": "2354884.98000000",
+ "quoteVolume": "111.05673720",
+ "openTime": 1560210242358,
+ "closeTime": 1560296642358,
+ "firstId": 3883516,
+ "lastId": 3888184,
+ "count": 4669
+ },
+ {
+ "symbol": "INSETH",
+ "priceChange": "0.00007800",
+ "priceChangePercent": "5.292",
+ "weightedAvgPrice": "0.00150805",
+ "prevClosePrice": "0.00147400",
+ "lastPrice": "0.00155200",
+ "lastQty": "29.14000000",
+ "bidPrice": "0.00155500",
+ "bidQty": "160.39000000",
+ "askPrice": "0.00155900",
+ "askQty": "7.10000000",
+ "openPrice": "0.00147400",
+ "highPrice": "0.00157100",
+ "lowPrice": "0.00145500",
+ "volume": "465930.50000000",
+ "quoteVolume": "702.64811567",
+ "openTime": 1560210239017,
+ "closeTime": 1560296639017,
+ "firstId": 951472,
+ "lastId": 952922,
+ "count": 1451
+ },
+ {
+ "symbol": "PIVXBTC",
+ "priceChange": "0.00000520",
+ "priceChangePercent": "5.771",
+ "weightedAvgPrice": "0.00009693",
+ "prevClosePrice": "0.00009010",
+ "lastPrice": "0.00009530",
+ "lastQty": "13.79000000",
+ "bidPrice": "0.00009510",
+ "bidQty": "314.24000000",
+ "askPrice": "0.00009520",
+ "askQty": "486.21000000",
+ "openPrice": "0.00009010",
+ "highPrice": "0.00010270",
+ "lowPrice": "0.00008870",
+ "volume": "2338787.40000000",
+ "quoteVolume": "226.69941167",
+ "openTime": 1560210233191,
+ "closeTime": 1560296633191,
+ "firstId": 3122076,
+ "lastId": 3132368,
+ "count": 10293
+ },
+ {
+ "symbol": "PIVXETH",
+ "priceChange": "0.00015100",
+ "priceChangePercent": "5.166",
+ "weightedAvgPrice": "0.00313476",
+ "prevClosePrice": "0.00291600",
+ "lastPrice": "0.00307400",
+ "lastQty": "4.00000000",
+ "bidPrice": "0.00305800",
+ "bidQty": "628.48000000",
+ "askPrice": "0.00308500",
+ "askQty": "293.00000000",
+ "openPrice": "0.00292300",
+ "highPrice": "0.00333700",
+ "lowPrice": "0.00286300",
+ "volume": "132144.87000000",
+ "quoteVolume": "414.24273701",
+ "openTime": 1560210234516,
+ "closeTime": 1560296634516,
+ "firstId": 614311,
+ "lastId": 616014,
+ "count": 1704
+ },
+ {
+ "symbol": "PIVXBNB",
+ "priceChange": "0.00110000",
+ "priceChangePercent": "4.911",
+ "weightedAvgPrice": "0.02399101",
+ "prevClosePrice": "0.02240000",
+ "lastPrice": "0.02350000",
+ "lastQty": "27.50000000",
+ "bidPrice": "0.02350000",
+ "bidQty": "51.00000000",
+ "askPrice": "0.02361000",
+ "askQty": "5.10000000",
+ "openPrice": "0.02240000",
+ "highPrice": "0.02577000",
+ "lowPrice": "0.02211000",
+ "volume": "61801.10000000",
+ "quoteVolume": "1482.67100400",
+ "openTime": 1560210229236,
+ "closeTime": 1560296629236,
+ "firstId": 160023,
+ "lastId": 160428,
+ "count": 406
+ },
+ {
+ "symbol": "IOSTBTC",
+ "priceChange": "-0.00000004",
+ "priceChangePercent": "-2.721",
+ "weightedAvgPrice": "0.00000143",
+ "prevClosePrice": "0.00000147",
+ "lastPrice": "0.00000143",
+ "lastQty": "41131.00000000",
+ "bidPrice": "0.00000143",
+ "bidQty": "3520480.00000000",
+ "askPrice": "0.00000144",
+ "askQty": "2481197.00000000",
+ "openPrice": "0.00000147",
+ "highPrice": "0.00000147",
+ "lowPrice": "0.00000141",
+ "volume": "204053613.00000000",
+ "quoteVolume": "291.89150089",
+ "openTime": 1560210242300,
+ "closeTime": 1560296642300,
+ "firstId": 11679184,
+ "lastId": 11684237,
+ "count": 5054
+ },
+ {
+ "symbol": "IOSTETH",
+ "priceChange": "-0.00000111",
+ "priceChangePercent": "-2.345",
+ "weightedAvgPrice": "0.00004631",
+ "prevClosePrice": "0.00004735",
+ "lastPrice": "0.00004622",
+ "lastQty": "18858.00000000",
+ "bidPrice": "0.00004610",
+ "bidQty": "70819.00000000",
+ "askPrice": "0.00004621",
+ "askQty": "1142.00000000",
+ "openPrice": "0.00004733",
+ "highPrice": "0.00004760",
+ "lowPrice": "0.00004567",
+ "volume": "17935782.00000000",
+ "quoteVolume": "830.61419184",
+ "openTime": 1560210234183,
+ "closeTime": 1560296634183,
+ "firstId": 3841279,
+ "lastId": 3843116,
+ "count": 1838
+ },
+ {
+ "symbol": "CHATBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00000195",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998608796,
+ "closeTime": 1558085008796,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "CHATETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00006585",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998609006,
+ "closeTime": 1558085009006,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "STEEMBTC",
+ "priceChange": "0.00000300",
+ "priceChangePercent": "5.848",
+ "weightedAvgPrice": "0.00005379",
+ "prevClosePrice": "0.00005150",
+ "lastPrice": "0.00005430",
+ "lastQty": "49.37000000",
+ "bidPrice": "0.00005420",
+ "bidQty": "231.37000000",
+ "askPrice": "0.00005440",
+ "askQty": "98.87000000",
+ "openPrice": "0.00005130",
+ "highPrice": "0.00005600",
+ "lowPrice": "0.00005080",
+ "volume": "2636532.56000000",
+ "quoteVolume": "141.81419367",
+ "openTime": 1560210242273,
+ "closeTime": 1560296642273,
+ "firstId": 4928910,
+ "lastId": 4937666,
+ "count": 8757
+ },
+ {
+ "symbol": "STEEMETH",
+ "priceChange": "0.00008800",
+ "priceChangePercent": "5.298",
+ "weightedAvgPrice": "0.00173766",
+ "prevClosePrice": "0.00166100",
+ "lastPrice": "0.00174900",
+ "lastQty": "134.63000000",
+ "bidPrice": "0.00174500",
+ "bidQty": "149.25000000",
+ "askPrice": "0.00175700",
+ "askQty": "1485.00000000",
+ "openPrice": "0.00166100",
+ "highPrice": "0.00181300",
+ "lowPrice": "0.00164100",
+ "volume": "208345.44000000",
+ "quoteVolume": "362.03356969",
+ "openTime": 1560210234646,
+ "closeTime": 1560296634646,
+ "firstId": 1075343,
+ "lastId": 1076852,
+ "count": 1510
+ },
+ {
+ "symbol": "STEEMBNB",
+ "priceChange": "0.00062000",
+ "priceChangePercent": "4.832",
+ "weightedAvgPrice": "0.01336950",
+ "prevClosePrice": "0.01283000",
+ "lastPrice": "0.01345000",
+ "lastQty": "23.70000000",
+ "bidPrice": "0.01339000",
+ "bidQty": "3319.10000000",
+ "askPrice": "0.01351000",
+ "askQty": "78.50000000",
+ "openPrice": "0.01283000",
+ "highPrice": "0.01393000",
+ "lowPrice": "0.01275000",
+ "volume": "159700.10000000",
+ "quoteVolume": "2135.11080600",
+ "openTime": 1560210238034,
+ "closeTime": 1560296638034,
+ "firstId": 276111,
+ "lastId": 277075,
+ "count": 965
+ },
+ {
+ "symbol": "NANOBTC",
+ "priceChange": "0.00000070",
+ "priceChangePercent": "0.354",
+ "weightedAvgPrice": "0.00019580",
+ "prevClosePrice": "0.00019800",
+ "lastPrice": "0.00019850",
+ "lastQty": "226.65000000",
+ "bidPrice": "0.00019840",
+ "bidQty": "20.25000000",
+ "askPrice": "0.00019880",
+ "askQty": "40.58000000",
+ "openPrice": "0.00019780",
+ "highPrice": "0.00020020",
+ "lowPrice": "0.00019240",
+ "volume": "1330494.93000000",
+ "quoteVolume": "260.50577310",
+ "openTime": 1560210241556,
+ "closeTime": 1560296641556,
+ "firstId": 17167460,
+ "lastId": 17178592,
+ "count": 11133
+ },
+ {
+ "symbol": "NANOETH",
+ "priceChange": "0.00000200",
+ "priceChangePercent": "0.031",
+ "weightedAvgPrice": "0.00634503",
+ "prevClosePrice": "0.00643100",
+ "lastPrice": "0.00640500",
+ "lastQty": "2.23000000",
+ "bidPrice": "0.00638600",
+ "bidQty": "259.01000000",
+ "askPrice": "0.00640900",
+ "askQty": "3.46000000",
+ "openPrice": "0.00640300",
+ "highPrice": "0.00645400",
+ "lowPrice": "0.00621700",
+ "volume": "71013.55000000",
+ "quoteVolume": "450.58326638",
+ "openTime": 1560210241318,
+ "closeTime": 1560296641318,
+ "firstId": 4481452,
+ "lastId": 4483058,
+ "count": 1607
+ },
+ {
+ "symbol": "NANOBNB",
+ "priceChange": "-0.00020000",
+ "priceChangePercent": "-0.406",
+ "weightedAvgPrice": "0.04873005",
+ "prevClosePrice": "0.04950000",
+ "lastPrice": "0.04910000",
+ "lastQty": "17.89000000",
+ "bidPrice": "0.04900000",
+ "bidQty": "20.40000000",
+ "askPrice": "0.04920000",
+ "askQty": "92.84000000",
+ "openPrice": "0.04930000",
+ "highPrice": "0.04980000",
+ "lowPrice": "0.04800000",
+ "volume": "57450.53000000",
+ "quoteVolume": "2799.56696700",
+ "openTime": 1560210225062,
+ "closeTime": 1560296625062,
+ "firstId": 923790,
+ "lastId": 924704,
+ "count": 915
+ },
+ {
+ "symbol": "VIABTC",
+ "priceChange": "0.00000100",
+ "priceChangePercent": "1.362",
+ "weightedAvgPrice": "0.00007256",
+ "prevClosePrice": "0.00007370",
+ "lastPrice": "0.00007440",
+ "lastQty": "285.00000000",
+ "bidPrice": "0.00007420",
+ "bidQty": "19.64000000",
+ "askPrice": "0.00007460",
+ "askQty": "480.55000000",
+ "openPrice": "0.00007340",
+ "highPrice": "0.00007480",
+ "lowPrice": "0.00007100",
+ "volume": "697158.15000000",
+ "quoteVolume": "50.58387511",
+ "openTime": 1560210241421,
+ "closeTime": 1560296641421,
+ "firstId": 3187376,
+ "lastId": 3189889,
+ "count": 2514
+ },
+ {
+ "symbol": "VIAETH",
+ "priceChange": "0.00002000",
+ "priceChangePercent": "0.841",
+ "weightedAvgPrice": "0.00234691",
+ "prevClosePrice": "0.00237800",
+ "lastPrice": "0.00239700",
+ "lastQty": "11.22000000",
+ "bidPrice": "0.00238100",
+ "bidQty": "109.30000000",
+ "askPrice": "0.00240100",
+ "askQty": "11.14000000",
+ "openPrice": "0.00237700",
+ "highPrice": "0.00241000",
+ "lowPrice": "0.00229800",
+ "volume": "39480.19000000",
+ "quoteVolume": "92.65629448",
+ "openTime": 1560210235854,
+ "closeTime": 1560296635854,
+ "firstId": 581747,
+ "lastId": 582115,
+ "count": 369
+ },
+ {
+ "symbol": "VIABNB",
+ "priceChange": "-0.00016000",
+ "priceChangePercent": "-0.858",
+ "weightedAvgPrice": "0.01826489",
+ "prevClosePrice": "0.01831000",
+ "lastPrice": "0.01849000",
+ "lastQty": "53.70000000",
+ "bidPrice": "0.01826000",
+ "bidQty": "489.00000000",
+ "askPrice": "0.01849000",
+ "askQty": "6.90000000",
+ "openPrice": "0.01865000",
+ "highPrice": "0.01865000",
+ "lowPrice": "0.01769000",
+ "volume": "8092.50000000",
+ "quoteVolume": "147.80863900",
+ "openTime": 1560210241313,
+ "closeTime": 1560296641313,
+ "firstId": 165166,
+ "lastId": 165257,
+ "count": 92
+ },
+ {
+ "symbol": "BLZBTC",
+ "priceChange": "-0.00000020",
+ "priceChangePercent": "-2.454",
+ "weightedAvgPrice": "0.00000796",
+ "prevClosePrice": "0.00000810",
+ "lastPrice": "0.00000795",
+ "lastQty": "172.00000000",
+ "bidPrice": "0.00000795",
+ "bidQty": "11780.00000000",
+ "askPrice": "0.00000797",
+ "askQty": "3354.00000000",
+ "openPrice": "0.00000815",
+ "highPrice": "0.00000820",
+ "lowPrice": "0.00000786",
+ "volume": "7029639.00000000",
+ "quoteVolume": "55.97081665",
+ "openTime": 1560210235228,
+ "closeTime": 1560296635228,
+ "firstId": 4515565,
+ "lastId": 4518645,
+ "count": 3081
+ },
+ {
+ "symbol": "BLZETH",
+ "priceChange": "-0.00000819",
+ "priceChangePercent": "-3.091",
+ "weightedAvgPrice": "0.00025882",
+ "prevClosePrice": "0.00026220",
+ "lastPrice": "0.00025674",
+ "lastQty": "50.00000000",
+ "bidPrice": "0.00025565",
+ "bidQty": "53.00000000",
+ "askPrice": "0.00025686",
+ "askQty": "13480.00000000",
+ "openPrice": "0.00026493",
+ "highPrice": "0.00026593",
+ "lowPrice": "0.00025375",
+ "volume": "498823.00000000",
+ "quoteVolume": "129.10421385",
+ "openTime": 1560210242243,
+ "closeTime": 1560296642243,
+ "firstId": 1742794,
+ "lastId": 1743487,
+ "count": 694
+ },
+ {
+ "symbol": "BLZBNB",
+ "priceChange": "-0.00006000",
+ "priceChangePercent": "-2.970",
+ "weightedAvgPrice": "0.00199165",
+ "prevClosePrice": "0.00202000",
+ "lastPrice": "0.00196000",
+ "lastQty": "6890.40000000",
+ "bidPrice": "0.00196000",
+ "bidQty": "2211.60000000",
+ "askPrice": "0.00198000",
+ "askQty": "4112.00000000",
+ "openPrice": "0.00202000",
+ "highPrice": "0.00206000",
+ "lowPrice": "0.00196000",
+ "volume": "175646.50000000",
+ "quoteVolume": "349.82593700",
+ "openTime": 1560210219068,
+ "closeTime": 1560296619068,
+ "firstId": 243549,
+ "lastId": 243768,
+ "count": 220
+ },
+ {
+ "symbol": "AEBTC",
+ "priceChange": "-0.00000140",
+ "priceChangePercent": "-2.124",
+ "weightedAvgPrice": "0.00006461",
+ "prevClosePrice": "0.00006570",
+ "lastPrice": "0.00006450",
+ "lastQty": "35.20000000",
+ "bidPrice": "0.00006440",
+ "bidQty": "5780.70000000",
+ "askPrice": "0.00006450",
+ "askQty": "134.79000000",
+ "openPrice": "0.00006590",
+ "highPrice": "0.00006600",
+ "lowPrice": "0.00006360",
+ "volume": "1058143.44000000",
+ "quoteVolume": "68.36547662",
+ "openTime": 1560210239965,
+ "closeTime": 1560296639965,
+ "firstId": 5415691,
+ "lastId": 5419658,
+ "count": 3968
+ },
+ {
+ "symbol": "AEETH",
+ "priceChange": "-0.00004300",
+ "priceChangePercent": "-2.021",
+ "weightedAvgPrice": "0.00208631",
+ "prevClosePrice": "0.00213900",
+ "lastPrice": "0.00208500",
+ "lastQty": "5.77000000",
+ "bidPrice": "0.00207100",
+ "bidQty": "532.93000000",
+ "askPrice": "0.00208300",
+ "askQty": "119.69000000",
+ "openPrice": "0.00212800",
+ "highPrice": "0.00214000",
+ "lowPrice": "0.00204800",
+ "volume": "103414.29000000",
+ "quoteVolume": "215.75401429",
+ "openTime": 1560210236551,
+ "closeTime": 1560296636551,
+ "firstId": 1907118,
+ "lastId": 1907915,
+ "count": 798
+ },
+ {
+ "symbol": "AEBNB",
+ "priceChange": "-0.00053000",
+ "priceChangePercent": "-3.220",
+ "weightedAvgPrice": "0.01631387",
+ "prevClosePrice": "0.01639000",
+ "lastPrice": "0.01593000",
+ "lastQty": "15.80000000",
+ "bidPrice": "0.01590000",
+ "bidQty": "563.00000000",
+ "askPrice": "0.01603000",
+ "askQty": "30.70000000",
+ "openPrice": "0.01646000",
+ "highPrice": "0.01670000",
+ "lowPrice": "0.01590000",
+ "volume": "72552.00000000",
+ "quoteVolume": "1183.60359600",
+ "openTime": 1560210230011,
+ "closeTime": 1560296630011,
+ "firstId": 259320,
+ "lastId": 259758,
+ "count": 439
+ },
+ {
+ "symbol": "RPXBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00000224",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998613312,
+ "closeTime": 1558085013312,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "RPXETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00005449",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998613666,
+ "closeTime": 1558085013666,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "RPXBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00145700",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998614011,
+ "closeTime": 1558085014011,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "NCASHBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00000027",
+ "prevClosePrice": "0.00000027",
+ "lastPrice": "0.00000027",
+ "lastQty": "2243184.00000000",
+ "bidPrice": "0.00000027",
+ "bidQty": "5757767.00000000",
+ "askPrice": "0.00000028",
+ "askQty": "57699949.00000000",
+ "openPrice": "0.00000027",
+ "highPrice": "0.00000028",
+ "lowPrice": "0.00000026",
+ "volume": "72811909.00000000",
+ "quoteVolume": "19.74466494",
+ "openTime": 1560210230359,
+ "closeTime": 1560296630359,
+ "firstId": 6550415,
+ "lastId": 6550920,
+ "count": 506
+ },
+ {
+ "symbol": "NCASHETH",
+ "priceChange": "-0.00000020",
+ "priceChangePercent": "-2.227",
+ "weightedAvgPrice": "0.00000880",
+ "prevClosePrice": "0.00000899",
+ "lastPrice": "0.00000878",
+ "lastQty": "3000.00000000",
+ "bidPrice": "0.00000877",
+ "bidQty": "47350.00000000",
+ "askPrice": "0.00000886",
+ "askQty": "28908.00000000",
+ "openPrice": "0.00000898",
+ "highPrice": "0.00000904",
+ "lowPrice": "0.00000876",
+ "volume": "27119232.00000000",
+ "quoteVolume": "238.77247529",
+ "openTime": 1560210195146,
+ "closeTime": 1560296595146,
+ "firstId": 2193896,
+ "lastId": 2194579,
+ "count": 684
+ },
+ {
+ "symbol": "NCASHBNB",
+ "priceChange": "-0.00000160",
+ "priceChangePercent": "-2.305",
+ "weightedAvgPrice": "0.00006772",
+ "prevClosePrice": "0.00006920",
+ "lastPrice": "0.00006780",
+ "lastQty": "8211.00000000",
+ "bidPrice": "0.00006740",
+ "bidQty": "10000.00000000",
+ "askPrice": "0.00006780",
+ "askQty": "14080.00000000",
+ "openPrice": "0.00006940",
+ "highPrice": "0.00006980",
+ "lowPrice": "0.00006670",
+ "volume": "17666754.00000000",
+ "quoteVolume": "1196.43401920",
+ "openTime": 1560210235434,
+ "closeTime": 1560296635434,
+ "firstId": 1233503,
+ "lastId": 1233803,
+ "count": 301
+ },
+ {
+ "symbol": "POABTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00000441",
+ "prevClosePrice": "0.00000435",
+ "lastPrice": "0.00000435",
+ "lastQty": "1628.00000000",
+ "bidPrice": "0.00000434",
+ "bidQty": "1396.00000000",
+ "askPrice": "0.00000435",
+ "askQty": "230.00000000",
+ "openPrice": "0.00000435",
+ "highPrice": "0.00000463",
+ "lowPrice": "0.00000427",
+ "volume": "15486295.00000000",
+ "quoteVolume": "68.30504707",
+ "openTime": 1560210241429,
+ "closeTime": 1560296641429,
+ "firstId": 4173600,
+ "lastId": 4177162,
+ "count": 3563
+ },
+ {
+ "symbol": "POAETH",
+ "priceChange": "-0.00000195",
+ "priceChangePercent": "-1.378",
+ "weightedAvgPrice": "0.00014342",
+ "prevClosePrice": "0.00014141",
+ "lastPrice": "0.00013955",
+ "lastQty": "78.00000000",
+ "bidPrice": "0.00013955",
+ "bidQty": "1658.00000000",
+ "askPrice": "0.00014005",
+ "askQty": "22635.00000000",
+ "openPrice": "0.00014150",
+ "highPrice": "0.00015226",
+ "lowPrice": "0.00013815",
+ "volume": "1277268.00000000",
+ "quoteVolume": "183.18021672",
+ "openTime": 1560210241269,
+ "closeTime": 1560296641269,
+ "firstId": 1421107,
+ "lastId": 1422191,
+ "count": 1085
+ },
+ {
+ "symbol": "POABNB",
+ "priceChange": "-0.00003000",
+ "priceChangePercent": "-2.727",
+ "weightedAvgPrice": "0.00110010",
+ "prevClosePrice": "0.00109000",
+ "lastPrice": "0.00107000",
+ "lastQty": "302.10000000",
+ "bidPrice": "0.00107000",
+ "bidQty": "20575.90000000",
+ "askPrice": "0.00109000",
+ "askQty": "18069.40000000",
+ "openPrice": "0.00110000",
+ "highPrice": "0.00116000",
+ "lowPrice": "0.00106000",
+ "volume": "670753.90000000",
+ "quoteVolume": "737.89899500",
+ "openTime": 1560210232885,
+ "closeTime": 1560296632885,
+ "firstId": 283835,
+ "lastId": 284095,
+ "count": 261
+ },
+ {
+ "symbol": "ZILBTC",
+ "priceChange": "-0.00000002",
+ "priceChangePercent": "-0.678",
+ "weightedAvgPrice": "0.00000301",
+ "prevClosePrice": "0.00000295",
+ "lastPrice": "0.00000293",
+ "lastQty": "204668.00000000",
+ "bidPrice": "0.00000293",
+ "bidQty": "65984.00000000",
+ "askPrice": "0.00000294",
+ "askQty": "646113.00000000",
+ "openPrice": "0.00000295",
+ "highPrice": "0.00000312",
+ "lowPrice": "0.00000290",
+ "volume": "421087779.00000000",
+ "quoteVolume": "1266.80419539",
+ "openTime": 1560210242368,
+ "closeTime": 1560296642368,
+ "firstId": 11685563,
+ "lastId": 11713414,
+ "count": 27852
+ },
+ {
+ "symbol": "ZILETH",
+ "priceChange": "-0.00000097",
+ "priceChangePercent": "-1.015",
+ "weightedAvgPrice": "0.00009756",
+ "prevClosePrice": "0.00009593",
+ "lastPrice": "0.00009461",
+ "lastQty": "151.00000000",
+ "bidPrice": "0.00009431",
+ "bidQty": "14654.00000000",
+ "askPrice": "0.00009471",
+ "askQty": "391.00000000",
+ "openPrice": "0.00009558",
+ "highPrice": "0.00010076",
+ "lowPrice": "0.00009379",
+ "volume": "26096213.00000000",
+ "quoteVolume": "2546.05525206",
+ "openTime": 1560210241967,
+ "closeTime": 1560296641967,
+ "firstId": 3637373,
+ "lastId": 3641916,
+ "count": 4544
+ },
+ {
+ "symbol": "ZILBNB",
+ "priceChange": "-0.00001200",
+ "priceChangePercent": "-1.626",
+ "weightedAvgPrice": "0.00074978",
+ "prevClosePrice": "0.00073800",
+ "lastPrice": "0.00072600",
+ "lastQty": "3353.00000000",
+ "bidPrice": "0.00072300",
+ "bidQty": "39011.00000000",
+ "askPrice": "0.00072700",
+ "askQty": "11173.00000000",
+ "openPrice": "0.00073800",
+ "highPrice": "0.00077800",
+ "lowPrice": "0.00072200",
+ "volume": "18757487.00000000",
+ "quoteVolume": "14063.90268200",
+ "openTime": 1560210234058,
+ "closeTime": 1560296634058,
+ "firstId": 712427,
+ "lastId": 715590,
+ "count": 3164
+ },
+ {
+ "symbol": "ONTBTC",
+ "priceChange": "0.00000450",
+ "priceChangePercent": "2.561",
+ "weightedAvgPrice": "0.00017836",
+ "prevClosePrice": "0.00017570",
+ "lastPrice": "0.00018020",
+ "lastQty": "419.51000000",
+ "bidPrice": "0.00018000",
+ "bidQty": "0.45000000",
+ "askPrice": "0.00018020",
+ "askQty": "476.08000000",
+ "openPrice": "0.00017570",
+ "highPrice": "0.00018400",
+ "lowPrice": "0.00017290",
+ "volume": "3030440.89000000",
+ "quoteVolume": "540.50386304",
+ "openTime": 1560210242348,
+ "closeTime": 1560296642348,
+ "firstId": 18778057,
+ "lastId": 18796441,
+ "count": 18385
+ },
+ {
+ "symbol": "ONTETH",
+ "priceChange": "0.00010700",
+ "priceChangePercent": "1.880",
+ "weightedAvgPrice": "0.00574767",
+ "prevClosePrice": "0.00569600",
+ "lastPrice": "0.00580000",
+ "lastQty": "68.28000000",
+ "bidPrice": "0.00579000",
+ "bidQty": "482.66000000",
+ "askPrice": "0.00580000",
+ "askQty": "84.66000000",
+ "openPrice": "0.00569300",
+ "highPrice": "0.00596700",
+ "lowPrice": "0.00560000",
+ "volume": "140820.33000000",
+ "quoteVolume": "809.38927147",
+ "openTime": 1560210240667,
+ "closeTime": 1560296640667,
+ "firstId": 4512361,
+ "lastId": 4515042,
+ "count": 2682
+ },
+ {
+ "symbol": "ONTBNB",
+ "priceChange": "0.00060000",
+ "priceChangePercent": "1.369",
+ "weightedAvgPrice": "0.04449367",
+ "prevClosePrice": "0.04383000",
+ "lastPrice": "0.04444000",
+ "lastQty": "185.00000000",
+ "bidPrice": "0.04441000",
+ "bidQty": "202.00000000",
+ "askPrice": "0.04463000",
+ "askQty": "250.50000000",
+ "openPrice": "0.04384000",
+ "highPrice": "0.04575000",
+ "lowPrice": "0.04336000",
+ "volume": "120419.70000000",
+ "quoteVolume": "5357.91380400",
+ "openTime": 1560210240665,
+ "closeTime": 1560296640665,
+ "firstId": 1311302,
+ "lastId": 1312815,
+ "count": 1514
+ },
+ {
+ "symbol": "STORMBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00000042",
+ "prevClosePrice": "0.00000043",
+ "lastPrice": "0.00000042",
+ "lastQty": "16565.00000000",
+ "bidPrice": "0.00000042",
+ "bidQty": "5066391.00000000",
+ "askPrice": "0.00000043",
+ "askQty": "24819613.00000000",
+ "openPrice": "0.00000042",
+ "highPrice": "0.00000043",
+ "lowPrice": "0.00000041",
+ "volume": "77742280.00000000",
+ "quoteVolume": "32.57151012",
+ "openTime": 1560210242231,
+ "closeTime": 1560296642231,
+ "firstId": 5976229,
+ "lastId": 5977231,
+ "count": 1003
+ },
+ {
+ "symbol": "STORMETH",
+ "priceChange": "-0.00000015",
+ "priceChangePercent": "-1.096",
+ "weightedAvgPrice": "0.00001361",
+ "prevClosePrice": "0.00001369",
+ "lastPrice": "0.00001354",
+ "lastQty": "18271.00000000",
+ "bidPrice": "0.00001354",
+ "bidQty": "876.00000000",
+ "askPrice": "0.00001372",
+ "askQty": "20321.00000000",
+ "openPrice": "0.00001369",
+ "highPrice": "0.00001385",
+ "lowPrice": "0.00001340",
+ "volume": "4056663.00000000",
+ "quoteVolume": "55.22138777",
+ "openTime": 1560210239417,
+ "closeTime": 1560296639417,
+ "firstId": 1673150,
+ "lastId": 1673436,
+ "count": 287
+ },
+ {
+ "symbol": "STORMBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00010537",
+ "prevClosePrice": "0.00010600",
+ "lastPrice": "0.00010500",
+ "lastQty": "450710.00000000",
+ "bidPrice": "0.00010400",
+ "bidQty": "2517688.00000000",
+ "askPrice": "0.00010500",
+ "askQty": "81301.00000000",
+ "openPrice": "0.00010500",
+ "highPrice": "0.00010800",
+ "lowPrice": "0.00010300",
+ "volume": "13766992.00000000",
+ "quoteVolume": "1450.59325100",
+ "openTime": 1560210238656,
+ "closeTime": 1560296638656,
+ "firstId": 424817,
+ "lastId": 425122,
+ "count": 306
+ },
+ {
+ "symbol": "QTUMBNB",
+ "priceChange": "-0.00153000",
+ "priceChangePercent": "-1.534",
+ "weightedAvgPrice": "0.09938148",
+ "prevClosePrice": "0.10023000",
+ "lastPrice": "0.09823000",
+ "lastQty": "4.30000000",
+ "bidPrice": "0.09816000",
+ "bidQty": "2.50000000",
+ "askPrice": "0.09838000",
+ "askQty": "37.30000000",
+ "openPrice": "0.09976000",
+ "highPrice": "0.10336000",
+ "lowPrice": "0.09766000",
+ "volume": "21468.40000000",
+ "quoteVolume": "2133.56145900",
+ "openTime": 1560210236878,
+ "closeTime": 1560296636878,
+ "firstId": 391967,
+ "lastId": 392527,
+ "count": 561
+ },
+ {
+ "symbol": "QTUMUSDT",
+ "priceChange": "-0.06000000",
+ "priceChangePercent": "-1.881",
+ "weightedAvgPrice": "3.13777177",
+ "prevClosePrice": "3.18800000",
+ "lastPrice": "3.12900000",
+ "lastQty": "9.91200000",
+ "bidPrice": "3.13000000",
+ "bidQty": "161.47000000",
+ "askPrice": "3.13700000",
+ "askQty": "200.00000000",
+ "openPrice": "3.18900000",
+ "highPrice": "3.26800000",
+ "lowPrice": "3.03100000",
+ "volume": "511960.96500000",
+ "quoteVolume": "1606416.66501400",
+ "openTime": 1560210242033,
+ "closeTime": 1560296642033,
+ "firstId": 4204886,
+ "lastId": 4210948,
+ "count": 6063
+ },
+ {
+ "symbol": "XEMBTC",
+ "priceChange": "-0.00000003",
+ "priceChangePercent": "-0.284",
+ "weightedAvgPrice": "0.00001055",
+ "prevClosePrice": "0.00001056",
+ "lastPrice": "0.00001053",
+ "lastQty": "185.00000000",
+ "bidPrice": "0.00001052",
+ "bidQty": "25852.00000000",
+ "askPrice": "0.00001054",
+ "askQty": "1000.00000000",
+ "openPrice": "0.00001056",
+ "highPrice": "0.00001080",
+ "lowPrice": "0.00001045",
+ "volume": "9582988.00000000",
+ "quoteVolume": "101.13021306",
+ "openTime": 1560210242153,
+ "closeTime": 1560296642153,
+ "firstId": 5463048,
+ "lastId": 5469186,
+ "count": 6139
+ },
+ {
+ "symbol": "XEMETH",
+ "priceChange": "-0.00000251",
+ "priceChangePercent": "-0.734",
+ "weightedAvgPrice": "0.00034107",
+ "prevClosePrice": "0.00034044",
+ "lastPrice": "0.00033944",
+ "lastQty": "33.00000000",
+ "bidPrice": "0.00033891",
+ "bidQty": "2461.00000000",
+ "askPrice": "0.00033995",
+ "askQty": "2461.00000000",
+ "openPrice": "0.00034195",
+ "highPrice": "0.00034923",
+ "lowPrice": "0.00033765",
+ "volume": "463099.00000000",
+ "quoteVolume": "157.95008406",
+ "openTime": 1560210242265,
+ "closeTime": 1560296642265,
+ "firstId": 1188235,
+ "lastId": 1188877,
+ "count": 643
+ },
+ {
+ "symbol": "XEMBNB",
+ "priceChange": "-0.00004000",
+ "priceChangePercent": "-1.515",
+ "weightedAvgPrice": "0.00263935",
+ "prevClosePrice": "0.00264000",
+ "lastPrice": "0.00260000",
+ "lastQty": "38.60000000",
+ "bidPrice": "0.00260000",
+ "bidQty": "10.20000000",
+ "askPrice": "0.00261000",
+ "askQty": "1263.20000000",
+ "openPrice": "0.00264000",
+ "highPrice": "0.00269000",
+ "lowPrice": "0.00259000",
+ "volume": "280213.60000000",
+ "quoteVolume": "739.58064500",
+ "openTime": 1560210242072,
+ "closeTime": 1560296642072,
+ "firstId": 328287,
+ "lastId": 328587,
+ "count": 301
+ },
+ {
+ "symbol": "WANBTC",
+ "priceChange": "-0.00000250",
+ "priceChangePercent": "-4.296",
+ "weightedAvgPrice": "0.00005665",
+ "prevClosePrice": "0.00005830",
+ "lastPrice": "0.00005570",
+ "lastQty": "6.69000000",
+ "bidPrice": "0.00005560",
+ "bidQty": "6897.89000000",
+ "askPrice": "0.00005570",
+ "askQty": "9656.19000000",
+ "openPrice": "0.00005820",
+ "highPrice": "0.00005900",
+ "lowPrice": "0.00005440",
+ "volume": "3497126.30000000",
+ "quoteVolume": "198.11148390",
+ "openTime": 1560210232909,
+ "closeTime": 1560296632909,
+ "firstId": 8870034,
+ "lastId": 8881148,
+ "count": 11115
+ },
+ {
+ "symbol": "WANETH",
+ "priceChange": "-0.00009500",
+ "priceChangePercent": "-5.029",
+ "weightedAvgPrice": "0.00184349",
+ "prevClosePrice": "0.00188200",
+ "lastPrice": "0.00179400",
+ "lastQty": "32.93000000",
+ "bidPrice": "0.00179000",
+ "bidQty": "145.62000000",
+ "askPrice": "0.00179800",
+ "askQty": "142.13000000",
+ "openPrice": "0.00188900",
+ "highPrice": "0.00190900",
+ "lowPrice": "0.00177400",
+ "volume": "337032.85000000",
+ "quoteVolume": "621.31686368",
+ "openTime": 1560210242039,
+ "closeTime": 1560296642039,
+ "firstId": 2469859,
+ "lastId": 2474642,
+ "count": 4784
+ },
+ {
+ "symbol": "WANBNB",
+ "priceChange": "-0.00077000",
+ "priceChangePercent": "-5.299",
+ "weightedAvgPrice": "0.01415863",
+ "prevClosePrice": "0.01453000",
+ "lastPrice": "0.01376000",
+ "lastQty": "127.10000000",
+ "bidPrice": "0.01376000",
+ "bidQty": "7261.40000000",
+ "askPrice": "0.01383000",
+ "askQty": "636.70000000",
+ "openPrice": "0.01453000",
+ "highPrice": "0.01476000",
+ "lowPrice": "0.01362000",
+ "volume": "163385.30000000",
+ "quoteVolume": "2313.31233400",
+ "openTime": 1560210235789,
+ "closeTime": 1560296635789,
+ "firstId": 360854,
+ "lastId": 361518,
+ "count": 665
+ },
+ {
+ "symbol": "WPRBTC",
+ "priceChange": "-0.00000001",
+ "priceChangePercent": "-0.552",
+ "weightedAvgPrice": "0.00000190",
+ "prevClosePrice": "0.00000181",
+ "lastPrice": "0.00000180",
+ "lastQty": "4415.00000000",
+ "bidPrice": "0.00000180",
+ "bidQty": "306243.00000000",
+ "askPrice": "0.00000181",
+ "askQty": "176705.00000000",
+ "openPrice": "0.00000181",
+ "highPrice": "0.00000206",
+ "lowPrice": "0.00000178",
+ "volume": "78348493.00000000",
+ "quoteVolume": "148.57341497",
+ "openTime": 1560210242117,
+ "closeTime": 1560296642117,
+ "firstId": 3292517,
+ "lastId": 3300506,
+ "count": 7990
+ },
+ {
+ "symbol": "WPRETH",
+ "priceChange": "-0.00000030",
+ "priceChangePercent": "-0.512",
+ "weightedAvgPrice": "0.00006079",
+ "prevClosePrice": "0.00005863",
+ "lastPrice": "0.00005833",
+ "lastQty": "400.00000000",
+ "bidPrice": "0.00005791",
+ "bidQty": "2726.00000000",
+ "askPrice": "0.00005833",
+ "askQty": "452.00000000",
+ "openPrice": "0.00005863",
+ "highPrice": "0.00006678",
+ "lowPrice": "0.00005716",
+ "volume": "7858456.00000000",
+ "quoteVolume": "477.75044754",
+ "openTime": 1560210230383,
+ "closeTime": 1560296630383,
+ "firstId": 895687,
+ "lastId": 897555,
+ "count": 1869
+ },
+ {
+ "symbol": "QLCBTC",
+ "priceChange": "0.00000005",
+ "priceChangePercent": "0.965",
+ "weightedAvgPrice": "0.00000517",
+ "prevClosePrice": "0.00000517",
+ "lastPrice": "0.00000523",
+ "lastQty": "194.00000000",
+ "bidPrice": "0.00000522",
+ "bidQty": "770.00000000",
+ "askPrice": "0.00000523",
+ "askQty": "41336.00000000",
+ "openPrice": "0.00000518",
+ "highPrice": "0.00000530",
+ "lowPrice": "0.00000505",
+ "volume": "23892809.00000000",
+ "quoteVolume": "123.63535486",
+ "openTime": 1560210234858,
+ "closeTime": 1560296634858,
+ "firstId": 4979274,
+ "lastId": 4984098,
+ "count": 4825
+ },
+ {
+ "symbol": "QLCETH",
+ "priceChange": "-0.00000038",
+ "priceChangePercent": "-0.225",
+ "weightedAvgPrice": "0.00016823",
+ "prevClosePrice": "0.00016800",
+ "lastPrice": "0.00016827",
+ "lastQty": "141.00000000",
+ "bidPrice": "0.00016784",
+ "bidQty": "770.00000000",
+ "askPrice": "0.00016842",
+ "askQty": "5368.00000000",
+ "openPrice": "0.00016865",
+ "highPrice": "0.00018000",
+ "lowPrice": "0.00016288",
+ "volume": "565236.00000000",
+ "quoteVolume": "95.08800343",
+ "openTime": 1560210222131,
+ "closeTime": 1560296622131,
+ "firstId": 835338,
+ "lastId": 835741,
+ "count": 404
+ },
+ {
+ "symbol": "SYSBTC",
+ "priceChange": "0.00000006",
+ "priceChangePercent": "0.733",
+ "weightedAvgPrice": "0.00000817",
+ "prevClosePrice": "0.00000817",
+ "lastPrice": "0.00000824",
+ "lastQty": "1928.00000000",
+ "bidPrice": "0.00000821",
+ "bidQty": "18059.00000000",
+ "askPrice": "0.00000824",
+ "askQty": "2921.00000000",
+ "openPrice": "0.00000818",
+ "highPrice": "0.00000839",
+ "lowPrice": "0.00000803",
+ "volume": "2589073.00000000",
+ "quoteVolume": "21.16446412",
+ "openTime": 1560210224942,
+ "closeTime": 1560296624942,
+ "firstId": 2809605,
+ "lastId": 2811314,
+ "count": 1710
+ },
+ {
+ "symbol": "SYSETH",
+ "priceChange": "-0.00000150",
+ "priceChangePercent": "-0.566",
+ "weightedAvgPrice": "0.00026454",
+ "prevClosePrice": "0.00026523",
+ "lastPrice": "0.00026373",
+ "lastQty": "39.00000000",
+ "bidPrice": "0.00026395",
+ "bidQty": "18059.00000000",
+ "askPrice": "0.00026562",
+ "askQty": "600.00000000",
+ "openPrice": "0.00026523",
+ "highPrice": "0.00027062",
+ "lowPrice": "0.00025910",
+ "volume": "207279.00000000",
+ "quoteVolume": "54.83339526",
+ "openTime": 1560210232213,
+ "closeTime": 1560296632213,
+ "firstId": 506719,
+ "lastId": 507014,
+ "count": 296
+ },
+ {
+ "symbol": "SYSBNB",
+ "priceChange": "-0.00003000",
+ "priceChangePercent": "-1.456",
+ "weightedAvgPrice": "0.00204603",
+ "prevClosePrice": "0.00205000",
+ "lastPrice": "0.00203000",
+ "lastQty": "1673.30000000",
+ "bidPrice": "0.00203000",
+ "bidQty": "2727.70000000",
+ "askPrice": "0.00206000",
+ "askQty": "727.10000000",
+ "openPrice": "0.00206000",
+ "highPrice": "0.00208000",
+ "lowPrice": "0.00201000",
+ "volume": "197745.40000000",
+ "quoteVolume": "404.59284300",
+ "openTime": 1560210241302,
+ "closeTime": 1560296641302,
+ "firstId": 208005,
+ "lastId": 208206,
+ "count": 202
+ },
+ {
+ "symbol": "QLCBNB",
+ "priceChange": "-0.00000300",
+ "priceChangePercent": "-0.233",
+ "weightedAvgPrice": "0.00128627",
+ "prevClosePrice": "0.00130100",
+ "lastPrice": "0.00128700",
+ "lastQty": "1136.00000000",
+ "bidPrice": "0.00128800",
+ "bidQty": "3160.00000000",
+ "askPrice": "0.00129500",
+ "askQty": "9541.00000000",
+ "openPrice": "0.00129000",
+ "highPrice": "0.00132100",
+ "lowPrice": "0.00126900",
+ "volume": "862735.00000000",
+ "quoteVolume": "1109.70823900",
+ "openTime": 1560210231504,
+ "closeTime": 1560296631504,
+ "firstId": 385645,
+ "lastId": 385937,
+ "count": 293
+ },
+ {
+ "symbol": "GRSBTC",
+ "priceChange": "0.00000435",
+ "priceChangePercent": "7.892",
+ "weightedAvgPrice": "0.00005689",
+ "prevClosePrice": "0.00005523",
+ "lastPrice": "0.00005947",
+ "lastQty": "233.00000000",
+ "bidPrice": "0.00005931",
+ "bidQty": "136.00000000",
+ "askPrice": "0.00005949",
+ "askQty": "741.00000000",
+ "openPrice": "0.00005512",
+ "highPrice": "0.00006004",
+ "lowPrice": "0.00005425",
+ "volume": "4546759.00000000",
+ "quoteVolume": "258.67739829",
+ "openTime": 1560210241949,
+ "closeTime": 1560296641949,
+ "firstId": 4384513,
+ "lastId": 4397646,
+ "count": 13134
+ },
+ {
+ "symbol": "GRSETH",
+ "priceChange": "0.00012899",
+ "priceChangePercent": "7.219",
+ "weightedAvgPrice": "0.00184193",
+ "prevClosePrice": "0.00178650",
+ "lastPrice": "0.00191569",
+ "lastQty": "15.00000000",
+ "bidPrice": "0.00190664",
+ "bidQty": "441.00000000",
+ "askPrice": "0.00191672",
+ "askQty": "472.00000000",
+ "openPrice": "0.00178670",
+ "highPrice": "0.00193000",
+ "lowPrice": "0.00176569",
+ "volume": "206880.00000000",
+ "quoteVolume": "381.05859456",
+ "openTime": 1560210241924,
+ "closeTime": 1560296641924,
+ "firstId": 638953,
+ "lastId": 640326,
+ "count": 1374
+ },
+ {
+ "symbol": "ADAUSDT",
+ "priceChange": "0.00274000",
+ "priceChangePercent": "3.226",
+ "weightedAvgPrice": "0.08583970",
+ "prevClosePrice": "0.08491000",
+ "lastPrice": "0.08767000",
+ "lastQty": "1633.00000000",
+ "bidPrice": "0.08767000",
+ "bidQty": "1570.40000000",
+ "askPrice": "0.08774000",
+ "askQty": "13375.00000000",
+ "openPrice": "0.08493000",
+ "highPrice": "0.08913000",
+ "lowPrice": "0.08167000",
+ "volume": "167342169.80000000",
+ "quoteVolume": "14364602.30267100",
+ "openTime": 1560210242334,
+ "closeTime": 1560296642334,
+ "firstId": 14601476,
+ "lastId": 14638049,
+ "count": 36574
+ },
+ {
+ "symbol": "ADABNB",
+ "priceChange": "0.00008000",
+ "priceChangePercent": "2.996",
+ "weightedAvgPrice": "0.00272873",
+ "prevClosePrice": "0.00265000",
+ "lastPrice": "0.00275000",
+ "lastQty": "21818.00000000",
+ "bidPrice": "0.00274000",
+ "bidQty": "71670.40000000",
+ "askPrice": "0.00276000",
+ "askQty": "113821.10000000",
+ "openPrice": "0.00267000",
+ "highPrice": "0.00281000",
+ "lowPrice": "0.00262000",
+ "volume": "9848406.20000000",
+ "quoteVolume": "26873.64540500",
+ "openTime": 1560210238417,
+ "closeTime": 1560296638417,
+ "firstId": 1387698,
+ "lastId": 1392455,
+ "count": 4758
+ },
+ {
+ "symbol": "CLOAKBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00015550",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998627259,
+ "closeTime": 1558085027259,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "CLOAKETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00414200",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998627483,
+ "closeTime": 1558085027483,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "GNTBTC",
+ "priceChange": "0.00000107",
+ "priceChangePercent": "8.969",
+ "weightedAvgPrice": "0.00001283",
+ "prevClosePrice": "0.00001190",
+ "lastPrice": "0.00001300",
+ "lastQty": "241.00000000",
+ "bidPrice": "0.00001300",
+ "bidQty": "1518.00000000",
+ "askPrice": "0.00001303",
+ "askQty": "1847.00000000",
+ "openPrice": "0.00001193",
+ "highPrice": "0.00001339",
+ "lowPrice": "0.00001192",
+ "volume": "11369629.00000000",
+ "quoteVolume": "145.83941210",
+ "openTime": 1560210239658,
+ "closeTime": 1560296639658,
+ "firstId": 3085565,
+ "lastId": 3096135,
+ "count": 10571
+ },
+ {
+ "symbol": "GNTETH",
+ "priceChange": "0.00003185",
+ "priceChangePercent": "8.223",
+ "weightedAvgPrice": "0.00041595",
+ "prevClosePrice": "0.00038596",
+ "lastPrice": "0.00041916",
+ "lastQty": "260.00000000",
+ "bidPrice": "0.00041805",
+ "bidQty": "1518.00000000",
+ "askPrice": "0.00041916",
+ "askQty": "8.00000000",
+ "openPrice": "0.00038731",
+ "highPrice": "0.00043398",
+ "lowPrice": "0.00038667",
+ "volume": "1343978.00000000",
+ "quoteVolume": "559.03229291",
+ "openTime": 1560210241742,
+ "closeTime": 1560296641742,
+ "firstId": 712119,
+ "lastId": 714210,
+ "count": 2092
+ },
+ {
+ "symbol": "GNTBNB",
+ "priceChange": "0.00024000",
+ "priceChangePercent": "8.081",
+ "weightedAvgPrice": "0.00321531",
+ "prevClosePrice": "0.00296000",
+ "lastPrice": "0.00321000",
+ "lastQty": "2461.20000000",
+ "bidPrice": "0.00321000",
+ "bidQty": "4610.00000000",
+ "askPrice": "0.00323000",
+ "askQty": "21744.70000000",
+ "openPrice": "0.00297000",
+ "highPrice": "0.00339000",
+ "lowPrice": "0.00297000",
+ "volume": "641074.70000000",
+ "quoteVolume": "2061.25648500",
+ "openTime": 1560210241215,
+ "closeTime": 1560296641215,
+ "firstId": 142582,
+ "lastId": 143391,
+ "count": 810
+ },
+ {
+ "symbol": "LOOMBTC",
+ "priceChange": "0.00000037",
+ "priceChangePercent": "3.565",
+ "weightedAvgPrice": "0.00001062",
+ "prevClosePrice": "0.00001038",
+ "lastPrice": "0.00001075",
+ "lastQty": "1049.00000000",
+ "bidPrice": "0.00001075",
+ "bidQty": "1050.00000000",
+ "askPrice": "0.00001076",
+ "askQty": "3409.00000000",
+ "openPrice": "0.00001038",
+ "highPrice": "0.00001094",
+ "lowPrice": "0.00001023",
+ "volume": "15967543.00000000",
+ "quoteVolume": "169.65126777",
+ "openTime": 1560210241963,
+ "closeTime": 1560296641963,
+ "firstId": 4842232,
+ "lastId": 4851515,
+ "count": 9284
+ },
+ {
+ "symbol": "LOOMETH",
+ "priceChange": "0.00001081",
+ "priceChangePercent": "3.217",
+ "weightedAvgPrice": "0.00034253",
+ "prevClosePrice": "0.00033715",
+ "lastPrice": "0.00034688",
+ "lastQty": "41.00000000",
+ "bidPrice": "0.00034563",
+ "bidQty": "1050.00000000",
+ "askPrice": "0.00034694",
+ "askQty": "2115.00000000",
+ "openPrice": "0.00033607",
+ "highPrice": "0.00035592",
+ "lowPrice": "0.00033239",
+ "volume": "2270484.00000000",
+ "quoteVolume": "777.71614094",
+ "openTime": 1560210242144,
+ "closeTime": 1560296642144,
+ "firstId": 1653242,
+ "lastId": 1655618,
+ "count": 2377
+ },
+ {
+ "symbol": "LOOMBNB",
+ "priceChange": "0.00006000",
+ "priceChangePercent": "2.308",
+ "weightedAvgPrice": "0.00262569",
+ "prevClosePrice": "0.00258000",
+ "lastPrice": "0.00266000",
+ "lastQty": "82.20000000",
+ "bidPrice": "0.00265000",
+ "bidQty": "2793.00000000",
+ "askPrice": "0.00267000",
+ "askQty": "4312.10000000",
+ "openPrice": "0.00260000",
+ "highPrice": "0.00272000",
+ "lowPrice": "0.00257000",
+ "volume": "1192249.20000000",
+ "quoteVolume": "3130.47339800",
+ "openTime": 1560210215818,
+ "closeTime": 1560296615818,
+ "firstId": 309666,
+ "lastId": 310274,
+ "count": 609
+ },
+ {
+ "symbol": "XRPUSDT",
+ "priceChange": "-0.00665000",
+ "priceChangePercent": "-1.668",
+ "weightedAvgPrice": "0.39065927",
+ "prevClosePrice": "0.39851000",
+ "lastPrice": "0.39202000",
+ "lastQty": "29.90000000",
+ "bidPrice": "0.39195000",
+ "bidQty": "0.10000000",
+ "askPrice": "0.39202000",
+ "askQty": "802.40000000",
+ "openPrice": "0.39867000",
+ "highPrice": "0.40195000",
+ "lowPrice": "0.38175000",
+ "volume": "75821809.80000000",
+ "quoteVolume": "29620492.89863600",
+ "openTime": 1560210242369,
+ "closeTime": 1560296642369,
+ "firstId": 26654672,
+ "lastId": 26745524,
+ "count": 90853
+ },
+ {
+ "symbol": "BCNBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00000022",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998630956,
+ "closeTime": 1558085030956,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BCNETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00000707",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000700",
+ "bidQty": "3458.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998631015,
+ "closeTime": 1558085031015,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BCNBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00002000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998631295,
+ "closeTime": 1558085031295,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "REPBTC",
+ "priceChange": "-0.00002000",
+ "priceChangePercent": "-0.844",
+ "weightedAvgPrice": "0.00237911",
+ "prevClosePrice": "0.00237200",
+ "lastPrice": "0.00235100",
+ "lastQty": "8.67800000",
+ "bidPrice": "0.00234600",
+ "bidQty": "4.99300000",
+ "askPrice": "0.00235300",
+ "askQty": "0.72700000",
+ "openPrice": "0.00237100",
+ "highPrice": "0.00249200",
+ "lowPrice": "0.00232800",
+ "volume": "36908.74500000",
+ "quoteVolume": "87.80986838",
+ "openTime": 1560210241244,
+ "closeTime": 1560296641244,
+ "firstId": 3815588,
+ "lastId": 3820891,
+ "count": 5304
+ },
+ {
+ "symbol": "REPETH",
+ "priceChange": "-0.00086000",
+ "priceChangePercent": "-1.123",
+ "weightedAvgPrice": "0.07715039",
+ "prevClosePrice": "0.07675000",
+ "lastPrice": "0.07573000",
+ "lastQty": "1.49600000",
+ "bidPrice": "0.07551000",
+ "bidQty": "0.16300000",
+ "askPrice": "0.07577000",
+ "askQty": "2.04300000",
+ "openPrice": "0.07659000",
+ "highPrice": "0.08054000",
+ "lowPrice": "0.07529000",
+ "volume": "3918.63100000",
+ "quoteVolume": "302.32390659",
+ "openTime": 1560210242320,
+ "closeTime": 1560296642320,
+ "firstId": 779068,
+ "lastId": 780219,
+ "count": 1152
+ },
+ {
+ "symbol": "REPBNB",
+ "priceChange": "-0.00600000",
+ "priceChangePercent": "-1.019",
+ "weightedAvgPrice": "0.60011595",
+ "prevClosePrice": "0.59300000",
+ "lastPrice": "0.58300000",
+ "lastQty": "5.41800000",
+ "bidPrice": "0.57900000",
+ "bidQty": "120.04000000",
+ "askPrice": "0.58200000",
+ "askQty": "6.30800000",
+ "openPrice": "0.58900000",
+ "highPrice": "0.62100000",
+ "lowPrice": "0.57900000",
+ "volume": "1156.91000000",
+ "quoteVolume": "694.28013900",
+ "openTime": 1560210240932,
+ "closeTime": 1560296640932,
+ "firstId": 132032,
+ "lastId": 132318,
+ "count": 287
+ },
+ {
+ "symbol": "BTCTUSD",
+ "priceChange": "-78.93000000",
+ "priceChangePercent": "-0.987",
+ "weightedAvgPrice": "7889.51752989",
+ "prevClosePrice": "8001.67000000",
+ "lastPrice": "7920.07000000",
+ "lastQty": "0.00671900",
+ "bidPrice": "7920.18000000",
+ "bidQty": "0.02813800",
+ "askPrice": "7925.36000000",
+ "askQty": "0.03492200",
+ "openPrice": "7999.00000000",
+ "highPrice": "8055.32000000",
+ "lowPrice": "7705.76000000",
+ "volume": "712.31513600",
+ "quoteVolume": "5619822.75227997",
+ "openTime": 1560210242155,
+ "closeTime": 1560296642155,
+ "firstId": 1283285,
+ "lastId": 1294852,
+ "count": 11568
+ },
+ {
+ "symbol": "TUSDBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00025971",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998633126,
+ "closeTime": 1558085033126,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "ETHTUSD",
+ "priceChange": "-1.03000000",
+ "priceChangePercent": "-0.416",
+ "weightedAvgPrice": "242.77437067",
+ "prevClosePrice": "246.85000000",
+ "lastPrice": "246.27000000",
+ "lastQty": "0.91977000",
+ "bidPrice": "245.67000000",
+ "bidQty": "0.90655000",
+ "askPrice": "246.20000000",
+ "askQty": "2.46201000",
+ "openPrice": "247.30000000",
+ "highPrice": "249.16000000",
+ "lowPrice": "235.04000000",
+ "volume": "6175.79336000",
+ "quoteVolume": "1499324.34633410",
+ "openTime": 1560210241958,
+ "closeTime": 1560296641958,
+ "firstId": 342274,
+ "lastId": 345162,
+ "count": 2889
+ },
+ {
+ "symbol": "TUSDETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00762097",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998635242,
+ "closeTime": 1558085035242,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "TUSDBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.06777000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998635302,
+ "closeTime": 1558085035302,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "ZENBTC",
+ "priceChange": "-0.00002100",
+ "priceChangePercent": "-1.587",
+ "weightedAvgPrice": "0.00131180",
+ "prevClosePrice": "0.00132200",
+ "lastPrice": "0.00130200",
+ "lastQty": "22.95300000",
+ "bidPrice": "0.00130200",
+ "bidQty": "22.21300000",
+ "askPrice": "0.00130500",
+ "askQty": "3.66800000",
+ "openPrice": "0.00132300",
+ "highPrice": "0.00133700",
+ "lowPrice": "0.00129100",
+ "volume": "18060.88800000",
+ "quoteVolume": "23.69229667",
+ "openTime": 1560210236867,
+ "closeTime": 1560296636867,
+ "firstId": 2091369,
+ "lastId": 2092807,
+ "count": 1439
+ },
+ {
+ "symbol": "ZENETH",
+ "priceChange": "-0.00080000",
+ "priceChangePercent": "-1.870",
+ "weightedAvgPrice": "0.04245675",
+ "prevClosePrice": "0.04268000",
+ "lastPrice": "0.04199000",
+ "lastQty": "5.21000000",
+ "bidPrice": "0.04188000",
+ "bidQty": "11.36600000",
+ "askPrice": "0.04220000",
+ "askQty": "0.59800000",
+ "openPrice": "0.04279000",
+ "highPrice": "0.04329000",
+ "lowPrice": "0.04163000",
+ "volume": "1121.75300000",
+ "quoteVolume": "47.62599151",
+ "openTime": 1560210242231,
+ "closeTime": 1560296642231,
+ "firstId": 442181,
+ "lastId": 442476,
+ "count": 296
+ },
+ {
+ "symbol": "ZENBNB",
+ "priceChange": "-0.00700000",
+ "priceChangePercent": "-2.128",
+ "weightedAvgPrice": "0.32566180",
+ "prevClosePrice": "0.32800000",
+ "lastPrice": "0.32200000",
+ "lastQty": "24.17600000",
+ "bidPrice": "0.32200000",
+ "bidQty": "3.41800000",
+ "askPrice": "0.32300000",
+ "askQty": "25.00000000",
+ "openPrice": "0.32900000",
+ "highPrice": "0.34100000",
+ "lowPrice": "0.32000000",
+ "volume": "1453.19100000",
+ "quoteVolume": "473.24880400",
+ "openTime": 1560210239106,
+ "closeTime": 1560296639106,
+ "firstId": 106367,
+ "lastId": 106512,
+ "count": 146
+ },
+ {
+ "symbol": "SKYBTC",
+ "priceChange": "-0.00000100",
+ "priceChangePercent": "-0.467",
+ "weightedAvgPrice": "0.00021178",
+ "prevClosePrice": "0.00021400",
+ "lastPrice": "0.00021300",
+ "lastQty": "115.21200000",
+ "bidPrice": "0.00021200",
+ "bidQty": "581.81900000",
+ "askPrice": "0.00021300",
+ "askQty": "2135.15700000",
+ "openPrice": "0.00021400",
+ "highPrice": "0.00021500",
+ "lowPrice": "0.00020800",
+ "volume": "196878.21800000",
+ "quoteVolume": "41.69498988",
+ "openTime": 1560210225489,
+ "closeTime": 1560296625489,
+ "firstId": 3425202,
+ "lastId": 3427350,
+ "count": 2149
+ },
+ {
+ "symbol": "SKYETH",
+ "priceChange": "-0.00006000",
+ "priceChangePercent": "-0.868",
+ "weightedAvgPrice": "0.00686913",
+ "prevClosePrice": "0.00694000",
+ "lastPrice": "0.00685000",
+ "lastQty": "13.20000000",
+ "bidPrice": "0.00682000",
+ "bidQty": "62.06100000",
+ "askPrice": "0.00687000",
+ "askQty": "133.18300000",
+ "openPrice": "0.00691000",
+ "highPrice": "0.00699000",
+ "lowPrice": "0.00668000",
+ "volume": "36212.46900000",
+ "quoteVolume": "248.74811753",
+ "openTime": 1560210241986,
+ "closeTime": 1560296641986,
+ "firstId": 656704,
+ "lastId": 660156,
+ "count": 3453
+ },
+ {
+ "symbol": "SKYBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.05286355",
+ "prevClosePrice": "0.05400000",
+ "lastPrice": "0.05300000",
+ "lastQty": "193.48600000",
+ "bidPrice": "0.05200000",
+ "bidQty": "3825.13400000",
+ "askPrice": "0.05300000",
+ "askQty": "2715.52000000",
+ "openPrice": "0.05300000",
+ "highPrice": "0.05400000",
+ "lowPrice": "0.05200000",
+ "volume": "13763.21500000",
+ "quoteVolume": "727.57244600",
+ "openTime": 1560210137610,
+ "closeTime": 1560296537610,
+ "firstId": 212386,
+ "lastId": 212615,
+ "count": 230
+ },
+ {
+ "symbol": "EOSUSDT",
+ "priceChange": "-0.08270000",
+ "priceChangePercent": "-1.292",
+ "weightedAvgPrice": "6.29238094",
+ "prevClosePrice": "6.40000000",
+ "lastPrice": "6.31610000",
+ "lastQty": "21.03000000",
+ "bidPrice": "6.31410000",
+ "bidQty": "66.51000000",
+ "askPrice": "6.31490000",
+ "askQty": "406.42000000",
+ "openPrice": "6.39880000",
+ "highPrice": "6.47990000",
+ "lowPrice": "6.12820000",
+ "volume": "5223888.55000000",
+ "quoteVolume": "32870696.73354400",
+ "openTime": 1560210242348,
+ "closeTime": 1560296642348,
+ "firstId": 24992661,
+ "lastId": 25059471,
+ "count": 66811
+ },
+ {
+ "symbol": "EOSBNB",
+ "priceChange": "-0.00280000",
+ "priceChangePercent": "-1.397",
+ "weightedAvgPrice": "0.20001522",
+ "prevClosePrice": "0.20040000",
+ "lastPrice": "0.19770000",
+ "lastQty": "10.14000000",
+ "bidPrice": "0.19770000",
+ "bidQty": "428.18000000",
+ "askPrice": "0.19810000",
+ "askQty": "30.88000000",
+ "openPrice": "0.20050000",
+ "highPrice": "0.20290000",
+ "lowPrice": "0.19680000",
+ "volume": "149109.20000000",
+ "quoteVolume": "29824.10900300",
+ "openTime": 1560210242072,
+ "closeTime": 1560296642072,
+ "firstId": 1364067,
+ "lastId": 1369258,
+ "count": 5192
+ },
+ {
+ "symbol": "CVCBTC",
+ "priceChange": "0.00000050",
+ "priceChangePercent": "4.604",
+ "weightedAvgPrice": "0.00001172",
+ "prevClosePrice": "0.00001083",
+ "lastPrice": "0.00001136",
+ "lastQty": "30.00000000",
+ "bidPrice": "0.00001134",
+ "bidQty": "2971.00000000",
+ "askPrice": "0.00001136",
+ "askQty": "59.00000000",
+ "openPrice": "0.00001086",
+ "highPrice": "0.00001271",
+ "lowPrice": "0.00001067",
+ "volume": "20436862.00000000",
+ "quoteVolume": "239.58455101",
+ "openTime": 1560210241662,
+ "closeTime": 1560296641662,
+ "firstId": 2984245,
+ "lastId": 2995467,
+ "count": 11223
+ },
+ {
+ "symbol": "CVCETH",
+ "priceChange": "0.00001697",
+ "priceChangePercent": "4.865",
+ "weightedAvgPrice": "0.00038136",
+ "prevClosePrice": "0.00034968",
+ "lastPrice": "0.00036580",
+ "lastQty": "86.00000000",
+ "bidPrice": "0.00036474",
+ "bidQty": "714.00000000",
+ "askPrice": "0.00036580",
+ "askQty": "1224.00000000",
+ "openPrice": "0.00034883",
+ "highPrice": "0.00042612",
+ "lowPrice": "0.00034545",
+ "volume": "1725400.00000000",
+ "quoteVolume": "658.00666494",
+ "openTime": 1560210235843,
+ "closeTime": 1560296635843,
+ "firstId": 294848,
+ "lastId": 296655,
+ "count": 1808
+ },
+ {
+ "symbol": "CVCBNB",
+ "priceChange": "0.00010000",
+ "priceChangePercent": "3.704",
+ "weightedAvgPrice": "0.00294002",
+ "prevClosePrice": "0.00270000",
+ "lastPrice": "0.00280000",
+ "lastQty": "4983.20000000",
+ "bidPrice": "0.00279000",
+ "bidQty": "39352.50000000",
+ "askPrice": "0.00281000",
+ "askQty": "1060.90000000",
+ "openPrice": "0.00270000",
+ "highPrice": "0.00317000",
+ "lowPrice": "0.00267000",
+ "volume": "735733.70000000",
+ "quoteVolume": "2163.06869400",
+ "openTime": 1560210241615,
+ "closeTime": 1560296641615,
+ "firstId": 72113,
+ "lastId": 72870,
+ "count": 758
+ },
+ {
+ "symbol": "THETABTC",
+ "priceChange": "-0.00000030",
+ "priceChangePercent": "-1.649",
+ "weightedAvgPrice": "0.00001802",
+ "prevClosePrice": "0.00001819",
+ "lastPrice": "0.00001789",
+ "lastQty": "5819.00000000",
+ "bidPrice": "0.00001788",
+ "bidQty": "1320.00000000",
+ "askPrice": "0.00001789",
+ "askQty": "1888.00000000",
+ "openPrice": "0.00001819",
+ "highPrice": "0.00001854",
+ "lowPrice": "0.00001770",
+ "volume": "28994982.00000000",
+ "quoteVolume": "522.51192869",
+ "openTime": 1560210241915,
+ "closeTime": 1560296641915,
+ "firstId": 6385043,
+ "lastId": 6403893,
+ "count": 18851
+ },
+ {
+ "symbol": "THETAETH",
+ "priceChange": "-0.00001094",
+ "priceChangePercent": "-1.860",
+ "weightedAvgPrice": "0.00058472",
+ "prevClosePrice": "0.00058988",
+ "lastPrice": "0.00057710",
+ "lastQty": "916.00000000",
+ "bidPrice": "0.00057506",
+ "bidQty": "3311.00000000",
+ "askPrice": "0.00057710",
+ "askQty": "646.00000000",
+ "openPrice": "0.00058804",
+ "highPrice": "0.00060007",
+ "lowPrice": "0.00057117",
+ "volume": "2490435.00000000",
+ "quoteVolume": "1456.19747980",
+ "openTime": 1560210242338,
+ "closeTime": 1560296642338,
+ "firstId": 1155595,
+ "lastId": 1159015,
+ "count": 3421
+ },
+ {
+ "symbol": "THETABNB",
+ "priceChange": "-0.00011000",
+ "priceChangePercent": "-2.423",
+ "weightedAvgPrice": "0.00450636",
+ "prevClosePrice": "0.00453000",
+ "lastPrice": "0.00443000",
+ "lastQty": "8367.40000000",
+ "bidPrice": "0.00441000",
+ "bidQty": "4990.20000000",
+ "askPrice": "0.00443000",
+ "askQty": "1832.00000000",
+ "openPrice": "0.00454000",
+ "highPrice": "0.00465000",
+ "lowPrice": "0.00442000",
+ "volume": "1161469.60000000",
+ "quoteVolume": "5233.99954700",
+ "openTime": 1560210238328,
+ "closeTime": 1560296638328,
+ "firstId": 346986,
+ "lastId": 348148,
+ "count": 1163
+ },
+ {
+ "symbol": "XRPBNB",
+ "priceChange": "-0.00020000",
+ "priceChangePercent": "-1.601",
+ "weightedAvgPrice": "0.01238444",
+ "prevClosePrice": "0.01249000",
+ "lastPrice": "0.01229000",
+ "lastQty": "3055.30000000",
+ "bidPrice": "0.01227000",
+ "bidQty": "253.20000000",
+ "askPrice": "0.01228000",
+ "askQty": "721.60000000",
+ "openPrice": "0.01249000",
+ "highPrice": "0.01254000",
+ "lowPrice": "0.01184000",
+ "volume": "3955430.60000000",
+ "quoteVolume": "48985.80813600",
+ "openTime": 1560210240786,
+ "closeTime": 1560296640786,
+ "firstId": 1789769,
+ "lastId": 1795979,
+ "count": 6211
+ },
+ {
+ "symbol": "TUSDUSDT",
+ "priceChange": "-0.00060000",
+ "priceChangePercent": "-0.060",
+ "weightedAvgPrice": "0.99591676",
+ "prevClosePrice": "0.99580000",
+ "lastPrice": "0.99540000",
+ "lastQty": "203.46000000",
+ "bidPrice": "0.99530000",
+ "bidQty": "874.27000000",
+ "askPrice": "0.99560000",
+ "askQty": "960.32000000",
+ "openPrice": "0.99600000",
+ "highPrice": "0.99800000",
+ "lowPrice": "0.99340000",
+ "volume": "9682003.96000000",
+ "quoteVolume": "9642470.05115000",
+ "openTime": 1560210242329,
+ "closeTime": 1560296642329,
+ "firstId": 5198186,
+ "lastId": 5223087,
+ "count": 24902
+ },
+ {
+ "symbol": "IOTAUSDT",
+ "priceChange": "-0.00590000",
+ "priceChangePercent": "-1.379",
+ "weightedAvgPrice": "0.41778772",
+ "prevClosePrice": "0.42810000",
+ "lastPrice": "0.42180000",
+ "lastQty": "910.80000000",
+ "bidPrice": "0.42150000",
+ "bidQty": "134.19000000",
+ "askPrice": "0.42180000",
+ "askQty": "2023.41000000",
+ "openPrice": "0.42770000",
+ "highPrice": "0.43000000",
+ "lowPrice": "0.40630000",
+ "volume": "4026746.63000000",
+ "quoteVolume": "1682325.29333200",
+ "openTime": 1560210242311,
+ "closeTime": 1560296642311,
+ "firstId": 5430745,
+ "lastId": 5438363,
+ "count": 7619
+ },
+ {
+ "symbol": "XLMUSDT",
+ "priceChange": "-0.00048000",
+ "priceChangePercent": "-0.391",
+ "weightedAvgPrice": "0.12092606",
+ "prevClosePrice": "0.12291000",
+ "lastPrice": "0.12237000",
+ "lastQty": "1082.00000000",
+ "bidPrice": "0.12229000",
+ "bidQty": "1.60000000",
+ "askPrice": "0.12241000",
+ "askQty": "1.60000000",
+ "openPrice": "0.12285000",
+ "highPrice": "0.12362000",
+ "lowPrice": "0.11831000",
+ "volume": "22219234.60000000",
+ "quoteVolume": "2686884.54939400",
+ "openTime": 1560210241701,
+ "closeTime": 1560296641701,
+ "firstId": 8876496,
+ "lastId": 8891925,
+ "count": 15430
+ },
+ {
+ "symbol": "IOTXBTC",
+ "priceChange": "0.00000006",
+ "priceChangePercent": "4.412",
+ "weightedAvgPrice": "0.00000138",
+ "prevClosePrice": "0.00000137",
+ "lastPrice": "0.00000142",
+ "lastQty": "10854.00000000",
+ "bidPrice": "0.00000142",
+ "bidQty": "88443.00000000",
+ "askPrice": "0.00000143",
+ "askQty": "273756.00000000",
+ "openPrice": "0.00000136",
+ "highPrice": "0.00000148",
+ "lowPrice": "0.00000132",
+ "volume": "51323690.00000000",
+ "quoteVolume": "70.95952946",
+ "openTime": 1560210240601,
+ "closeTime": 1560296640601,
+ "firstId": 4015561,
+ "lastId": 4019597,
+ "count": 4037
+ },
+ {
+ "symbol": "IOTXETH",
+ "priceChange": "0.00000157",
+ "priceChangePercent": "3.543",
+ "weightedAvgPrice": "0.00004476",
+ "prevClosePrice": "0.00004433",
+ "lastPrice": "0.00004588",
+ "lastQty": "302.00000000",
+ "bidPrice": "0.00004559",
+ "bidQty": "88443.00000000",
+ "askPrice": "0.00004588",
+ "askQty": "7918.00000000",
+ "openPrice": "0.00004431",
+ "highPrice": "0.00004745",
+ "lowPrice": "0.00004287",
+ "volume": "5598624.00000000",
+ "quoteVolume": "250.60685350",
+ "openTime": 1560210241951,
+ "closeTime": 1560296641951,
+ "firstId": 1332983,
+ "lastId": 1334319,
+ "count": 1337
+ },
+ {
+ "symbol": "QKCBTC",
+ "priceChange": "0.00000012",
+ "priceChangePercent": "4.013",
+ "weightedAvgPrice": "0.00000305",
+ "prevClosePrice": "0.00000300",
+ "lastPrice": "0.00000311",
+ "lastQty": "7534.00000000",
+ "bidPrice": "0.00000311",
+ "bidQty": "325152.00000000",
+ "askPrice": "0.00000312",
+ "askQty": "173501.00000000",
+ "openPrice": "0.00000299",
+ "highPrice": "0.00000316",
+ "lowPrice": "0.00000291",
+ "volume": "192323802.00000000",
+ "quoteVolume": "585.79109350",
+ "openTime": 1560210242332,
+ "closeTime": 1560296642332,
+ "firstId": 8991859,
+ "lastId": 9007034,
+ "count": 15176
+ },
+ {
+ "symbol": "QKCETH",
+ "priceChange": "0.00000375",
+ "priceChangePercent": "3.880",
+ "weightedAvgPrice": "0.00009855",
+ "prevClosePrice": "0.00009664",
+ "lastPrice": "0.00010039",
+ "lastQty": "145.00000000",
+ "bidPrice": "0.00010001",
+ "bidQty": "44054.00000000",
+ "askPrice": "0.00010030",
+ "askQty": "120.00000000",
+ "openPrice": "0.00009664",
+ "highPrice": "0.00010232",
+ "lowPrice": "0.00009375",
+ "volume": "10071052.00000000",
+ "quoteVolume": "992.48708586",
+ "openTime": 1560210242270,
+ "closeTime": 1560296642270,
+ "firstId": 1714983,
+ "lastId": 1717718,
+ "count": 2736
+ },
+ {
+ "symbol": "AGIBTC",
+ "priceChange": "-0.00000009",
+ "priceChangePercent": "-1.452",
+ "weightedAvgPrice": "0.00000610",
+ "prevClosePrice": "0.00000620",
+ "lastPrice": "0.00000611",
+ "lastQty": "983.00000000",
+ "bidPrice": "0.00000610",
+ "bidQty": "11360.00000000",
+ "askPrice": "0.00000611",
+ "askQty": "889.00000000",
+ "openPrice": "0.00000620",
+ "highPrice": "0.00000625",
+ "lowPrice": "0.00000601",
+ "volume": "14982667.00000000",
+ "quoteVolume": "91.34101193",
+ "openTime": 1560210240624,
+ "closeTime": 1560296640624,
+ "firstId": 3212981,
+ "lastId": 3216253,
+ "count": 3273
+ },
+ {
+ "symbol": "AGIETH",
+ "priceChange": "-0.00000371",
+ "priceChangePercent": "-1.849",
+ "weightedAvgPrice": "0.00019717",
+ "prevClosePrice": "0.00020037",
+ "lastPrice": "0.00019699",
+ "lastQty": "612.00000000",
+ "bidPrice": "0.00019620",
+ "bidQty": "618.00000000",
+ "askPrice": "0.00019768",
+ "askQty": "2499.00000000",
+ "openPrice": "0.00020070",
+ "highPrice": "0.00020198",
+ "lowPrice": "0.00019101",
+ "volume": "421374.00000000",
+ "quoteVolume": "83.08196584",
+ "openTime": 1560210236455,
+ "closeTime": 1560296636455,
+ "firstId": 897260,
+ "lastId": 897975,
+ "count": 716
+ },
+ {
+ "symbol": "AGIBNB",
+ "priceChange": "-0.00002000",
+ "priceChangePercent": "-1.299",
+ "weightedAvgPrice": "0.00152827",
+ "prevClosePrice": "0.00154000",
+ "lastPrice": "0.00152000",
+ "lastQty": "3020.50000000",
+ "bidPrice": "0.00150000",
+ "bidQty": "6386.00000000",
+ "askPrice": "0.00152000",
+ "askQty": "4479.00000000",
+ "openPrice": "0.00154000",
+ "highPrice": "0.00155000",
+ "lowPrice": "0.00150000",
+ "volume": "358724.30000000",
+ "quoteVolume": "548.22925700",
+ "openTime": 1560210240854,
+ "closeTime": 1560296640854,
+ "firstId": 105654,
+ "lastId": 105832,
+ "count": 179
+ },
+ {
+ "symbol": "NXSBTC",
+ "priceChange": "-0.00000090",
+ "priceChangePercent": "-1.935",
+ "weightedAvgPrice": "0.00004639",
+ "prevClosePrice": "0.00004660",
+ "lastPrice": "0.00004560",
+ "lastQty": "361.74000000",
+ "bidPrice": "0.00004540",
+ "bidQty": "1943.79000000",
+ "askPrice": "0.00004560",
+ "askQty": "321.36000000",
+ "openPrice": "0.00004650",
+ "highPrice": "0.00004790",
+ "lowPrice": "0.00004510",
+ "volume": "746198.96000000",
+ "quoteVolume": "34.61523818",
+ "openTime": 1560210241625,
+ "closeTime": 1560296641625,
+ "firstId": 2006460,
+ "lastId": 2008213,
+ "count": 1754
+ },
+ {
+ "symbol": "NXSETH",
+ "priceChange": "-0.00003200",
+ "priceChangePercent": "-2.121",
+ "weightedAvgPrice": "0.00149684",
+ "prevClosePrice": "0.00150800",
+ "lastPrice": "0.00147700",
+ "lastQty": "108.77000000",
+ "bidPrice": "0.00146100",
+ "bidQty": "110.83000000",
+ "askPrice": "0.00147700",
+ "askQty": "1182.49000000",
+ "openPrice": "0.00150900",
+ "highPrice": "0.00157200",
+ "lowPrice": "0.00145900",
+ "volume": "30600.25000000",
+ "quoteVolume": "45.80369707",
+ "openTime": 1560210241749,
+ "closeTime": 1560296641749,
+ "firstId": 226778,
+ "lastId": 227055,
+ "count": 278
+ },
+ {
+ "symbol": "NXSBNB",
+ "priceChange": "-0.00020000",
+ "priceChangePercent": "-1.724",
+ "weightedAvgPrice": "0.01157243",
+ "prevClosePrice": "0.01160000",
+ "lastPrice": "0.01140000",
+ "lastQty": "1247.71000000",
+ "bidPrice": "0.01120000",
+ "bidQty": "877.22000000",
+ "askPrice": "0.01130000",
+ "askQty": "273.16000000",
+ "openPrice": "0.01160000",
+ "highPrice": "0.01190000",
+ "lowPrice": "0.01130000",
+ "volume": "20953.95000000",
+ "quoteVolume": "242.48818300",
+ "openTime": 1560210229188,
+ "closeTime": 1560296629188,
+ "firstId": 67723,
+ "lastId": 67821,
+ "count": 99
+ },
+ {
+ "symbol": "ENJBNB",
+ "priceChange": "0.00024300",
+ "priceChangePercent": "5.114",
+ "weightedAvgPrice": "0.00495912",
+ "prevClosePrice": "0.00475600",
+ "lastPrice": "0.00499500",
+ "lastQty": "822.00000000",
+ "bidPrice": "0.00497200",
+ "bidQty": "822.00000000",
+ "askPrice": "0.00498900",
+ "askQty": "1557.00000000",
+ "openPrice": "0.00475200",
+ "highPrice": "0.00513800",
+ "lowPrice": "0.00474100",
+ "volume": "1200995.00000000",
+ "quoteVolume": "5955.88209300",
+ "openTime": 1560210238872,
+ "closeTime": 1560296638872,
+ "firstId": 473224,
+ "lastId": 474865,
+ "count": 1642
+ },
+ {
+ "symbol": "DATABTC",
+ "priceChange": "0.00000003",
+ "priceChangePercent": "0.971",
+ "weightedAvgPrice": "0.00000309",
+ "prevClosePrice": "0.00000309",
+ "lastPrice": "0.00000312",
+ "lastQty": "9969.00000000",
+ "bidPrice": "0.00000312",
+ "bidQty": "118236.00000000",
+ "askPrice": "0.00000313",
+ "askQty": "964.00000000",
+ "openPrice": "0.00000309",
+ "highPrice": "0.00000316",
+ "lowPrice": "0.00000303",
+ "volume": "7870539.00000000",
+ "quoteVolume": "24.35154490",
+ "openTime": 1560210238813,
+ "closeTime": 1560296638813,
+ "firstId": 2232909,
+ "lastId": 2234359,
+ "count": 1451
+ },
+ {
+ "symbol": "DATAETH",
+ "priceChange": "0.00000073",
+ "priceChangePercent": "0.728",
+ "weightedAvgPrice": "0.00009979",
+ "prevClosePrice": "0.00009984",
+ "lastPrice": "0.00010104",
+ "lastQty": "302.00000000",
+ "bidPrice": "0.00010017",
+ "bidQty": "52323.00000000",
+ "askPrice": "0.00010092",
+ "askQty": "1115.00000000",
+ "openPrice": "0.00010031",
+ "highPrice": "0.00010209",
+ "lowPrice": "0.00009782",
+ "volume": "277511.00000000",
+ "quoteVolume": "27.69404327",
+ "openTime": 1560210242193,
+ "closeTime": 1560296642193,
+ "firstId": 375328,
+ "lastId": 375722,
+ "count": 395
+ },
+ {
+ "symbol": "ONTUSDT",
+ "priceChange": "0.01930000",
+ "priceChangePercent": "1.379",
+ "weightedAvgPrice": "1.40122361",
+ "prevClosePrice": "1.40070000",
+ "lastPrice": "1.41930000",
+ "lastQty": "415.13000000",
+ "bidPrice": "1.41920000",
+ "bidQty": "704.62000000",
+ "askPrice": "1.42110000",
+ "askQty": "164.08000000",
+ "openPrice": "1.40000000",
+ "highPrice": "1.44000000",
+ "lowPrice": "1.36120000",
+ "volume": "3457406.39000000",
+ "quoteVolume": "4844599.46294600",
+ "openTime": 1560210241949,
+ "closeTime": 1560296641949,
+ "firstId": 8769757,
+ "lastId": 8786427,
+ "count": 16671
+ },
+ {
+ "symbol": "TRXBNB",
+ "priceChange": "-0.00000900",
+ "priceChangePercent": "-0.915",
+ "weightedAvgPrice": "0.00097151",
+ "prevClosePrice": "0.00098500",
+ "lastPrice": "0.00097500",
+ "lastQty": "1394.00000000",
+ "bidPrice": "0.00097400",
+ "bidQty": "30114.00000000",
+ "askPrice": "0.00097500",
+ "askQty": "1394.00000000",
+ "openPrice": "0.00098400",
+ "highPrice": "0.00099500",
+ "lowPrice": "0.00095700",
+ "volume": "21616168.00000000",
+ "quoteVolume": "21000.35266400",
+ "openTime": 1560210240475,
+ "closeTime": 1560296640475,
+ "firstId": 1247997,
+ "lastId": 1252867,
+ "count": 4871
+ },
+ {
+ "symbol": "TRXUSDT",
+ "priceChange": "-0.00031000",
+ "priceChangePercent": "-0.986",
+ "weightedAvgPrice": "0.03064353",
+ "prevClosePrice": "0.03146000",
+ "lastPrice": "0.03114000",
+ "lastQty": "269491.00000000",
+ "bidPrice": "0.03112000",
+ "bidQty": "24217.30000000",
+ "askPrice": "0.03115000",
+ "askQty": "10736.90000000",
+ "openPrice": "0.03145000",
+ "highPrice": "0.03158000",
+ "lowPrice": "0.02983000",
+ "volume": "595084477.60000000",
+ "quoteVolume": "18235491.34168100",
+ "openTime": 1560210241716,
+ "closeTime": 1560296641716,
+ "firstId": 13890951,
+ "lastId": 13930501,
+ "count": 39551
+ },
+ {
+ "symbol": "ETCUSDT",
+ "priceChange": "-0.05020000",
+ "priceChangePercent": "-0.607",
+ "weightedAvgPrice": "8.14996956",
+ "prevClosePrice": "8.27930000",
+ "lastPrice": "8.22570000",
+ "lastQty": "121.93000000",
+ "bidPrice": "8.21920000",
+ "bidQty": "99.26000000",
+ "askPrice": "8.22810000",
+ "askQty": "100.00000000",
+ "openPrice": "8.27590000",
+ "highPrice": "8.32960000",
+ "lowPrice": "8.00000000",
+ "volume": "471056.09000000",
+ "quoteVolume": "3839092.79417800",
+ "openTime": 1560210241851,
+ "closeTime": 1560296641851,
+ "firstId": 5554327,
+ "lastId": 5564722,
+ "count": 10396
+ },
+ {
+ "symbol": "ETCBNB",
+ "priceChange": "-0.00190000",
+ "priceChangePercent": "-0.731",
+ "weightedAvgPrice": "0.25878667",
+ "prevClosePrice": "0.25950000",
+ "lastPrice": "0.25790000",
+ "lastQty": "176.97000000",
+ "bidPrice": "0.25790000",
+ "bidQty": "99.26000000",
+ "askPrice": "0.25820000",
+ "askQty": "55.20000000",
+ "openPrice": "0.25980000",
+ "highPrice": "0.26280000",
+ "lowPrice": "0.25510000",
+ "volume": "8302.39000000",
+ "quoteVolume": "2148.54789000",
+ "openTime": 1560210238746,
+ "closeTime": 1560296638746,
+ "firstId": 352925,
+ "lastId": 353614,
+ "count": 690
+ },
+ {
+ "symbol": "ICXUSDT",
+ "priceChange": "0.00040000",
+ "priceChangePercent": "0.106",
+ "weightedAvgPrice": "0.37198708",
+ "prevClosePrice": "0.37680000",
+ "lastPrice": "0.37680000",
+ "lastQty": "1618.16000000",
+ "bidPrice": "0.37680000",
+ "bidQty": "232.20000000",
+ "askPrice": "0.37800000",
+ "askQty": "628.92000000",
+ "openPrice": "0.37640000",
+ "highPrice": "0.38200000",
+ "lowPrice": "0.35800000",
+ "volume": "4602877.26000000",
+ "quoteVolume": "1712210.85226100",
+ "openTime": 1560210234256,
+ "closeTime": 1560296634256,
+ "firstId": 4531957,
+ "lastId": 4538151,
+ "count": 6195
+ },
+ {
+ "symbol": "SCBTC",
+ "priceChange": "0.00000001",
+ "priceChangePercent": "2.564",
+ "weightedAvgPrice": "0.00000040",
+ "prevClosePrice": "0.00000039",
+ "lastPrice": "0.00000040",
+ "lastQty": "14144.00000000",
+ "bidPrice": "0.00000040",
+ "bidQty": "2976496.00000000",
+ "askPrice": "0.00000041",
+ "askQty": "59716617.00000000",
+ "openPrice": "0.00000039",
+ "highPrice": "0.00000041",
+ "lowPrice": "0.00000039",
+ "volume": "174941304.00000000",
+ "quoteVolume": "69.69514044",
+ "openTime": 1560210239732,
+ "closeTime": 1560296639732,
+ "firstId": 1596148,
+ "lastId": 1597304,
+ "count": 1157
+ },
+ {
+ "symbol": "SCETH",
+ "priceChange": "0.00000006",
+ "priceChangePercent": "0.466",
+ "weightedAvgPrice": "0.00001286",
+ "prevClosePrice": "0.00001288",
+ "lastPrice": "0.00001294",
+ "lastQty": "20620.00000000",
+ "bidPrice": "0.00001289",
+ "bidQty": "20209.00000000",
+ "askPrice": "0.00001295",
+ "askQty": "12284.00000000",
+ "openPrice": "0.00001288",
+ "highPrice": "0.00001308",
+ "lowPrice": "0.00001270",
+ "volume": "24698412.00000000",
+ "quoteVolume": "317.56269588",
+ "openTime": 1560210236511,
+ "closeTime": 1560296636511,
+ "firstId": 611374,
+ "lastId": 613350,
+ "count": 1977
+ },
+ {
+ "symbol": "SCBNB",
+ "priceChange": "0.00000100",
+ "priceChangePercent": "1.010",
+ "weightedAvgPrice": "0.00009888",
+ "prevClosePrice": "0.00009900",
+ "lastPrice": "0.00010000",
+ "lastQty": "175860.00000000",
+ "bidPrice": "0.00009900",
+ "bidQty": "1992188.00000000",
+ "askPrice": "0.00010000",
+ "askQty": "3083869.00000000",
+ "openPrice": "0.00009900",
+ "highPrice": "0.00010100",
+ "lowPrice": "0.00009800",
+ "volume": "16753304.00000000",
+ "quoteVolume": "1656.59912500",
+ "openTime": 1560210236934,
+ "closeTime": 1560296636934,
+ "firstId": 147853,
+ "lastId": 148268,
+ "count": 416
+ },
+ {
+ "symbol": "NPXSBTC",
+ "priceChange": "0.00000001",
+ "priceChangePercent": "10.000",
+ "weightedAvgPrice": "0.00000011",
+ "prevClosePrice": "0.00000011",
+ "lastPrice": "0.00000011",
+ "lastQty": "69265.00000000",
+ "bidPrice": "0.00000010",
+ "bidQty": "3515195577.00000000",
+ "askPrice": "0.00000011",
+ "askQty": "1489026330.00000000",
+ "openPrice": "0.00000010",
+ "highPrice": "0.00000011",
+ "lowPrice": "0.00000010",
+ "volume": "971255442.00000000",
+ "quoteVolume": "102.03278408",
+ "openTime": 1560210229370,
+ "closeTime": 1560296629370,
+ "firstId": 2870490,
+ "lastId": 2872129,
+ "count": 1640
+ },
+ {
+ "symbol": "NPXSETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00000347",
+ "prevClosePrice": "0.00000346",
+ "lastPrice": "0.00000346",
+ "lastQty": "511652.00000000",
+ "bidPrice": "0.00000346",
+ "bidQty": "248183.00000000",
+ "askPrice": "0.00000347",
+ "askQty": "1747992.00000000",
+ "openPrice": "0.00000346",
+ "highPrice": "0.00000353",
+ "lowPrice": "0.00000342",
+ "volume": "982405636.00000000",
+ "quoteVolume": "3412.95934411",
+ "openTime": 1560210240289,
+ "closeTime": 1560296640289,
+ "firstId": 2224356,
+ "lastId": 2229552,
+ "count": 5197
+ },
+ {
+ "symbol": "VENUSDT",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00010000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998662933,
+ "closeTime": 1558085062933,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "KEYBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00000043",
+ "prevClosePrice": "0.00000042",
+ "lastPrice": "0.00000042",
+ "lastQty": "34755.00000000",
+ "bidPrice": "0.00000042",
+ "bidQty": "19501243.00000000",
+ "askPrice": "0.00000043",
+ "askQty": "18207238.00000000",
+ "openPrice": "0.00000042",
+ "highPrice": "0.00000044",
+ "lowPrice": "0.00000042",
+ "volume": "59547093.00000000",
+ "quoteVolume": "25.33629843",
+ "openTime": 1560210212924,
+ "closeTime": 1560296612924,
+ "firstId": 4226188,
+ "lastId": 4227075,
+ "count": 888
+ },
+ {
+ "symbol": "KEYETH",
+ "priceChange": "-0.00000015",
+ "priceChangePercent": "-1.080",
+ "weightedAvgPrice": "0.00001377",
+ "prevClosePrice": "0.00001394",
+ "lastPrice": "0.00001374",
+ "lastQty": "754257.00000000",
+ "bidPrice": "0.00001374",
+ "bidQty": "420214.00000000",
+ "askPrice": "0.00001375",
+ "askQty": "801.00000000",
+ "openPrice": "0.00001389",
+ "highPrice": "0.00001414",
+ "lowPrice": "0.00001357",
+ "volume": "11225731.00000000",
+ "quoteVolume": "154.61654534",
+ "openTime": 1560210197386,
+ "closeTime": 1560296597386,
+ "firstId": 1039519,
+ "lastId": 1039904,
+ "count": 386
+ },
+ {
+ "symbol": "NASBTC",
+ "priceChange": "0.00000340",
+ "priceChangePercent": "1.563",
+ "weightedAvgPrice": "0.00022581",
+ "prevClosePrice": "0.00021750",
+ "lastPrice": "0.00022090",
+ "lastQty": "7.62000000",
+ "bidPrice": "0.00022020",
+ "bidQty": "488.33000000",
+ "askPrice": "0.00022100",
+ "askQty": "1268.30000000",
+ "openPrice": "0.00021750",
+ "highPrice": "0.00024940",
+ "lowPrice": "0.00021130",
+ "volume": "5562051.12000000",
+ "quoteVolume": "1255.98692235",
+ "openTime": 1560210240728,
+ "closeTime": 1560296640728,
+ "firstId": 2973917,
+ "lastId": 3006908,
+ "count": 32992
+ },
+ {
+ "symbol": "NASETH",
+ "priceChange": "0.00003500",
+ "priceChangePercent": "0.497",
+ "weightedAvgPrice": "0.00737806",
+ "prevClosePrice": "0.00703900",
+ "lastPrice": "0.00708400",
+ "lastQty": "21.70000000",
+ "bidPrice": "0.00708300",
+ "bidQty": "196.72000000",
+ "askPrice": "0.00711900",
+ "askQty": "21.70000000",
+ "openPrice": "0.00704900",
+ "highPrice": "0.00808700",
+ "lowPrice": "0.00683600",
+ "volume": "379292.35000000",
+ "quoteVolume": "2798.44211581",
+ "openTime": 1560210242350,
+ "closeTime": 1560296642350,
+ "firstId": 1097020,
+ "lastId": 1103700,
+ "count": 6681
+ },
+ {
+ "symbol": "NASBNB",
+ "priceChange": "0.00019000",
+ "priceChangePercent": "0.350",
+ "weightedAvgPrice": "0.05667784",
+ "prevClosePrice": "0.05477000",
+ "lastPrice": "0.05448000",
+ "lastQty": "2163.20000000",
+ "bidPrice": "0.05435000",
+ "bidQty": "165.00000000",
+ "askPrice": "0.05474000",
+ "askQty": "149.00000000",
+ "openPrice": "0.05429000",
+ "highPrice": "0.06259000",
+ "lowPrice": "0.05277000",
+ "volume": "148953.50000000",
+ "quoteVolume": "8442.36204600",
+ "openTime": 1560210229303,
+ "closeTime": 1560296629303,
+ "firstId": 70367,
+ "lastId": 72250,
+ "count": 1884
+ },
+ {
+ "symbol": "MFTBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00000044",
+ "prevClosePrice": "0.00000044",
+ "lastPrice": "0.00000044",
+ "lastQty": "7972219.00000000",
+ "bidPrice": "0.00000043",
+ "bidQty": "114033113.00000000",
+ "askPrice": "0.00000044",
+ "askQty": "41928472.00000000",
+ "openPrice": "0.00000044",
+ "highPrice": "0.00000046",
+ "lowPrice": "0.00000043",
+ "volume": "646733476.00000000",
+ "quoteVolume": "285.05461444",
+ "openTime": 1560210219665,
+ "closeTime": 1560296619665,
+ "firstId": 3221951,
+ "lastId": 3225220,
+ "count": 3270
+ },
+ {
+ "symbol": "MFTETH",
+ "priceChange": "-0.00000005",
+ "priceChangePercent": "-0.352",
+ "weightedAvgPrice": "0.00001422",
+ "prevClosePrice": "0.00001426",
+ "lastPrice": "0.00001417",
+ "lastQty": "9921.00000000",
+ "bidPrice": "0.00001413",
+ "bidQty": "213466.00000000",
+ "askPrice": "0.00001417",
+ "askQty": "74893.00000000",
+ "openPrice": "0.00001422",
+ "highPrice": "0.00001482",
+ "lowPrice": "0.00001397",
+ "volume": "101503345.00000000",
+ "quoteVolume": "1443.34802336",
+ "openTime": 1560210231775,
+ "closeTime": 1560296631775,
+ "firstId": 1183375,
+ "lastId": 1185627,
+ "count": 2253
+ },
+ {
+ "symbol": "MFTBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00010972",
+ "prevClosePrice": "0.00010900",
+ "lastPrice": "0.00010900",
+ "lastQty": "611851.00000000",
+ "bidPrice": "0.00010800",
+ "bidQty": "68527.00000000",
+ "askPrice": "0.00010900",
+ "askQty": "231495.00000000",
+ "openPrice": "0.00010900",
+ "highPrice": "0.00011400",
+ "lowPrice": "0.00010800",
+ "volume": "35296989.00000000",
+ "quoteVolume": "3872.63980500",
+ "openTime": 1560210221063,
+ "closeTime": 1560296621063,
+ "firstId": 244796,
+ "lastId": 245900,
+ "count": 1105
+ },
+ {
+ "symbol": "DENTBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00000023",
+ "prevClosePrice": "0.00000024",
+ "lastPrice": "0.00000024",
+ "lastQty": "1063245.00000000",
+ "bidPrice": "0.00000023",
+ "bidQty": "221629018.00000000",
+ "askPrice": "0.00000024",
+ "askQty": "168110581.00000000",
+ "openPrice": "0.00000024",
+ "highPrice": "0.00000024",
+ "lowPrice": "0.00000023",
+ "volume": "268111188.00000000",
+ "quoteVolume": "62.11767308",
+ "openTime": 1560210199668,
+ "closeTime": 1560296599668,
+ "firstId": 1807888,
+ "lastId": 1808763,
+ "count": 876
+ },
+ {
+ "symbol": "DENTETH",
+ "priceChange": "-0.00000004",
+ "priceChangePercent": "-0.531",
+ "weightedAvgPrice": "0.00000746",
+ "prevClosePrice": "0.00000754",
+ "lastPrice": "0.00000749",
+ "lastQty": "48273.00000000",
+ "bidPrice": "0.00000748",
+ "bidQty": "30400.00000000",
+ "askPrice": "0.00000749",
+ "askQty": "180500.00000000",
+ "openPrice": "0.00000753",
+ "highPrice": "0.00000757",
+ "lowPrice": "0.00000737",
+ "volume": "30823167.00000000",
+ "quoteVolume": "229.82589933",
+ "openTime": 1560210238842,
+ "closeTime": 1560296638842,
+ "firstId": 799529,
+ "lastId": 801261,
+ "count": 1733
+ },
+ {
+ "symbol": "ARDRBTC",
+ "priceChange": "0.00000051",
+ "priceChangePercent": "4.096",
+ "weightedAvgPrice": "0.00001276",
+ "prevClosePrice": "0.00001246",
+ "lastPrice": "0.00001296",
+ "lastQty": "155.00000000",
+ "bidPrice": "0.00001289",
+ "bidQty": "469.00000000",
+ "askPrice": "0.00001293",
+ "askQty": "1409.00000000",
+ "openPrice": "0.00001245",
+ "highPrice": "0.00001331",
+ "lowPrice": "0.00001240",
+ "volume": "5914463.00000000",
+ "quoteVolume": "75.48307569",
+ "openTime": 1560210242056,
+ "closeTime": 1560296642056,
+ "firstId": 1495324,
+ "lastId": 1500812,
+ "count": 5489
+ },
+ {
+ "symbol": "ARDRETH",
+ "priceChange": "0.00001570",
+ "priceChangePercent": "3.900",
+ "weightedAvgPrice": "0.00041127",
+ "prevClosePrice": "0.00040254",
+ "lastPrice": "0.00041824",
+ "lastQty": "154.00000000",
+ "bidPrice": "0.00041484",
+ "bidQty": "156.00000000",
+ "askPrice": "0.00041822",
+ "askQty": "307.00000000",
+ "openPrice": "0.00040254",
+ "highPrice": "0.00042971",
+ "lowPrice": "0.00040079",
+ "volume": "628264.00000000",
+ "quoteVolume": "258.38330171",
+ "openTime": 1560210237854,
+ "closeTime": 1560296637854,
+ "firstId": 285573,
+ "lastId": 286835,
+ "count": 1263
+ },
+ {
+ "symbol": "ARDRBNB",
+ "priceChange": "0.00001000",
+ "priceChangePercent": "0.314",
+ "weightedAvgPrice": "0.00319576",
+ "prevClosePrice": "0.00311000",
+ "lastPrice": "0.00319000",
+ "lastQty": "697.10000000",
+ "bidPrice": "0.00318000",
+ "bidQty": "3556.00000000",
+ "askPrice": "0.00321000",
+ "askQty": "233.00000000",
+ "openPrice": "0.00318000",
+ "highPrice": "0.00330000",
+ "lowPrice": "0.00311000",
+ "volume": "291033.80000000",
+ "quoteVolume": "930.07528400",
+ "openTime": 1560210230116,
+ "closeTime": 1560296630116,
+ "firstId": 65787,
+ "lastId": 66169,
+ "count": 383
+ },
+ {
+ "symbol": "NULSUSDT",
+ "priceChange": "-0.02800000",
+ "priceChangePercent": "-2.918",
+ "weightedAvgPrice": "0.93230148",
+ "prevClosePrice": "0.95780000",
+ "lastPrice": "0.93160000",
+ "lastQty": "142.99000000",
+ "bidPrice": "0.92770000",
+ "bidQty": "171.62000000",
+ "askPrice": "0.93160000",
+ "askQty": "176.27000000",
+ "openPrice": "0.95960000",
+ "highPrice": "1.00150000",
+ "lowPrice": "0.88510000",
+ "volume": "1804112.09000000",
+ "quoteVolume": "1681976.36555300",
+ "openTime": 1560210241206,
+ "closeTime": 1560296641206,
+ "firstId": 1746724,
+ "lastId": 1759251,
+ "count": 12528
+ },
+ {
+ "symbol": "HOTBTC",
+ "priceChange": "-0.00000001",
+ "priceChangePercent": "-4.167",
+ "weightedAvgPrice": "0.00000023",
+ "prevClosePrice": "0.00000024",
+ "lastPrice": "0.00000023",
+ "lastQty": "30134.00000000",
+ "bidPrice": "0.00000022",
+ "bidQty": "482614693.00000000",
+ "askPrice": "0.00000023",
+ "askQty": "313912795.00000000",
+ "openPrice": "0.00000024",
+ "highPrice": "0.00000024",
+ "lowPrice": "0.00000022",
+ "volume": "694182698.00000000",
+ "quoteVolume": "156.99502189",
+ "openTime": 1560210230625,
+ "closeTime": 1560296630625,
+ "firstId": 2207948,
+ "lastId": 2209796,
+ "count": 1849
+ },
+ {
+ "symbol": "HOTETH",
+ "priceChange": "-0.00000025",
+ "priceChangePercent": "-3.320",
+ "weightedAvgPrice": "0.00000735",
+ "prevClosePrice": "0.00000754",
+ "lastPrice": "0.00000728",
+ "lastQty": "5411.00000000",
+ "bidPrice": "0.00000726",
+ "bidQty": "14460.00000000",
+ "askPrice": "0.00000728",
+ "askQty": "990.00000000",
+ "openPrice": "0.00000753",
+ "highPrice": "0.00000754",
+ "lowPrice": "0.00000725",
+ "volume": "470333850.00000000",
+ "quoteVolume": "3455.13777108",
+ "openTime": 1560210241975,
+ "closeTime": 1560296641975,
+ "firstId": 2648754,
+ "lastId": 2656591,
+ "count": 7838
+ },
+ {
+ "symbol": "VETBTC",
+ "priceChange": "-0.00000003",
+ "priceChangePercent": "-3.093",
+ "weightedAvgPrice": "0.00000095",
+ "prevClosePrice": "0.00000096",
+ "lastPrice": "0.00000094",
+ "lastQty": "43560.00000000",
+ "bidPrice": "0.00000094",
+ "bidQty": "7933654.00000000",
+ "askPrice": "0.00000095",
+ "askQty": "11355052.00000000",
+ "openPrice": "0.00000097",
+ "highPrice": "0.00000098",
+ "lowPrice": "0.00000094",
+ "volume": "257602419.00000000",
+ "quoteVolume": "245.95465015",
+ "openTime": 1560210240660,
+ "closeTime": 1560296640660,
+ "firstId": 4082402,
+ "lastId": 4086106,
+ "count": 3705
+ },
+ {
+ "symbol": "VETETH",
+ "priceChange": "-0.00000069",
+ "priceChangePercent": "-2.209",
+ "weightedAvgPrice": "0.00003089",
+ "prevClosePrice": "0.00003122",
+ "lastPrice": "0.00003054",
+ "lastQty": "12063.00000000",
+ "bidPrice": "0.00003050",
+ "bidQty": "18164.00000000",
+ "askPrice": "0.00003057",
+ "askQty": "54891.00000000",
+ "openPrice": "0.00003123",
+ "highPrice": "0.00003146",
+ "lowPrice": "0.00003036",
+ "volume": "34303283.00000000",
+ "quoteVolume": "1059.53437179",
+ "openTime": 1560210242347,
+ "closeTime": 1560296642347,
+ "firstId": 2125913,
+ "lastId": 2128270,
+ "count": 2358
+ },
+ {
+ "symbol": "VETUSDT",
+ "priceChange": "-0.00023200",
+ "priceChangePercent": "-3.015",
+ "weightedAvgPrice": "0.00751102",
+ "prevClosePrice": "0.00769800",
+ "lastPrice": "0.00746400",
+ "lastQty": "3000.00000000",
+ "bidPrice": "0.00746700",
+ "bidQty": "25276.00000000",
+ "askPrice": "0.00749800",
+ "askQty": "3361.00000000",
+ "openPrice": "0.00769600",
+ "highPrice": "0.00771600",
+ "lowPrice": "0.00730000",
+ "volume": "279169463.00000000",
+ "quoteVolume": "2096846.46945900",
+ "openTime": 1560210240597,
+ "closeTime": 1560296640597,
+ "firstId": 4218776,
+ "lastId": 4225360,
+ "count": 6585
+ },
+ {
+ "symbol": "VETBNB",
+ "priceChange": "-0.00000670",
+ "priceChangePercent": "-2.781",
+ "weightedAvgPrice": "0.00023836",
+ "prevClosePrice": "0.00024200",
+ "lastPrice": "0.00023420",
+ "lastQty": "30227.00000000",
+ "bidPrice": "0.00023390",
+ "bidQty": "88812.00000000",
+ "askPrice": "0.00023440",
+ "askQty": "50281.00000000",
+ "openPrice": "0.00024090",
+ "highPrice": "0.00024320",
+ "lowPrice": "0.00023350",
+ "volume": "30343523.00000000",
+ "quoteVolume": "7232.66712280",
+ "openTime": 1560210241582,
+ "closeTime": 1560296641582,
+ "firstId": 545138,
+ "lastId": 547558,
+ "count": 2421
+ },
+ {
+ "symbol": "DOCKBTC",
+ "priceChange": "0.00000007",
+ "priceChangePercent": "4.046",
+ "weightedAvgPrice": "0.00000175",
+ "prevClosePrice": "0.00000174",
+ "lastPrice": "0.00000180",
+ "lastQty": "164193.00000000",
+ "bidPrice": "0.00000179",
+ "bidQty": "231486.00000000",
+ "askPrice": "0.00000180",
+ "askQty": "71582.00000000",
+ "openPrice": "0.00000173",
+ "highPrice": "0.00000183",
+ "lowPrice": "0.00000170",
+ "volume": "44146957.00000000",
+ "quoteVolume": "77.31624712",
+ "openTime": 1560210241625,
+ "closeTime": 1560296641625,
+ "firstId": 3343016,
+ "lastId": 3348994,
+ "count": 5979
+ },
+ {
+ "symbol": "DOCKETH",
+ "priceChange": "0.00000195",
+ "priceChangePercent": "3.465",
+ "weightedAvgPrice": "0.00005668",
+ "prevClosePrice": "0.00005625",
+ "lastPrice": "0.00005822",
+ "lastQty": "370.00000000",
+ "bidPrice": "0.00005758",
+ "bidQty": "17234.00000000",
+ "askPrice": "0.00005813",
+ "askQty": "3889.00000000",
+ "openPrice": "0.00005627",
+ "highPrice": "0.00005900",
+ "lowPrice": "0.00005484",
+ "volume": "1830586.00000000",
+ "quoteVolume": "103.76672252",
+ "openTime": 1560210238569,
+ "closeTime": 1560296638569,
+ "firstId": 548530,
+ "lastId": 549408,
+ "count": 879
+ },
+ {
+ "symbol": "POLYBTC",
+ "priceChange": "0.00000067",
+ "priceChangePercent": "5.386",
+ "weightedAvgPrice": "0.00001295",
+ "prevClosePrice": "0.00001244",
+ "lastPrice": "0.00001311",
+ "lastQty": "97.00000000",
+ "bidPrice": "0.00001312",
+ "bidQty": "1853.00000000",
+ "askPrice": "0.00001315",
+ "askQty": "77.00000000",
+ "openPrice": "0.00001244",
+ "highPrice": "0.00001350",
+ "lowPrice": "0.00001238",
+ "volume": "36126308.00000000",
+ "quoteVolume": "467.75519947",
+ "openTime": 1560210242102,
+ "closeTime": 1560296642102,
+ "firstId": 2904502,
+ "lastId": 2923096,
+ "count": 18595
+ },
+ {
+ "symbol": "POLYBNB",
+ "priceChange": "0.00014000",
+ "priceChangePercent": "4.516",
+ "weightedAvgPrice": "0.00323491",
+ "prevClosePrice": "0.00309000",
+ "lastPrice": "0.00324000",
+ "lastQty": "765.10000000",
+ "bidPrice": "0.00323000",
+ "bidQty": "26371.40000000",
+ "askPrice": "0.00325000",
+ "askQty": "56.00000000",
+ "openPrice": "0.00310000",
+ "highPrice": "0.00339000",
+ "lowPrice": "0.00308000",
+ "volume": "1757360.40000000",
+ "quoteVolume": "5684.90322400",
+ "openTime": 1560210241309,
+ "closeTime": 1560296641309,
+ "firstId": 149995,
+ "lastId": 151410,
+ "count": 1416
+ },
+ {
+ "symbol": "PHXBTC",
+ "priceChange": "-0.00000035",
+ "priceChangePercent": "-16.279",
+ "weightedAvgPrice": "0.00000186",
+ "prevClosePrice": "0.00000216",
+ "lastPrice": "0.00000180",
+ "lastQty": "37023.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000215",
+ "highPrice": "0.00000218",
+ "lowPrice": "0.00000171",
+ "volume": "619076073.00000000",
+ "quoteVolume": "1150.99531032",
+ "openTime": 1558413271188,
+ "closeTime": 1558499671188,
+ "firstId": 3778964,
+ "lastId": 3813995,
+ "count": 35032
+ },
+ {
+ "symbol": "PHXETH",
+ "priceChange": "-0.00001182",
+ "priceChangePercent": "-17.385",
+ "weightedAvgPrice": "0.00005821",
+ "prevClosePrice": "0.00006742",
+ "lastPrice": "0.00005617",
+ "lastQty": "948.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00006799",
+ "highPrice": "0.00006866",
+ "lowPrice": "0.00005273",
+ "volume": "22929178.00000000",
+ "quoteVolume": "1334.81645843",
+ "openTime": 1558413243081,
+ "closeTime": 1558499643081,
+ "firstId": 517841,
+ "lastId": 521807,
+ "count": 3967
+ },
+ {
+ "symbol": "PHXBNB",
+ "priceChange": "-0.00014400",
+ "priceChangePercent": "-24.000",
+ "weightedAvgPrice": "0.00049428",
+ "prevClosePrice": "0.00060500",
+ "lastPrice": "0.00045600",
+ "lastQty": "8954.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00060000",
+ "highPrice": "0.00061300",
+ "lowPrice": "0.00042900",
+ "volume": "38905794.00000000",
+ "quoteVolume": "19230.24078400",
+ "openTime": 1558413259444,
+ "closeTime": 1558499659444,
+ "firstId": 131885,
+ "lastId": 136239,
+ "count": 4355
+ },
+ {
+ "symbol": "HCBTC",
+ "priceChange": "-0.00002010",
+ "priceChangePercent": "-6.867",
+ "weightedAvgPrice": "0.00028056",
+ "prevClosePrice": "0.00029270",
+ "lastPrice": "0.00027260",
+ "lastQty": "4.37000000",
+ "bidPrice": "0.00027260",
+ "bidQty": "52.51000000",
+ "askPrice": "0.00027400",
+ "askQty": "85.55000000",
+ "openPrice": "0.00029270",
+ "highPrice": "0.00029830",
+ "lowPrice": "0.00027120",
+ "volume": "494426.45000000",
+ "quoteVolume": "138.71792410",
+ "openTime": 1560210242189,
+ "closeTime": 1560296642189,
+ "firstId": 2742275,
+ "lastId": 2753233,
+ "count": 10959
+ },
+ {
+ "symbol": "HCETH",
+ "priceChange": "-0.00072000",
+ "priceChangePercent": "-7.561",
+ "weightedAvgPrice": "0.00906047",
+ "prevClosePrice": "0.00948700",
+ "lastPrice": "0.00880200",
+ "lastQty": "3.69000000",
+ "bidPrice": "0.00878000",
+ "bidQty": "25.99000000",
+ "askPrice": "0.00886500",
+ "askQty": "25.16000000",
+ "openPrice": "0.00952200",
+ "highPrice": "0.00965900",
+ "lowPrice": "0.00872500",
+ "volume": "52059.79000000",
+ "quoteVolume": "471.68613047",
+ "openTime": 1560210242021,
+ "closeTime": 1560296642021,
+ "firstId": 715921,
+ "lastId": 718936,
+ "count": 3016
+ },
+ {
+ "symbol": "GOBTC",
+ "priceChange": "0.00000010",
+ "priceChangePercent": "3.300",
+ "weightedAvgPrice": "0.00000321",
+ "prevClosePrice": "0.00000304",
+ "lastPrice": "0.00000313",
+ "lastQty": "13129.00000000",
+ "bidPrice": "0.00000312",
+ "bidQty": "400.00000000",
+ "askPrice": "0.00000313",
+ "askQty": "30773.00000000",
+ "openPrice": "0.00000303",
+ "highPrice": "0.00000338",
+ "lowPrice": "0.00000295",
+ "volume": "74750116.00000000",
+ "quoteVolume": "240.25268721",
+ "openTime": 1560210242345,
+ "closeTime": 1560296642345,
+ "firstId": 3038878,
+ "lastId": 3048713,
+ "count": 9836
+ },
+ {
+ "symbol": "GOBNB",
+ "priceChange": "0.00001700",
+ "priceChangePercent": "2.246",
+ "weightedAvgPrice": "0.00079147",
+ "prevClosePrice": "0.00076000",
+ "lastPrice": "0.00077400",
+ "lastQty": "96266.00000000",
+ "bidPrice": "0.00077000",
+ "bidQty": "2020.00000000",
+ "askPrice": "0.00077400",
+ "askQty": "10968.00000000",
+ "openPrice": "0.00075700",
+ "highPrice": "0.00084400",
+ "lowPrice": "0.00074300",
+ "volume": "3405523.00000000",
+ "quoteVolume": "2695.37095500",
+ "openTime": 1560210242163,
+ "closeTime": 1560296642163,
+ "firstId": 172767,
+ "lastId": 173771,
+ "count": 1005
+ },
+ {
+ "symbol": "PAXBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00025175",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998679294,
+ "closeTime": 1558085079294,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "PAXBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.20121000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998679649,
+ "closeTime": 1558085079649,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "PAXUSDT",
+ "priceChange": "-0.00040000",
+ "priceChangePercent": "-0.040",
+ "weightedAvgPrice": "0.99527927",
+ "prevClosePrice": "0.99540000",
+ "lastPrice": "0.99500000",
+ "lastQty": "38.28000000",
+ "bidPrice": "0.99510000",
+ "bidQty": "270.49000000",
+ "askPrice": "0.99530000",
+ "askQty": "11.00000000",
+ "openPrice": "0.99540000",
+ "highPrice": "0.99750000",
+ "lowPrice": "0.99360000",
+ "volume": "6363268.50000000",
+ "quoteVolume": "6333229.24259200",
+ "openTime": 1560210241771,
+ "closeTime": 1560296641771,
+ "firstId": 5978601,
+ "lastId": 5998484,
+ "count": 19884
+ },
+ {
+ "symbol": "PAXETH",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00888047",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998681372,
+ "closeTime": 1558085081372,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "RVNBTC",
+ "priceChange": "-0.00000014",
+ "priceChangePercent": "-1.671",
+ "weightedAvgPrice": "0.00000824",
+ "prevClosePrice": "0.00000837",
+ "lastPrice": "0.00000824",
+ "lastQty": "47414.00000000",
+ "bidPrice": "0.00000824",
+ "bidQty": "5579.00000000",
+ "askPrice": "0.00000825",
+ "askQty": "162725.00000000",
+ "openPrice": "0.00000838",
+ "highPrice": "0.00000843",
+ "lowPrice": "0.00000813",
+ "volume": "90985579.00000000",
+ "quoteVolume": "749.67694862",
+ "openTime": 1560210238818,
+ "closeTime": 1560296638818,
+ "firstId": 8034300,
+ "lastId": 8048178,
+ "count": 13879
+ },
+ {
+ "symbol": "RVNBNB",
+ "priceChange": "-0.00005000",
+ "priceChangePercent": "-2.392",
+ "weightedAvgPrice": "0.00206612",
+ "prevClosePrice": "0.00209100",
+ "lastPrice": "0.00204000",
+ "lastQty": "1000.00000000",
+ "bidPrice": "0.00203400",
+ "bidQty": "704.00000000",
+ "askPrice": "0.00204100",
+ "askQty": "1698.00000000",
+ "openPrice": "0.00209000",
+ "highPrice": "0.00218700",
+ "lowPrice": "0.00202100",
+ "volume": "4002048.00000000",
+ "quoteVolume": "8268.71250500",
+ "openTime": 1560210234416,
+ "closeTime": 1560296634416,
+ "firstId": 621833,
+ "lastId": 623516,
+ "count": 1684
+ },
+ {
+ "symbol": "DCRBTC",
+ "priceChange": "0.00010900",
+ "priceChangePercent": "3.164",
+ "weightedAvgPrice": "0.00350972",
+ "prevClosePrice": "0.00344400",
+ "lastPrice": "0.00355400",
+ "lastQty": "0.30900000",
+ "bidPrice": "0.00354700",
+ "bidQty": "2.05700000",
+ "askPrice": "0.00355400",
+ "askQty": "0.22400000",
+ "openPrice": "0.00344500",
+ "highPrice": "0.00361000",
+ "lowPrice": "0.00343500",
+ "volume": "17960.26400000",
+ "quoteVolume": "63.03555774",
+ "openTime": 1560210242069,
+ "closeTime": 1560296642069,
+ "firstId": 1006307,
+ "lastId": 1009868,
+ "count": 3562
+ },
+ {
+ "symbol": "DCRBNB",
+ "priceChange": "0.01900000",
+ "priceChangePercent": "2.204",
+ "weightedAvgPrice": "0.87828717",
+ "prevClosePrice": "0.86100000",
+ "lastPrice": "0.88100000",
+ "lastQty": "3.73100000",
+ "bidPrice": "0.87500000",
+ "bidQty": "3.19800000",
+ "askPrice": "0.87900000",
+ "askQty": "0.11500000",
+ "openPrice": "0.86200000",
+ "highPrice": "0.89700000",
+ "lowPrice": "0.85900000",
+ "volume": "801.29500000",
+ "quoteVolume": "703.76711500",
+ "openTime": 1560210226120,
+ "closeTime": 1560296626120,
+ "firstId": 71442,
+ "lastId": 71729,
+ "count": 288
+ },
+ {
+ "symbol": "USDCBNB",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.21755000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998682639,
+ "closeTime": 1558085082639,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "USDCBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.00031132",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998682840,
+ "closeTime": 1558085082840,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "MITHBTC",
+ "priceChange": "-0.00000029",
+ "priceChangePercent": "-4.096",
+ "weightedAvgPrice": "0.00000708",
+ "prevClosePrice": "0.00000709",
+ "lastPrice": "0.00000679",
+ "lastQty": "7242.00000000",
+ "bidPrice": "0.00000678",
+ "bidQty": "4236.00000000",
+ "askPrice": "0.00000679",
+ "askQty": "35760.00000000",
+ "openPrice": "0.00000708",
+ "highPrice": "0.00000782",
+ "lowPrice": "0.00000655",
+ "volume": "188279528.00000000",
+ "quoteVolume": "1333.48857275",
+ "openTime": 1560210242345,
+ "closeTime": 1560296642345,
+ "firstId": 3233683,
+ "lastId": 3267757,
+ "count": 34075
+ },
+ {
+ "symbol": "MITHBNB",
+ "priceChange": "-0.00009000",
+ "priceChangePercent": "-5.085",
+ "weightedAvgPrice": "0.00174753",
+ "prevClosePrice": "0.00177000",
+ "lastPrice": "0.00168000",
+ "lastQty": "23629.50000000",
+ "bidPrice": "0.00167000",
+ "bidQty": "64453.10000000",
+ "askPrice": "0.00168000",
+ "askQty": "47616.20000000",
+ "openPrice": "0.00177000",
+ "highPrice": "0.00196000",
+ "lowPrice": "0.00163000",
+ "volume": "35890728.30000000",
+ "quoteVolume": "62720.03329100",
+ "openTime": 1560210240717,
+ "closeTime": 1560296640717,
+ "firstId": 138271,
+ "lastId": 147160,
+ "count": 8890
+ },
+ {
+ "symbol": "BCHABCBTC",
+ "priceChange": "-0.00011200",
+ "priceChangePercent": "-0.227",
+ "weightedAvgPrice": "0.04922779",
+ "prevClosePrice": "0.04925100",
+ "lastPrice": "0.04914000",
+ "lastQty": "0.05100000",
+ "bidPrice": "0.04911800",
+ "bidQty": "0.83700000",
+ "askPrice": "0.04914000",
+ "askQty": "1357.95800000",
+ "openPrice": "0.04925200",
+ "highPrice": "0.04993100",
+ "lowPrice": "0.04881400",
+ "volume": "25689.11900000",
+ "quoteVolume": "1264.61861334",
+ "openTime": 1560210241502,
+ "closeTime": 1560296641502,
+ "firstId": 10733078,
+ "lastId": 10755345,
+ "count": 22268
+ },
+ {
+ "symbol": "BCHSVBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "0.01117900",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998684358,
+ "closeTime": 1558085084358,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BCHABCUSDT",
+ "priceChange": "-4.81000000",
+ "priceChangePercent": "-1.226",
+ "weightedAvgPrice": "386.77207208",
+ "prevClosePrice": "392.50000000",
+ "lastPrice": "387.61000000",
+ "lastQty": "0.05100000",
+ "bidPrice": "387.61000000",
+ "bidQty": "0.00056000",
+ "askPrice": "387.83000000",
+ "askQty": "14.97598000",
+ "openPrice": "392.42000000",
+ "highPrice": "396.93000000",
+ "lowPrice": "378.00000000",
+ "volume": "40442.41019000",
+ "quoteVolume": "15641994.78923310",
+ "openTime": 1560210242369,
+ "closeTime": 1560296642369,
+ "firstId": 11848693,
+ "lastId": 11880371,
+ "count": 31679
+ },
+ {
+ "symbol": "BCHSVUSDT",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "58.90000000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998684916,
+ "closeTime": 1558085084916,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BNBPAX",
+ "priceChange": "0.02130000",
+ "priceChangePercent": "0.066",
+ "weightedAvgPrice": "31.64618956",
+ "prevClosePrice": "32.08090000",
+ "lastPrice": "32.07260000",
+ "lastQty": "10.00000000",
+ "bidPrice": "32.00750000",
+ "bidQty": "15.81000000",
+ "askPrice": "32.09040000",
+ "askQty": "20.57000000",
+ "openPrice": "32.05130000",
+ "highPrice": "32.30400000",
+ "lowPrice": "31.05380000",
+ "volume": "11571.17000000",
+ "quoteVolume": "366183.43929600",
+ "openTime": 1560210234701,
+ "closeTime": 1560296634701,
+ "firstId": 997855,
+ "lastId": 999030,
+ "count": 1176
+ },
+ {
+ "symbol": "BTCPAX",
+ "priceChange": "-76.74000000",
+ "priceChangePercent": "-0.959",
+ "weightedAvgPrice": "7896.12409026",
+ "prevClosePrice": "8002.71000000",
+ "lastPrice": "7925.89000000",
+ "lastQty": "0.04817000",
+ "bidPrice": "7922.86000000",
+ "bidQty": "2.80000000",
+ "askPrice": "7930.36000000",
+ "askQty": "0.07700100",
+ "openPrice": "8002.63000000",
+ "highPrice": "8060.00000000",
+ "lowPrice": "7710.00000000",
+ "volume": "1385.28008700",
+ "quoteVolume": "10938343.46671823",
+ "openTime": 1560210242293,
+ "closeTime": 1560296642293,
+ "firstId": 4560814,
+ "lastId": 4577400,
+ "count": 16587
+ },
+ {
+ "symbol": "ETHPAX",
+ "priceChange": "-1.05000000",
+ "priceChangePercent": "-0.425",
+ "weightedAvgPrice": "243.17044615",
+ "prevClosePrice": "247.25000000",
+ "lastPrice": "246.08000000",
+ "lastQty": "3.01453000",
+ "bidPrice": "245.91000000",
+ "bidQty": "0.66151000",
+ "askPrice": "246.08000000",
+ "askQty": "1.18719000",
+ "openPrice": "247.13000000",
+ "highPrice": "249.24000000",
+ "lowPrice": "237.58000000",
+ "volume": "12786.05854000",
+ "quoteVolume": "3109191.55971920",
+ "openTime": 1560210242239,
+ "closeTime": 1560296642239,
+ "firstId": 1859172,
+ "lastId": 1867390,
+ "count": 8219
+ },
+ {
+ "symbol": "XRPPAX",
+ "priceChange": "-0.00718000",
+ "priceChangePercent": "-1.791",
+ "weightedAvgPrice": "0.39186513",
+ "prevClosePrice": "0.40088000",
+ "lastPrice": "0.39370000",
+ "lastQty": "296.70000000",
+ "bidPrice": "0.39353000",
+ "bidQty": "339.60000000",
+ "askPrice": "0.39428000",
+ "askQty": "1489.80000000",
+ "openPrice": "0.40088000",
+ "highPrice": "0.40363000",
+ "lowPrice": "0.38384000",
+ "volume": "845775.90000000",
+ "quoteVolume": "331430.08321800",
+ "openTime": 1560210239414,
+ "closeTime": 1560296639414,
+ "firstId": 692511,
+ "lastId": 693485,
+ "count": 975
+ },
+ {
+ "symbol": "EOSPAX",
+ "priceChange": "-0.07000000",
+ "priceChangePercent": "-1.091",
+ "weightedAvgPrice": "6.33071046",
+ "prevClosePrice": "6.42400000",
+ "lastPrice": "6.34900000",
+ "lastQty": "138.84000000",
+ "bidPrice": "6.33910000",
+ "bidQty": "158.07000000",
+ "askPrice": "6.35670000",
+ "askQty": "105.84000000",
+ "openPrice": "6.41900000",
+ "highPrice": "6.51080000",
+ "lowPrice": "6.15830000",
+ "volume": "30581.44000000",
+ "quoteVolume": "193602.24204000",
+ "openTime": 1560210242356,
+ "closeTime": 1560296642356,
+ "firstId": 597209,
+ "lastId": 598236,
+ "count": 1028
+ },
+ {
+ "symbol": "XLMPAX",
+ "priceChange": "-0.00077000",
+ "priceChangePercent": "-0.622",
+ "weightedAvgPrice": "0.12150706",
+ "prevClosePrice": "0.12358000",
+ "lastPrice": "0.12299000",
+ "lastQty": "88.10000000",
+ "bidPrice": "0.12273000",
+ "bidQty": "253.90000000",
+ "askPrice": "0.12307000",
+ "askQty": "1424.20000000",
+ "openPrice": "0.12376000",
+ "highPrice": "0.12416000",
+ "lowPrice": "0.11890000",
+ "volume": "369027.50000000",
+ "quoteVolume": "44839.44587100",
+ "openTime": 1560210239691,
+ "closeTime": 1560296639691,
+ "firstId": 365169,
+ "lastId": 365695,
+ "count": 527
+ },
+ {
+ "symbol": "RENBTC",
+ "priceChange": "-0.00000036",
+ "priceChangePercent": "-5.835",
+ "weightedAvgPrice": "0.00000591",
+ "prevClosePrice": "0.00000617",
+ "lastPrice": "0.00000581",
+ "lastQty": "20315.00000000",
+ "bidPrice": "0.00000580",
+ "bidQty": "27117.00000000",
+ "askPrice": "0.00000581",
+ "askQty": "102582.00000000",
+ "openPrice": "0.00000617",
+ "highPrice": "0.00000621",
+ "lowPrice": "0.00000569",
+ "volume": "10556610.00000000",
+ "quoteVolume": "62.39022815",
+ "openTime": 1560210234129,
+ "closeTime": 1560296634129,
+ "firstId": 1280889,
+ "lastId": 1283657,
+ "count": 2769
+ },
+ {
+ "symbol": "RENBNB",
+ "priceChange": "-0.00011000",
+ "priceChangePercent": "-7.143",
+ "weightedAvgPrice": "0.00146679",
+ "prevClosePrice": "0.00154000",
+ "lastPrice": "0.00143000",
+ "lastQty": "13495.50000000",
+ "bidPrice": "0.00143000",
+ "bidQty": "2070.90000000",
+ "askPrice": "0.00144000",
+ "askQty": "9511.40000000",
+ "openPrice": "0.00154000",
+ "highPrice": "0.00154000",
+ "lowPrice": "0.00140000",
+ "volume": "866364.70000000",
+ "quoteVolume": "1270.77585900",
+ "openTime": 1560210230000,
+ "closeTime": 1560296630000,
+ "firstId": 64229,
+ "lastId": 64521,
+ "count": 293
+ },
+ {
+ "symbol": "BNBTUSD",
+ "priceChange": "-0.03340000",
+ "priceChangePercent": "-0.104",
+ "weightedAvgPrice": "31.59726559",
+ "prevClosePrice": "32.02480000",
+ "lastPrice": "32.00000000",
+ "lastQty": "0.54000000",
+ "bidPrice": "32.00030000",
+ "bidQty": "28.06000000",
+ "askPrice": "32.06070000",
+ "askQty": "0.41000000",
+ "openPrice": "32.03340000",
+ "highPrice": "32.22250000",
+ "lowPrice": "31.00000000",
+ "volume": "17026.80000000",
+ "quoteVolume": "538000.32170900",
+ "openTime": 1560210234591,
+ "closeTime": 1560296634591,
+ "firstId": 301068,
+ "lastId": 302604,
+ "count": 1537
+ },
+ {
+ "symbol": "XRPTUSD",
+ "priceChange": "-0.00606000",
+ "priceChangePercent": "-1.513",
+ "weightedAvgPrice": "0.39252803",
+ "prevClosePrice": "0.40014000",
+ "lastPrice": "0.39458000",
+ "lastQty": "591.00000000",
+ "bidPrice": "0.39342000",
+ "bidQty": "566.20000000",
+ "askPrice": "0.39401000",
+ "askQty": "702.60000000",
+ "openPrice": "0.40064000",
+ "highPrice": "0.40512000",
+ "lowPrice": "0.38180000",
+ "volume": "2000544.80000000",
+ "quoteVolume": "785269.90169100",
+ "openTime": 1560210240425,
+ "closeTime": 1560296640425,
+ "firstId": 414671,
+ "lastId": 416906,
+ "count": 2236
+ },
+ {
+ "symbol": "EOSTUSD",
+ "priceChange": "-0.08330000",
+ "priceChangePercent": "-1.295",
+ "weightedAvgPrice": "6.30595267",
+ "prevClosePrice": "6.44360000",
+ "lastPrice": "6.34680000",
+ "lastQty": "72.58000000",
+ "bidPrice": "6.33240000",
+ "bidQty": "139.58000000",
+ "askPrice": "6.35060000",
+ "askQty": "4094.19000000",
+ "openPrice": "6.43010000",
+ "highPrice": "6.50880000",
+ "lowPrice": "6.15020000",
+ "volume": "139920.75000000",
+ "quoteVolume": "882333.62722000",
+ "openTime": 1560210242294,
+ "closeTime": 1560296642294,
+ "firstId": 277674,
+ "lastId": 279092,
+ "count": 1419
+ },
+ {
+ "symbol": "XLMTUSD",
+ "priceChange": "-0.00043000",
+ "priceChangePercent": "-0.348",
+ "weightedAvgPrice": "0.12143112",
+ "prevClosePrice": "0.12342000",
+ "lastPrice": "0.12322000",
+ "lastQty": "1222.70000000",
+ "bidPrice": "0.12271000",
+ "bidQty": "29999.90000000",
+ "askPrice": "0.12307000",
+ "askQty": "1508.80000000",
+ "openPrice": "0.12365000",
+ "highPrice": "0.12400000",
+ "lowPrice": "0.11856000",
+ "volume": "193731.00000000",
+ "quoteVolume": "23524.97321800",
+ "openTime": 1560210239684,
+ "closeTime": 1560296639684,
+ "firstId": 199211,
+ "lastId": 199434,
+ "count": 224
+ },
+ {
+ "symbol": "BNBUSDC",
+ "priceChange": "0.06240000",
+ "priceChangePercent": "0.195",
+ "weightedAvgPrice": "31.62092521",
+ "prevClosePrice": "32.07300000",
+ "lastPrice": "32.07550000",
+ "lastQty": "1.62000000",
+ "bidPrice": "32.01220000",
+ "bidQty": "9.41000000",
+ "askPrice": "32.09940000",
+ "askQty": "0.32000000",
+ "openPrice": "32.01310000",
+ "highPrice": "32.23680000",
+ "lowPrice": "31.01250000",
+ "volume": "26510.69000000",
+ "quoteVolume": "838292.54574400",
+ "openTime": 1560210241606,
+ "closeTime": 1560296641606,
+ "firstId": 415300,
+ "lastId": 417344,
+ "count": 2045
+ },
+ {
+ "symbol": "BTCUSDC",
+ "priceChange": "-74.09000000",
+ "priceChangePercent": "-0.927",
+ "weightedAvgPrice": "7875.81593253",
+ "prevClosePrice": "7999.58000000",
+ "lastPrice": "7918.82000000",
+ "lastQty": "0.22028900",
+ "bidPrice": "7919.60000000",
+ "bidQty": "0.50000000",
+ "askPrice": "7924.98000000",
+ "askQty": "0.00888800",
+ "openPrice": "7992.91000000",
+ "highPrice": "8066.07000000",
+ "lowPrice": "7708.44000000",
+ "volume": "1775.91165800",
+ "quoteVolume": "13986753.33083854",
+ "openTime": 1560210241536,
+ "closeTime": 1560296641536,
+ "firstId": 2419636,
+ "lastId": 2436647,
+ "count": 17012
+ },
+ {
+ "symbol": "ETHUSDC",
+ "priceChange": "-0.86000000",
+ "priceChangePercent": "-0.348",
+ "weightedAvgPrice": "242.15394370",
+ "prevClosePrice": "247.11000000",
+ "lastPrice": "246.10000000",
+ "lastQty": "5.73000000",
+ "bidPrice": "245.54000000",
+ "bidQty": "5.00000000",
+ "askPrice": "246.12000000",
+ "askQty": "0.28607000",
+ "openPrice": "246.96000000",
+ "highPrice": "249.06000000",
+ "lowPrice": "237.39000000",
+ "volume": "10133.86309000",
+ "quoteVolume": "2453954.91218720",
+ "openTime": 1560210238579,
+ "closeTime": 1560296638579,
+ "firstId": 679420,
+ "lastId": 682802,
+ "count": 3383
+ },
+ {
+ "symbol": "XRPUSDC",
+ "priceChange": "-0.00662000",
+ "priceChangePercent": "-1.655",
+ "weightedAvgPrice": "0.39141579",
+ "prevClosePrice": "0.39919000",
+ "lastPrice": "0.39331000",
+ "lastQty": "1729.70000000",
+ "bidPrice": "0.39321000",
+ "bidQty": "717.20000000",
+ "askPrice": "0.39402000",
+ "askQty": "178.60000000",
+ "openPrice": "0.39993000",
+ "highPrice": "0.40333000",
+ "lowPrice": "0.38325000",
+ "volume": "1005213.30000000",
+ "quoteVolume": "393456.35301600",
+ "openTime": 1560210242202,
+ "closeTime": 1560296642202,
+ "firstId": 383776,
+ "lastId": 385272,
+ "count": 1497
+ },
+ {
+ "symbol": "EOSUSDC",
+ "priceChange": "-0.09170000",
+ "priceChangePercent": "-1.422",
+ "weightedAvgPrice": "6.33576723",
+ "prevClosePrice": "6.42500000",
+ "lastPrice": "6.35830000",
+ "lastQty": "53.67000000",
+ "bidPrice": "6.33560000",
+ "bidQty": "3.17000000",
+ "askPrice": "6.35400000",
+ "askQty": "403.04000000",
+ "openPrice": "6.45000000",
+ "highPrice": "6.50170000",
+ "lowPrice": "6.14190000",
+ "volume": "21982.02000000",
+ "quoteVolume": "139272.96204300",
+ "openTime": 1560210242348,
+ "closeTime": 1560296642348,
+ "firstId": 270365,
+ "lastId": 270816,
+ "count": 452
+ },
+ {
+ "symbol": "XLMUSDC",
+ "priceChange": "0.00011000",
+ "priceChangePercent": "0.089",
+ "weightedAvgPrice": "0.12132535",
+ "prevClosePrice": "0.12349000",
+ "lastPrice": "0.12332000",
+ "lastQty": "16858.90000000",
+ "bidPrice": "0.12273000",
+ "bidQty": "126.10000000",
+ "askPrice": "0.12307000",
+ "askQty": "1422.60000000",
+ "openPrice": "0.12321000",
+ "highPrice": "0.12400000",
+ "lowPrice": "0.11790000",
+ "volume": "835399.70000000",
+ "quoteVolume": "101355.15955500",
+ "openTime": 1560210242277,
+ "closeTime": 1560296642277,
+ "firstId": 200639,
+ "lastId": 201105,
+ "count": 467
+ },
+ {
+ "symbol": "USDCUSDT",
+ "priceChange": "-0.00080000",
+ "priceChangePercent": "-0.080",
+ "weightedAvgPrice": "0.99612957",
+ "prevClosePrice": "0.99610000",
+ "lastPrice": "0.99530000",
+ "lastQty": "15.00000000",
+ "bidPrice": "0.99530000",
+ "bidQty": "1757.68000000",
+ "askPrice": "0.99570000",
+ "askQty": "3443.21000000",
+ "openPrice": "0.99610000",
+ "highPrice": "0.99800000",
+ "lowPrice": "0.99420000",
+ "volume": "8336031.71000000",
+ "quoteVolume": "8303767.65774100",
+ "openTime": 1560210242329,
+ "closeTime": 1560296642329,
+ "firstId": 2327985,
+ "lastId": 2352657,
+ "count": 24673
+ },
+ {
+ "symbol": "ADATUSD",
+ "priceChange": "0.00304000",
+ "priceChangePercent": "3.567",
+ "weightedAvgPrice": "0.08626125",
+ "prevClosePrice": "0.08522000",
+ "lastPrice": "0.08827000",
+ "lastQty": "15097.70000000",
+ "bidPrice": "0.08801000",
+ "bidQty": "27546.10000000",
+ "askPrice": "0.08818000",
+ "askQty": "58150.90000000",
+ "openPrice": "0.08523000",
+ "highPrice": "0.08955000",
+ "lowPrice": "0.08221000",
+ "volume": "12730359.90000000",
+ "quoteVolume": "1098136.78718500",
+ "openTime": 1560210237674,
+ "closeTime": 1560296637674,
+ "firstId": 270374,
+ "lastId": 272888,
+ "count": 2515
+ },
+ {
+ "symbol": "TRXTUSD",
+ "priceChange": "-0.00030000",
+ "priceChangePercent": "-0.949",
+ "weightedAvgPrice": "0.03070799",
+ "prevClosePrice": "0.03170000",
+ "lastPrice": "0.03132000",
+ "lastQty": "4200.00000000",
+ "bidPrice": "0.03123000",
+ "bidQty": "71650.30000000",
+ "askPrice": "0.03132000",
+ "askQty": "12185.10000000",
+ "openPrice": "0.03162000",
+ "highPrice": "0.03168000",
+ "lowPrice": "0.02993000",
+ "volume": "10866687.40000000",
+ "quoteVolume": "333694.11605700",
+ "openTime": 1560210235916,
+ "closeTime": 1560296635916,
+ "firstId": 249136,
+ "lastId": 249998,
+ "count": 863
+ },
+ {
+ "symbol": "NEOTUSD",
+ "priceChange": "0.05500000",
+ "priceChangePercent": "0.447",
+ "weightedAvgPrice": "12.16189680",
+ "prevClosePrice": "12.29100000",
+ "lastPrice": "12.37000000",
+ "lastQty": "629.20300000",
+ "bidPrice": "12.31900000",
+ "bidQty": "173.06800000",
+ "askPrice": "12.34900000",
+ "askQty": "102.56200000",
+ "openPrice": "12.31500000",
+ "highPrice": "12.46500000",
+ "lowPrice": "11.77200000",
+ "volume": "83144.00300000",
+ "quoteVolume": "1011188.78395400",
+ "openTime": 1560210241236,
+ "closeTime": 1560296641236,
+ "firstId": 188148,
+ "lastId": 190835,
+ "count": 2688
+ },
+ {
+ "symbol": "TRXXRP",
+ "priceChange": "0.00056000",
+ "priceChangePercent": "0.710",
+ "weightedAvgPrice": "0.07854345",
+ "prevClosePrice": "0.07894000",
+ "lastPrice": "0.07943000",
+ "lastQty": "1579.60000000",
+ "bidPrice": "0.07941000",
+ "bidQty": "12036.30000000",
+ "askPrice": "0.07950000",
+ "askQty": "9416.00000000",
+ "openPrice": "0.07887000",
+ "highPrice": "0.08038000",
+ "lowPrice": "0.07754000",
+ "volume": "14979632.00000000",
+ "quoteVolume": "1176551.95522200",
+ "openTime": 1560210241124,
+ "closeTime": 1560296641124,
+ "firstId": 739503,
+ "lastId": 745555,
+ "count": 6053
+ },
+ {
+ "symbol": "XZCXRP",
+ "priceChange": "1.11100000",
+ "priceChangePercent": "4.531",
+ "weightedAvgPrice": "24.71175895",
+ "prevClosePrice": "24.51800000",
+ "lastPrice": "25.62900000",
+ "lastQty": "6.40100000",
+ "bidPrice": "25.36000000",
+ "bidQty": "5.35000000",
+ "askPrice": "25.62900000",
+ "askQty": "28.96100000",
+ "openPrice": "24.51800000",
+ "highPrice": "25.92500000",
+ "lowPrice": "23.00000000",
+ "volume": "4779.70900000",
+ "quoteVolume": "118115.01665800",
+ "openTime": 1560210241316,
+ "closeTime": 1560296641316,
+ "firstId": 159665,
+ "lastId": 160877,
+ "count": 1213
+ },
+ {
+ "symbol": "PAXTUSD",
+ "priceChange": "0.00030000",
+ "priceChangePercent": "0.030",
+ "weightedAvgPrice": "0.99960506",
+ "prevClosePrice": "0.99980000",
+ "lastPrice": "0.99980000",
+ "lastQty": "2998.50000000",
+ "bidPrice": "0.99900000",
+ "bidQty": "20961.16000000",
+ "askPrice": "1.00030000",
+ "askQty": "143.38000000",
+ "openPrice": "0.99950000",
+ "highPrice": "1.00070000",
+ "lowPrice": "0.99840000",
+ "volume": "334029.08000000",
+ "quoteVolume": "333897.15689600",
+ "openTime": 1560210241524,
+ "closeTime": 1560296641524,
+ "firstId": 215393,
+ "lastId": 216310,
+ "count": 918
+ },
+ {
+ "symbol": "USDCTUSD",
+ "priceChange": "-0.00010000",
+ "priceChangePercent": "-0.010",
+ "weightedAvgPrice": "1.00049699",
+ "prevClosePrice": "1.00140000",
+ "lastPrice": "0.99990000",
+ "lastQty": "20.25000000",
+ "bidPrice": "0.99990000",
+ "bidQty": "591.01000000",
+ "askPrice": "1.00130000",
+ "askQty": "24443.68000000",
+ "openPrice": "1.00000000",
+ "highPrice": "1.00150000",
+ "lowPrice": "0.99950000",
+ "volume": "461237.75000000",
+ "quoteVolume": "461466.98013500",
+ "openTime": 1560210240740,
+ "closeTime": 1560296640740,
+ "firstId": 120717,
+ "lastId": 121632,
+ "count": 916
+ },
+ {
+ "symbol": "USDCPAX",
+ "priceChange": "-0.00030000",
+ "priceChangePercent": "-0.030",
+ "weightedAvgPrice": "1.00079916",
+ "prevClosePrice": "1.00090000",
+ "lastPrice": "1.00060000",
+ "lastQty": "11.50000000",
+ "bidPrice": "0.99970000",
+ "bidQty": "43800.38000000",
+ "askPrice": "1.00090000",
+ "askQty": "11855.29000000",
+ "openPrice": "1.00090000",
+ "highPrice": "1.00200000",
+ "lowPrice": "0.99970000",
+ "volume": "959489.23000000",
+ "quoteVolume": "960256.01870300",
+ "openTime": 1560210241526,
+ "closeTime": 1560296641526,
+ "firstId": 328884,
+ "lastId": 333817,
+ "count": 4934
+ },
+ {
+ "symbol": "LINKUSDT",
+ "priceChange": "-0.05860000",
+ "priceChangePercent": "-4.947",
+ "weightedAvgPrice": "1.14586865",
+ "prevClosePrice": "1.18500000",
+ "lastPrice": "1.12590000",
+ "lastQty": "17.00000000",
+ "bidPrice": "1.12590000",
+ "bidQty": "0.70000000",
+ "askPrice": "1.12950000",
+ "askQty": "250.87000000",
+ "openPrice": "1.18450000",
+ "highPrice": "1.21040000",
+ "lowPrice": "1.08760000",
+ "volume": "3168642.53000000",
+ "quoteVolume": "3630848.12585300",
+ "openTime": 1560210237950,
+ "closeTime": 1560296637950,
+ "firstId": 1131493,
+ "lastId": 1144325,
+ "count": 12833
+ },
+ {
+ "symbol": "LINKTUSD",
+ "priceChange": "-0.06360000",
+ "priceChangePercent": "-5.331",
+ "weightedAvgPrice": "1.14413921",
+ "prevClosePrice": "1.18230000",
+ "lastPrice": "1.12940000",
+ "lastQty": "159.00000000",
+ "bidPrice": "1.12910000",
+ "bidQty": "849.26000000",
+ "askPrice": "1.13640000",
+ "askQty": "9.94000000",
+ "openPrice": "1.19300000",
+ "highPrice": "1.21990000",
+ "lowPrice": "1.09070000",
+ "volume": "100601.10000000",
+ "quoteVolume": "115101.66275400",
+ "openTime": 1560210241356,
+ "closeTime": 1560296641356,
+ "firstId": 129115,
+ "lastId": 129659,
+ "count": 545
+ },
+ {
+ "symbol": "LINKPAX",
+ "priceChange": "-0.06000000",
+ "priceChangePercent": "-5.022",
+ "weightedAvgPrice": "1.14641705",
+ "prevClosePrice": "1.18420000",
+ "lastPrice": "1.13480000",
+ "lastQty": "395.89000000",
+ "bidPrice": "1.12930000",
+ "bidQty": "118.21000000",
+ "askPrice": "1.13490000",
+ "askQty": "17.45000000",
+ "openPrice": "1.19480000",
+ "highPrice": "1.21570000",
+ "lowPrice": "1.09540000",
+ "volume": "20003.16000000",
+ "quoteVolume": "22931.96372600",
+ "openTime": 1560210240668,
+ "closeTime": 1560296640668,
+ "firstId": 34750,
+ "lastId": 34917,
+ "count": 168
+ },
+ {
+ "symbol": "LINKUSDC",
+ "priceChange": "-0.05990000",
+ "priceChangePercent": "-5.017",
+ "weightedAvgPrice": "1.15086170",
+ "prevClosePrice": "1.18100000",
+ "lastPrice": "1.13400000",
+ "lastQty": "8.91000000",
+ "bidPrice": "1.12910000",
+ "bidQty": "901.31000000",
+ "askPrice": "1.13400000",
+ "askQty": "88.47000000",
+ "openPrice": "1.19390000",
+ "highPrice": "1.21640000",
+ "lowPrice": "1.08720000",
+ "volume": "103374.92000000",
+ "quoteVolume": "118970.23583600",
+ "openTime": 1560210240924,
+ "closeTime": 1560296640924,
+ "firstId": 130174,
+ "lastId": 130735,
+ "count": 562
+ },
+ {
+ "symbol": "WAVESUSDT",
+ "priceChange": "0.00660000",
+ "priceChangePercent": "0.279",
+ "weightedAvgPrice": "2.35294110",
+ "prevClosePrice": "2.36200000",
+ "lastPrice": "2.37270000",
+ "lastQty": "123.70000000",
+ "bidPrice": "2.36510000",
+ "bidQty": "105.20000000",
+ "askPrice": "2.37270000",
+ "askQty": "6.53000000",
+ "openPrice": "2.36610000",
+ "highPrice": "2.40690000",
+ "lowPrice": "2.30250000",
+ "volume": "533967.93000000",
+ "quoteVolume": "1256395.08702000",
+ "openTime": 1560210241970,
+ "closeTime": 1560296641970,
+ "firstId": 984761,
+ "lastId": 990341,
+ "count": 5581
+ },
+ {
+ "symbol": "WAVESTUSD",
+ "priceChange": "0.00260000",
+ "priceChangePercent": "0.109",
+ "weightedAvgPrice": "2.36476897",
+ "prevClosePrice": "2.38130000",
+ "lastPrice": "2.38120000",
+ "lastQty": "251.96000000",
+ "bidPrice": "2.37620000",
+ "bidQty": "652.70000000",
+ "askPrice": "2.38330000",
+ "askQty": "1804.95000000",
+ "openPrice": "2.37860000",
+ "highPrice": "2.42380000",
+ "lowPrice": "2.31380000",
+ "volume": "124155.79000000",
+ "quoteVolume": "293599.75952200",
+ "openTime": 1560210241206,
+ "closeTime": 1560296641206,
+ "firstId": 109723,
+ "lastId": 110573,
+ "count": 851
+ },
+ {
+ "symbol": "WAVESPAX",
+ "priceChange": "0.00640000",
+ "priceChangePercent": "0.270",
+ "weightedAvgPrice": "2.37330236",
+ "prevClosePrice": "2.38060000",
+ "lastPrice": "2.38000000",
+ "lastQty": "42.01000000",
+ "bidPrice": "2.37460000",
+ "bidQty": "137.16000000",
+ "askPrice": "2.38670000",
+ "askQty": "1033.70000000",
+ "openPrice": "2.37360000",
+ "highPrice": "2.41830000",
+ "lowPrice": "2.30520000",
+ "volume": "6052.40000000",
+ "quoteVolume": "14364.17521900",
+ "openTime": 1560210240809,
+ "closeTime": 1560296640809,
+ "firstId": 17844,
+ "lastId": 17943,
+ "count": 100
+ },
+ {
+ "symbol": "WAVESUSDC",
+ "priceChange": "-0.01010000",
+ "priceChangePercent": "-0.423",
+ "weightedAvgPrice": "2.38219208",
+ "prevClosePrice": "2.37000000",
+ "lastPrice": "2.38000000",
+ "lastQty": "1666.66000000",
+ "bidPrice": "2.37440000",
+ "bidQty": "258.43000000",
+ "askPrice": "2.38570000",
+ "askQty": "1033.70000000",
+ "openPrice": "2.39010000",
+ "highPrice": "2.40780000",
+ "lowPrice": "2.31100000",
+ "volume": "6670.16000000",
+ "quoteVolume": "15889.60232000",
+ "openTime": 1560210242231,
+ "closeTime": 1560296642231,
+ "firstId": 20941,
+ "lastId": 21031,
+ "count": 91
+ },
+ {
+ "symbol": "BCHABCTUSD",
+ "priceChange": "-4.40000000",
+ "priceChangePercent": "-1.117",
+ "weightedAvgPrice": "388.13962092",
+ "prevClosePrice": "393.91000000",
+ "lastPrice": "389.52000000",
+ "lastQty": "2.82897000",
+ "bidPrice": "389.01000000",
+ "bidQty": "10.58701000",
+ "askPrice": "389.67000000",
+ "askQty": "2.04296000",
+ "openPrice": "393.92000000",
+ "highPrice": "399.01000000",
+ "lowPrice": "379.53000000",
+ "volume": "4337.69511000",
+ "quoteVolume": "1683631.33566330",
+ "openTime": 1560210236546,
+ "closeTime": 1560296636546,
+ "firstId": 287780,
+ "lastId": 289581,
+ "count": 1802
+ },
+ {
+ "symbol": "BCHABCPAX",
+ "priceChange": "-3.88000000",
+ "priceChangePercent": "-0.986",
+ "weightedAvgPrice": "389.15991058",
+ "prevClosePrice": "393.87000000",
+ "lastPrice": "389.78000000",
+ "lastQty": "1.44409000",
+ "bidPrice": "389.09000000",
+ "bidQty": "2.33917000",
+ "askPrice": "389.72000000",
+ "askQty": "1.56900000",
+ "openPrice": "393.66000000",
+ "highPrice": "399.00000000",
+ "lowPrice": "378.95000000",
+ "volume": "1421.22301000",
+ "quoteVolume": "553083.01948720",
+ "openTime": 1560210241651,
+ "closeTime": 1560296641651,
+ "firstId": 119095,
+ "lastId": 119916,
+ "count": 822
+ },
+ {
+ "symbol": "BCHABCUSDC",
+ "priceChange": "-4.24000000",
+ "priceChangePercent": "-1.076",
+ "weightedAvgPrice": "388.45737226",
+ "prevClosePrice": "393.66000000",
+ "lastPrice": "389.76000000",
+ "lastQty": "2.14426000",
+ "bidPrice": "388.72000000",
+ "bidQty": "1.67215000",
+ "askPrice": "389.74000000",
+ "askQty": "2.12599000",
+ "openPrice": "394.00000000",
+ "highPrice": "399.13000000",
+ "lowPrice": "379.72000000",
+ "volume": "575.40997000",
+ "quoteVolume": "223522.24491730",
+ "openTime": 1560210242265,
+ "closeTime": 1560296642265,
+ "firstId": 115234,
+ "lastId": 115680,
+ "count": 447
+ },
+ {
+ "symbol": "BCHSVTUSD",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "59.17000000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998721199,
+ "closeTime": 1558085121199,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BCHSVPAX",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "58.18000000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998723279,
+ "closeTime": 1558085123279,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "BCHSVUSDC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0",
+ "weightedAvgPrice": "0",
+ "prevClosePrice": "57.50000000",
+ "lastPrice": "0.00000000",
+ "lastQty": "0.00000000",
+ "bidPrice": "0.00000000",
+ "bidQty": "0.00000000",
+ "askPrice": "0.00000000",
+ "askQty": "0.00000000",
+ "openPrice": "0.00000000",
+ "highPrice": "0.00000000",
+ "lowPrice": "0.00000000",
+ "volume": "0.00000000",
+ "quoteVolume": "0.00000000",
+ "openTime": 1557998723487,
+ "closeTime": 1558085123487,
+ "firstId": -1,
+ "lastId": -1,
+ "count": 0
+ },
+ {
+ "symbol": "LTCTUSD",
+ "priceChange": "7.14000000",
+ "priceChangePercent": "5.521",
+ "weightedAvgPrice": "132.06061929",
+ "prevClosePrice": "129.32000000",
+ "lastPrice": "136.46000000",
+ "lastQty": "10.00000000",
+ "bidPrice": "136.30000000",
+ "bidQty": "48.48424000",
+ "askPrice": "136.55000000",
+ "askQty": "70.08578000",
+ "openPrice": "129.32000000",
+ "highPrice": "139.12000000",
+ "lowPrice": "125.40000000",
+ "volume": "41771.66053000",
+ "quoteVolume": "5516391.35846850",
+ "openTime": 1560210241259,
+ "closeTime": 1560296641259,
+ "firstId": 327810,
+ "lastId": 334248,
+ "count": 6439
+ },
+ {
+ "symbol": "LTCPAX",
+ "priceChange": "6.78000000",
+ "priceChangePercent": "5.230",
+ "weightedAvgPrice": "130.68947001",
+ "prevClosePrice": "129.23000000",
+ "lastPrice": "136.42000000",
+ "lastQty": "0.20000000",
+ "bidPrice": "136.35000000",
+ "bidQty": "50.00000000",
+ "askPrice": "136.61000000",
+ "askQty": "5.85100000",
+ "openPrice": "129.64000000",
+ "highPrice": "139.77000000",
+ "lowPrice": "125.38000000",
+ "volume": "4714.02428000",
+ "quoteVolume": "616073.33476830",
+ "openTime": 1560210241671,
+ "closeTime": 1560296641671,
+ "firstId": 132387,
+ "lastId": 133774,
+ "count": 1388
+ },
+ {
+ "symbol": "LTCUSDC",
+ "priceChange": "7.12000000",
+ "priceChangePercent": "5.502",
+ "weightedAvgPrice": "131.25383359",
+ "prevClosePrice": "129.15000000",
+ "lastPrice": "136.52000000",
+ "lastQty": "3.00000000",
+ "bidPrice": "136.18000000",
+ "bidQty": "5.01334000",
+ "askPrice": "136.57000000",
+ "askQty": "23.40400000",
+ "openPrice": "129.40000000",
+ "highPrice": "139.03000000",
+ "lowPrice": "125.50000000",
+ "volume": "22326.34651000",
+ "quoteVolume": "2930418.56953440",
+ "openTime": 1560210241041,
+ "closeTime": 1560296641041,
+ "firstId": 200351,
+ "lastId": 204927,
+ "count": 4577
+ },
+ {
+ "symbol": "TRXPAX",
+ "priceChange": "-0.00006000",
+ "priceChangePercent": "-0.192",
+ "weightedAvgPrice": "0.03072500",
+ "prevClosePrice": "0.03173000",
+ "lastPrice": "0.03120000",
+ "lastQty": "28443.30000000",
+ "bidPrice": "0.03121000",
+ "bidQty": "9612.30000000",
+ "askPrice": "0.03134000",
+ "askQty": "22376.70000000",
+ "openPrice": "0.03126000",
+ "highPrice": "0.03168000",
+ "lowPrice": "0.03006000",
+ "volume": "1879385.50000000",
+ "quoteVolume": "57744.11493900",
+ "openTime": 1560210241036,
+ "closeTime": 1560296641036,
+ "firstId": 48268,
+ "lastId": 48479,
+ "count": 212
+ },
+ {
+ "symbol": "TRXUSDC",
+ "priceChange": "-0.00028000",
+ "priceChangePercent": "-0.886",
+ "weightedAvgPrice": "0.03073827",
+ "prevClosePrice": "0.03167000",
+ "lastPrice": "0.03134000",
+ "lastQty": "1310.70000000",
+ "bidPrice": "0.03121000",
+ "bidQty": "57294.80000000",
+ "askPrice": "0.03131000",
+ "askQty": "35121.20000000",
+ "openPrice": "0.03162000",
+ "highPrice": "0.03169000",
+ "lowPrice": "0.03008000",
+ "volume": "44300096.90000000",
+ "quoteVolume": "1361708.14173700",
+ "openTime": 1560210232485,
+ "closeTime": 1560296632485,
+ "firstId": 94566,
+ "lastId": 97967,
+ "count": 3402
+ },
+ {
+ "symbol": "BTTBTC",
+ "priceChange": "0.00000000",
+ "priceChangePercent": "0.000",
+ "weightedAvgPrice": "0.00000015",
+ "prevClosePrice": "0.00000016",
+ "lastPrice": "0.00000016",
+ "lastQty": "11119.00000000",
+ "bidPrice": "0.00000015",
+ "bidQty": "1628021436.00000000",
+ "askPrice": "0.00000016",
+ "askQty": "1704596588.00000000",
+ "openPrice": "0.00000016",
+ "highPrice": "0.00000016",
+ "lowPrice": "0.00000015",
+ "volume": "624130339.00000000",
+ "quoteVolume": "94.88905260",
+ "openTime": 1560210240883,
+ "closeTime": 1560296640883,
+ "firstId": 1403772,
+ "lastId": 1406041,
+ "count": 2270
+ },
+ {
+ "symbol": "BTTBNB",
+ "priceChange": "-0.00000129",
+ "priceChangePercent": "-3.343",
+ "weightedAvgPrice": "0.00003776",
+ "prevClosePrice": "0.00003855",
+ "lastPrice": "0.00003730",
+ "lastQty": "55109.00000000",
+ "bidPrice": "0.00003730",
+ "bidQty": "55109.00000000",
+ "askPrice": "0.00003739",
+ "askQty": "297747.00000000",
+ "openPrice": "0.00003859",
+ "highPrice": "0.00003862",
+ "lowPrice": "0.00003722",
+ "volume": "509038362.00000000",
+ "quoteVolume": "19219.99326265",
+ "openTime": 1560210235760,
+ "closeTime": 1560296635760,
+ "firstId": 1384101,
+ "lastId": 1389782,
+ "count": 5682
+ },
+ {
+ "symbol": "BTTUSDT",
+ "priceChange": "-0.00003990",
+ "priceChangePercent": "-3.239",
+ "weightedAvgPrice": "0.00119047",
+ "prevClosePrice": "0.00123120",
+ "lastPrice": "0.00119180",
+ "lastQty": "220345.00000000",
+ "bidPrice": "0.00119150",
+ "bidQty": "1349338.00000000",
+ "askPrice": "0.00119210",
+ "askQty": "303329.00000000",
+ "openPrice": "0.00123170",
+ "highPrice": "0.00123200",
+ "lowPrice": "0.00115730",
+ "volume": "7664642698.00000000",
+ "quoteVolume": "9124511.42703080",
+ "openTime": 1560210240779,
+ "closeTime": 1560296640779,
+ "firstId": 7188369,
+ "lastId": 7211916,
+ "count": 23548
+ },
+ {
+ "symbol": "BNBUSDS",
+ "priceChange": "-0.12830000",
+ "priceChangePercent": "-0.399",
+ "weightedAvgPrice": "31.65113704",
+ "prevClosePrice": "32.04500000",
+ "lastPrice": "32.03010000",
+ "lastQty": "2.25000000",
+ "bidPrice": "32.00700000",
+ "bidQty": "3.40000000",
+ "askPrice": "32.18140000",
+ "askQty": "3.37000000",
+ "openPrice": "32.15840000",
+ "highPrice": "32.22000000",
+ "lowPrice": "31.18000000",
+ "volume": "2249.24000000",
+ "quoteVolume": "71191.00346700",
+ "openTime": 1560210224488,
+ "closeTime": 1560296624488,
+ "firstId": 20697,
+ "lastId": 20858,
+ "count": 162
+ },
+ {
+ "symbol": "BTCUSDS",
+ "priceChange": "-121.34000000",
+ "priceChangePercent": "-1.507",
+ "weightedAvgPrice": "7905.44294368",
+ "prevClosePrice": "7983.47000000",
+ "lastPrice": "7928.66000000",
+ "lastQty": "0.03788000",
+ "bidPrice": "7926.13000000",
+ "bidQty": "0.03789200",
+ "askPrice": "7942.85000000",
+ "askQty": "0.02458600",
+ "openPrice": "8050.00000000",
+ "highPrice": "8065.28000000",
+ "lowPrice": "7732.61000000",
+ "volume": "45.77543000",
+ "quoteVolume": "361875.05008762",
+ "openTime": 1560210240688,
+ "closeTime": 1560296640688,
+ "firstId": 103769,
+ "lastId": 104155,
+ "count": 387
+ },
+ {
+ "symbol": "USDSUSDT",
+ "priceChange": "-0.00020000",
+ "priceChangePercent": "-0.020",
+ "weightedAvgPrice": "0.99391112",
+ "prevClosePrice": "0.99270000",
+ "lastPrice": "0.99280000",
+ "lastQty": "11.05000000",
+ "bidPrice": "0.99290000",
+ "bidQty": "158.36000000",
+ "askPrice": "0.99580000",
+ "askQty": "490.73000000",
+ "openPrice": "0.99300000",
+ "highPrice": "0.99610000",
+ "lowPrice": "0.99200000",
+ "volume": "45533.28000000",
+ "quoteVolume": "45256.03333000",
+ "openTime": 1560210241660,
+ "closeTime": 1560296641660,
+ "firstId": 61032,
+ "lastId": 61239,
+ "count": 208
+ },
+ {
+ "symbol": "USDSPAX",
+ "priceChange": "0.00140000",
+ "priceChangePercent": "0.140",
+ "weightedAvgPrice": "0.99976042",
+ "prevClosePrice": "1.00000000",
+ "lastPrice": "0.99990000",
+ "lastQty": "2257.77000000",
+ "bidPrice": "0.99770000",
+ "bidQty": "4035.95000000",
+ "askPrice": "0.99990000",
+ "askQty": "2742.23000000",
+ "openPrice": "0.99850000",
+ "highPrice": "1.00010000",
+ "lowPrice": "0.99770000",
+ "volume": "77545.69000000",
+ "quoteVolume": "77527.11150400",
+ "openTime": 1560210223446,
+ "closeTime": 1560296623446,
+ "firstId": 58386,
+ "lastId": 58492,
+ "count": 107
+ },
+ {
+ "symbol": "USDSTUSD",
+ "priceChange": "-0.00140000",
+ "priceChangePercent": "-0.140",
+ "weightedAvgPrice": "0.99858080",
+ "prevClosePrice": "0.99980000",
+ "lastPrice": "0.99840000",
+ "lastQty": "1275.35000000",
+ "bidPrice": "0.99840000",
+ "bidQty": "2247.36000000",
+ "askPrice": "0.99940000",
+ "askQty": "0.16000000",
+ "openPrice": "0.99980000",
+ "highPrice": "1.00000000",
+ "lowPrice": "0.99790000",
+ "volume": "26762.65000000",
+ "quoteVolume": "26724.66841100",
+ "openTime": 1560210161526,
+ "closeTime": 1560296561526,
+ "firstId": 39313,
+ "lastId": 39411,
+ "count": 99
+ },
+ {
+ "symbol": "USDSUSDC",
+ "priceChange": "-0.00090000",
+ "priceChangePercent": "-0.090",
+ "weightedAvgPrice": "0.99755899",
+ "prevClosePrice": "0.99980000",
+ "lastPrice": "0.99700000",
+ "lastQty": "1114.65000000",
+ "bidPrice": "0.99700000",
+ "bidQty": "3576.24000000",
+ "askPrice": "0.99980000",
+ "askQty": "3079.13000000",
+ "openPrice": "0.99790000",
+ "highPrice": "0.99990000",
+ "lowPrice": "0.99700000",
+ "volume": "24625.02000000",
+ "quoteVolume": "24564.91008300",
+ "openTime": 1560209818467,
+ "closeTime": 1560296218467,
+ "firstId": 32294,
+ "lastId": 32338,
+ "count": 45
+ },
+ {
+ "symbol": "BTTPAX",
+ "priceChange": "-0.00001780",
+ "priceChangePercent": "-1.463",
+ "weightedAvgPrice": "0.00120386",
+ "prevClosePrice": "0.00123770",
+ "lastPrice": "0.00119890",
+ "lastQty": "13000.00000000",
+ "bidPrice": "0.00119450",
+ "bidQty": "411860.00000000",
+ "askPrice": "0.00120050",
+ "askQty": "357455.00000000",
+ "openPrice": "0.00121670",
+ "highPrice": "0.00122180",
+ "lowPrice": "0.00116260",
+ "volume": "19377000.00000000",
+ "quoteVolume": "23327.22747270",
+ "openTime": 1560210242081,
+ "closeTime": 1560296642081,
+ "firstId": 33168,
+ "lastId": 33295,
+ "count": 128
+ },
+ {
+ "symbol": "BTTTUSD",
+ "priceChange": "-0.00004130",
+ "priceChangePercent": "-3.348",
+ "weightedAvgPrice": "0.00120209",
+ "prevClosePrice": "0.00123720",
+ "lastPrice": "0.00119210",
+ "lastQty": "280758.00000000",
+ "bidPrice": "0.00119430",
+ "bidQty": "740081.00000000",
+ "askPrice": "0.00120030",
+ "askQty": "361454.00000000",
+ "openPrice": "0.00123340",
+ "highPrice": "0.00123400",
+ "lowPrice": "0.00116330",
+ "volume": "89406879.00000000",
+ "quoteVolume": "107475.30162090",
+ "openTime": 1560210239891,
+ "closeTime": 1560296639891,
+ "firstId": 55851,
+ "lastId": 56231,
+ "count": 381
+ },
+ {
+ "symbol": "BTTUSDC",
+ "priceChange": "-0.00003170",
+ "priceChangePercent": "-2.573",
+ "weightedAvgPrice": "0.00120503",
+ "prevClosePrice": "0.00123800",
+ "lastPrice": "0.00120050",
+ "lastQty": "73694.00000000",
+ "bidPrice": "0.00119420",
+ "bidQty": "742367.00000000",
+ "askPrice": "0.00120050",
+ "askQty": "271334.00000000",
+ "openPrice": "0.00123220",
+ "highPrice": "0.00123220",
+ "lowPrice": "0.00116840",
+ "volume": "60423471.00000000",
+ "quoteVolume": "72811.88543280",
+ "openTime": 1560210237638,
+ "closeTime": 1560296637638,
+ "firstId": 58531,
+ "lastId": 58798,
+ "count": 268
+ },
+ {
+ "symbol": "ONGBNB",
+ "priceChange": "0.00042000",
+ "priceChangePercent": "3.075",
+ "weightedAvgPrice": "0.01392402",
+ "prevClosePrice": "0.01364000",
+ "lastPrice": "0.01408000",
+ "lastQty": "155.00000000",
+ "bidPrice": "0.01400000",
+ "bidQty": "2719.50000000",
+ "askPrice": "0.01413000",
+ "askQty": "1629.90000000",
+ "openPrice": "0.01366000",
+ "highPrice": "0.01425000",
+ "lowPrice": "0.01353000",
+ "volume": "38295.10000000",
+ "quoteVolume": "533.22190100",
+ "openTime": 1560210233855,
+ "closeTime": 1560296633855,
+ "firstId": 82482,
+ "lastId": 82793,
+ "count": 312
+ },
+ {
+ "symbol": "ONGBTC",
+ "priceChange": "0.00000244",
+ "priceChangePercent": "4.471",
+ "weightedAvgPrice": "0.00005592",
+ "prevClosePrice": "0.00005431",
+ "lastPrice": "0.00005701",
+ "lastQty": "68.00000000",
+ "bidPrice": "0.00005679",
+ "bidQty": "2439.00000000",
+ "askPrice": "0.00005699",
+ "askQty": "1826.00000000",
+ "openPrice": "0.00005457",
+ "highPrice": "0.00005711",
+ "lowPrice": "0.00005404",
+ "volume": "647859.00000000",
+ "quoteVolume": "36.22756813",
+ "openTime": 1560210242061,
+ "closeTime": 1560296642061,
+ "firstId": 1843386,
+ "lastId": 1846585,
+ "count": 3200
+ },
+ {
+ "symbol": "ONGUSDT",
+ "priceChange": "0.01490000",
+ "priceChangePercent": "3.435",
+ "weightedAvgPrice": "0.43968192",
+ "prevClosePrice": "0.43390000",
+ "lastPrice": "0.44870000",
+ "lastQty": "100.23000000",
+ "bidPrice": "0.44870000",
+ "bidQty": "0.10000000",
+ "askPrice": "0.45060000",
+ "askQty": "334.55000000",
+ "openPrice": "0.43380000",
+ "highPrice": "0.45230000",
+ "lowPrice": "0.43010000",
+ "volume": "690164.44000000",
+ "quoteVolume": "303452.82529600",
+ "openTime": 1560210239103,
+ "closeTime": 1560296639103,
+ "firstId": 1000039,
+ "lastId": 1002931,
+ "count": 2893
+ },
+ {
+ "symbol": "HOTBNB",
+ "priceChange": "-0.00000170",
+ "priceChangePercent": "-2.941",
+ "weightedAvgPrice": "0.00005682",
+ "prevClosePrice": "0.00005807",
+ "lastPrice": "0.00005610",
+ "lastQty": "5411.00000000",
+ "bidPrice": "0.00005577",
+ "bidQty": "1323120.00000000",
+ "askPrice": "0.00005610",
+ "askQty": "30.00000000",
+ "openPrice": "0.00005780",
+ "highPrice": "0.00005780",
+ "lowPrice": "0.00005577",
+ "volume": "92048158.00000000",
+ "quoteVolume": "5230.50464565",
+ "openTime": 1560210240095,
+ "closeTime": 1560296640095,
+ "firstId": 195490,
+ "lastId": 196570,
+ "count": 1081
+ },
+ {
+ "symbol": "HOTUSDT",
+ "priceChange": "-0.00006890",
+ "priceChangePercent": "-3.725",
+ "weightedAvgPrice": "0.00178590",
+ "prevClosePrice": "0.00185490",
+ "lastPrice": "0.00178080",
+ "lastQty": "192770.00000000",
+ "bidPrice": "0.00178080",
+ "bidQty": "7230.00000000",
+ "askPrice": "0.00178580",
+ "askQty": "35826.00000000",
+ "openPrice": "0.00184970",
+ "highPrice": "0.00185590",
+ "lowPrice": "0.00175330",
+ "volume": "889178818.00000000",
+ "quoteVolume": "1587982.63279420",
+ "openTime": 1560210241682,
+ "closeTime": 1560296641682,
+ "firstId": 770550,
+ "lastId": 775405,
+ "count": 4856
+ },
+ {
+ "symbol": "ZILUSDT",
+ "priceChange": "-0.00036000",
+ "priceChangePercent": "-1.529",
+ "weightedAvgPrice": "0.02364746",
+ "prevClosePrice": "0.02353000",
+ "lastPrice": "0.02318000",
+ "lastQty": "435.80000000",
+ "bidPrice": "0.02313000",
+ "bidQty": "12000.00000000",
+ "askPrice": "0.02318000",
+ "askQty": "7354.80000000",
+ "openPrice": "0.02354000",
+ "highPrice": "0.02464000",
+ "lowPrice": "0.02270000",
+ "volume": "161219747.40000000",
+ "quoteVolume": "3812437.55673800",
+ "openTime": 1560210240620,
+ "closeTime": 1560296640620,
+ "firstId": 895951,
+ "lastId": 907741,
+ "count": 11791
+ },
+ {
+ "symbol": "ZRXBNB",
+ "priceChange": "-0.00010000",
+ "priceChangePercent": "-0.977",
+ "weightedAvgPrice": "0.01021804",
+ "prevClosePrice": "0.01026000",
+ "lastPrice": "0.01014000",
+ "lastQty": "280.50000000",
+ "bidPrice": "0.01015000",
+ "bidQty": "884.00000000",
+ "askPrice": "0.01018000",
+ "askQty": "559.30000000",
+ "openPrice": "0.01024000",
+ "highPrice": "0.01034000",
+ "lowPrice": "0.01012000",
+ "volume": "100036.40000000",
+ "quoteVolume": "1022.17556500",
+ "openTime": 1560210238418,
+ "closeTime": 1560296638418,
+ "firstId": 41384,
+ "lastId": 41649,
+ "count": 266
+ },
+ {
+ "symbol": "ZRXUSDT",
+ "priceChange": "-0.00360000",
+ "priceChangePercent": "-1.096",
+ "weightedAvgPrice": "0.32141434",
+ "prevClosePrice": "0.32860000",
+ "lastPrice": "0.32500000",
+ "lastQty": "0.91000000",
+ "bidPrice": "0.32400000",
+ "bidQty": "0.17000000",
+ "askPrice": "0.32470000",
+ "askQty": "846.78000000",
+ "openPrice": "0.32860000",
+ "highPrice": "0.32960000",
+ "lowPrice": "0.31440000",
+ "volume": "1038768.51000000",
+ "quoteVolume": "333875.09608100",
+ "openTime": 1560210240446,
+ "closeTime": 1560296640446,
+ "firstId": 327885,
+ "lastId": 329695,
+ "count": 1811
+ },
+ {
+ "symbol": "FETBNB",
+ "priceChange": "0.00018000",
+ "priceChangePercent": "2.350",
+ "weightedAvgPrice": "0.00764683",
+ "prevClosePrice": "0.00766000",
+ "lastPrice": "0.00784000",
+ "lastQty": "5662.30000000",
+ "bidPrice": "0.00782000",
+ "bidQty": "9164.10000000",
+ "askPrice": "0.00785000",
+ "askQty": "245.70000000",
+ "openPrice": "0.00766000",
+ "highPrice": "0.00809000",
+ "lowPrice": "0.00712000",
+ "volume": "7664494.80000000",
+ "quoteVolume": "58609.09915000",
+ "openTime": 1560210241892,
+ "closeTime": 1560296641892,
+ "firstId": 606050,
+ "lastId": 628420,
+ "count": 22371
+ },
+ {
+ "symbol": "FETBTC",
+ "priceChange": "0.00000110",
+ "priceChangePercent": "3.589",
+ "weightedAvgPrice": "0.00003049",
+ "prevClosePrice": "0.00003067",
+ "lastPrice": "0.00003175",
+ "lastQty": "9.00000000",
+ "bidPrice": "0.00003170",
+ "bidQty": "14338.00000000",
+ "askPrice": "0.00003175",
+ "askQty": "491.00000000",
+ "openPrice": "0.00003065",
+ "highPrice": "0.00003244",
+ "lowPrice": "0.00002841",
+ "volume": "101147687.00000000",
+ "quoteVolume": "3084.49499009",
+ "openTime": 1560210242326,
+ "closeTime": 1560296642326,
+ "firstId": 4324599,
+ "lastId": 4387300,
+ "count": 62702
+ },
+ {
+ "symbol": "FETUSDT",
+ "priceChange": "0.00570000",
+ "priceChangePercent": "2.331",
+ "weightedAvgPrice": "0.23946663",
+ "prevClosePrice": "0.24450000",
+ "lastPrice": "0.25020000",
+ "lastQty": "11794.87000000",
+ "bidPrice": "0.25010000",
+ "bidQty": "2146.23000000",
+ "askPrice": "0.25040000",
+ "askQty": "877.34000000",
+ "openPrice": "0.24450000",
+ "highPrice": "0.25390000",
+ "lowPrice": "0.22360000",
+ "volume": "113931192.43000000",
+ "quoteVolume": "27282718.30743300",
+ "openTime": 1560210241796,
+ "closeTime": 1560296641796,
+ "firstId": 2786073,
+ "lastId": 2834798,
+ "count": 48726
+ },
+ {
+ "symbol": "BATUSDT",
+ "priceChange": "-0.00760000",
+ "priceChangePercent": "-2.291",
+ "weightedAvgPrice": "0.32465977",
+ "prevClosePrice": "0.33260000",
+ "lastPrice": "0.32420000",
+ "lastQty": "1160.10000000",
+ "bidPrice": "0.32370000",
+ "bidQty": "130.58000000",
+ "askPrice": "0.32410000",
+ "askQty": "593.11000000",
+ "openPrice": "0.33180000",
+ "highPrice": "0.33410000",
+ "lowPrice": "0.31920000",
+ "volume": "1642233.13000000",
+ "quoteVolume": "533167.02764400",
+ "openTime": 1560210241809,
+ "closeTime": 1560296641809,
+ "firstId": 1063936,
+ "lastId": 1067602,
+ "count": 3667
+ },
+ {
+ "symbol": "XMRBNB",
+ "priceChange": "-0.00100000",
+ "priceChangePercent": "-0.037",
+ "weightedAvgPrice": "2.74955085",
+ "prevClosePrice": "2.71100000",
+ "lastPrice": "2.71200000",
+ "lastQty": "0.44500000",
+ "bidPrice": "2.70800000",
+ "bidQty": "0.44500000",
+ "askPrice": "2.71600000",
+ "askQty": "3.76400000",
+ "openPrice": "2.71300000",
+ "highPrice": "2.77300000",
+ "lowPrice": "2.71200000",
+ "volume": "650.41400000",
+ "quoteVolume": "1788.34636600",
+ "openTime": 1560210235905,
+ "closeTime": 1560296635905,
+ "firstId": 66572,
+ "lastId": 67180,
+ "count": 609
+ },
+ {
+ "symbol": "XMRUSDT",
+ "priceChange": "0.23000000",
+ "priceChangePercent": "0.266",
+ "weightedAvgPrice": "86.56217197",
+ "prevClosePrice": "86.53000000",
+ "lastPrice": "86.71000000",
+ "lastQty": "11.51277000",
+ "bidPrice": "86.44000000",
+ "bidQty": "1.63455000",
+ "askPrice": "86.67000000",
+ "askQty": "5.85053000",
+ "openPrice": "86.48000000",
+ "highPrice": "87.50000000",
+ "lowPrice": "85.28000000",
+ "volume": "6228.19914000",
+ "quoteVolume": "539126.44498900",
+ "openTime": 1560210237037,
+ "closeTime": 1560296637037,
+ "firstId": 293004,
+ "lastId": 295043,
+ "count": 2040
+ },
+ {
+ "symbol": "ZECBNB",
+ "priceChange": "0.00100000",
+ "priceChangePercent": "0.040",
+ "weightedAvgPrice": "2.49478327",
+ "prevClosePrice": "2.50100000",
+ "lastPrice": "2.49600000",
+ "lastQty": "0.99000000",
+ "bidPrice": "2.49400000",
+ "bidQty": "0.08100000",
+ "askPrice": "2.50400000",
+ "askQty": "0.91700000",
+ "openPrice": "2.49500000",
+ "highPrice": "2.53300000",
+ "lowPrice": "2.46600000",
+ "volume": "760.99900000",
+ "quoteVolume": "1898.52757300",
+ "openTime": 1560210239169,
+ "closeTime": 1560296639169,
+ "firstId": 40192,
+ "lastId": 40594,
+ "count": 403
+ },
+ {
+ "symbol": "ZECUSDT",
+ "priceChange": "0.07000000",
+ "priceChangePercent": "0.088",
+ "weightedAvgPrice": "78.86995708",
+ "prevClosePrice": "79.62000000",
+ "lastPrice": "79.70000000",
+ "lastQty": "0.90300000",
+ "bidPrice": "79.70000000",
+ "bidQty": "0.00038000",
+ "askPrice": "79.76000000",
+ "askQty": "2.57818000",
+ "openPrice": "79.63000000",
+ "highPrice": "80.18000000",
+ "lowPrice": "77.00000000",
+ "volume": "6997.80204000",
+ "quoteVolume": "551916.34657450",
+ "openTime": 1560210240761,
+ "closeTime": 1560296640761,
+ "firstId": 274377,
+ "lastId": 276695,
+ "count": 2319
+ },
+ {
+ "symbol": "ZECPAX",
+ "priceChange": "-0.13000000",
+ "priceChangePercent": "-0.162",
+ "weightedAvgPrice": "79.04464040",
+ "prevClosePrice": "80.02000000",
+ "lastPrice": "80.07000000",
+ "lastQty": "4.07300000",
+ "bidPrice": "79.97000000",
+ "bidQty": "4.05187000",
+ "askPrice": "80.25000000",
+ "askQty": "15.20201000",
+ "openPrice": "80.20000000",
+ "highPrice": "80.44000000",
+ "lowPrice": "78.00000000",
+ "volume": "223.33445000",
+ "quoteVolume": "17653.39128880",
+ "openTime": 1560210241531,
+ "closeTime": 1560296641531,
+ "firstId": 9297,
+ "lastId": 9364,
+ "count": 68
+ },
+ {
+ "symbol": "ZECTUSD",
+ "priceChange": "0.15000000",
+ "priceChangePercent": "0.187",
+ "weightedAvgPrice": "78.96766638",
+ "prevClosePrice": "80.07000000",
+ "lastPrice": "80.28000000",
+ "lastQty": "0.12992000",
+ "bidPrice": "79.97000000",
+ "bidQty": "20.66930000",
+ "askPrice": "80.16000000",
+ "askQty": "49.64772000",
+ "openPrice": "80.13000000",
+ "highPrice": "80.74000000",
+ "lowPrice": "77.35000000",
+ "volume": "2011.18022000",
+ "quoteVolume": "158818.20863350",
+ "openTime": 1560210240744,
+ "closeTime": 1560296640744,
+ "firstId": 32659,
+ "lastId": 33035,
+ "count": 377
+ },
+ {
+ "symbol": "ZECUSDC",
+ "priceChange": "0.65000000",
+ "priceChangePercent": "0.815",
+ "weightedAvgPrice": "78.79704313",
+ "prevClosePrice": "80.01000000",
+ "lastPrice": "80.36000000",
+ "lastQty": "1.90000000",
+ "bidPrice": "79.87000000",
+ "bidQty": "11.09972000",
+ "askPrice": "80.05000000",
+ "askQty": "6.96055000",
+ "openPrice": "79.71000000",
+ "highPrice": "80.36000000",
+ "lowPrice": "77.32000000",
+ "volume": "227.52895000",
+ "quoteVolume": "17928.60848550",
+ "openTime": 1560210233215,
+ "closeTime": 1560296633215,
+ "firstId": 17588,
+ "lastId": 17697,
+ "count": 110
+ },
+ {
+ "symbol": "IOSTBNB",
+ "priceChange": "-0.00000940",
+ "priceChangePercent": "-2.585",
+ "weightedAvgPrice": "0.00035802",
+ "prevClosePrice": "0.00036510",
+ "lastPrice": "0.00035420",
+ "lastQty": "36018.00000000",
+ "bidPrice": "0.00035360",
+ "bidQty": "67779.00000000",
+ "askPrice": "0.00035580",
+ "askQty": "49076.00000000",
+ "openPrice": "0.00036360",
+ "highPrice": "0.00036360",
+ "lowPrice": "0.00035160",
+ "volume": "5484716.00000000",
+ "quoteVolume": "1963.65445350",
+ "openTime": 1560210241652,
+ "closeTime": 1560296641652,
+ "firstId": 79409,
+ "lastId": 79833,
+ "count": 425
+ },
+ {
+ "symbol": "IOSTUSDT",
+ "priceChange": "-0.00032800",
+ "priceChangePercent": "-2.814",
+ "weightedAvgPrice": "0.01126910",
+ "prevClosePrice": "0.01168700",
+ "lastPrice": "0.01133000",
+ "lastQty": "24535.00000000",
+ "bidPrice": "0.01129700",
+ "bidQty": "138678.00000000",
+ "askPrice": "0.01132800",
+ "askQty": "42131.00000000",
+ "openPrice": "0.01165800",
+ "highPrice": "0.01169300",
+ "lowPrice": "0.01094400",
+ "volume": "75476276.00000000",
+ "quoteVolume": "850549.65212300",
+ "openTime": 1560210238678,
+ "closeTime": 1560296638678,
+ "firstId": 786261,
+ "lastId": 789666,
+ "count": 3406
+ },
+ {
+ "symbol": "CELRBNB",
+ "priceChange": "0.00003400",
+ "priceChangePercent": "5.475",
+ "weightedAvgPrice": "0.00062770",
+ "prevClosePrice": "0.00062200",
+ "lastPrice": "0.00065500",
+ "lastQty": "8155.00000000",
+ "bidPrice": "0.00065400",
+ "bidQty": "1201.00000000",
+ "askPrice": "0.00065500",
+ "askQty": "23164.00000000",
+ "openPrice": "0.00062100",
+ "highPrice": "0.00066000",
+ "lowPrice": "0.00060100",
+ "volume": "33856220.00000000",
+ "quoteVolume": "21251.55313000",
+ "openTime": 1560210242327,
+ "closeTime": 1560296642327,
+ "firstId": 288460,
+ "lastId": 295763,
+ "count": 7304
+ },
+ {
+ "symbol": "CELRBTC",
+ "priceChange": "0.00000016",
+ "priceChangePercent": "6.426",
+ "weightedAvgPrice": "0.00000251",
+ "prevClosePrice": "0.00000249",
+ "lastPrice": "0.00000265",
+ "lastQty": "65470.00000000",
+ "bidPrice": "0.00000264",
+ "bidQty": "641450.00000000",
+ "askPrice": "0.00000265",
+ "askQty": "2609.00000000",
+ "openPrice": "0.00000249",
+ "highPrice": "0.00000267",
+ "lowPrice": "0.00000239",
+ "volume": "646744656.00000000",
+ "quoteVolume": "1624.31990169",
+ "openTime": 1560210242115,
+ "closeTime": 1560296642115,
+ "firstId": 3064405,
+ "lastId": 3093743,
+ "count": 29339
+ },
+ {
+ "symbol": "CELRUSDT",
+ "priceChange": "0.00109000",
+ "priceChangePercent": "5.505",
+ "weightedAvgPrice": "0.01976011",
+ "prevClosePrice": "0.01984000",
+ "lastPrice": "0.02089000",
+ "lastQty": "173410.10000000",
+ "bidPrice": "0.02086000",
+ "bidQty": "257014.00000000",
+ "askPrice": "0.02090000",
+ "askQty": "0.30000000",
+ "openPrice": "0.01980000",
+ "highPrice": "0.02106000",
+ "lowPrice": "0.01865000",
+ "volume": "299507522.30000000",
+ "quoteVolume": "5918301.54493500",
+ "openTime": 1560210242307,
+ "closeTime": 1560296642307,
+ "firstId": 1844118,
+ "lastId": 1861039,
+ "count": 16922
+ },
+ {
+ "symbol": "ADAPAX",
+ "priceChange": "0.00250000",
+ "priceChangePercent": "2.925",
+ "weightedAvgPrice": "0.08624944",
+ "prevClosePrice": "0.08496000",
+ "lastPrice": "0.08797000",
+ "lastQty": "3541.10000000",
+ "bidPrice": "0.08795000",
+ "bidQty": "11588.60000000",
+ "askPrice": "0.08825000",
+ "askQty": "14446.00000000",
+ "openPrice": "0.08547000",
+ "highPrice": "0.08950000",
+ "lowPrice": "0.08150000",
+ "volume": "1718862.50000000",
+ "quoteVolume": "148250.93570300",
+ "openTime": 1560210242350,
+ "closeTime": 1560296642350,
+ "firstId": 36466,
+ "lastId": 36941,
+ "count": 476
+ },
+ {
+ "symbol": "ADAUSDC",
+ "priceChange": "0.00258000",
+ "priceChangePercent": "3.020",
+ "weightedAvgPrice": "0.08594246",
+ "prevClosePrice": "0.08536000",
+ "lastPrice": "0.08802000",
+ "lastQty": "12507.30000000",
+ "bidPrice": "0.08805000",
+ "bidQty": "3131.00000000",
+ "askPrice": "0.08820000",
+ "askQty": "311.30000000",
+ "openPrice": "0.08544000",
+ "highPrice": "0.08947000",
+ "lowPrice": "0.08208000",
+ "volume": "4458148.70000000",
+ "quoteVolume": "383144.27909300",
+ "openTime": 1560210238290,
+ "closeTime": 1560296638290,
+ "firstId": 94761,
+ "lastId": 95974,
+ "count": 1214
+ },
+ {
+ "symbol": "NEOPAX",
+ "priceChange": "0.04400000",
+ "priceChangePercent": "0.357",
+ "weightedAvgPrice": "12.14655288",
+ "prevClosePrice": "12.33800000",
+ "lastPrice": "12.37800000",
+ "lastQty": "58.92100000",
+ "bidPrice": "12.30500000",
+ "bidQty": "45.99600000",
+ "askPrice": "12.36200000",
+ "askQty": "102.56200000",
+ "openPrice": "12.33400000",
+ "highPrice": "12.47000000",
+ "lowPrice": "11.77100000",
+ "volume": "2690.11800000",
+ "quoteVolume": "32675.66053700",
+ "openTime": 1560210238101,
+ "closeTime": 1560296638101,
+ "firstId": 19572,
+ "lastId": 19732,
+ "count": 161
+ },
+ {
+ "symbol": "NEOUSDC",
+ "priceChange": "0.01300000",
+ "priceChangePercent": "0.105",
+ "weightedAvgPrice": "12.15370847",
+ "prevClosePrice": "12.35800000",
+ "lastPrice": "12.33700000",
+ "lastQty": "1.65000000",
+ "bidPrice": "12.30000000",
+ "bidQty": "5.41900000",
+ "askPrice": "12.33700000",
+ "askQty": "52.38100000",
+ "openPrice": "12.32400000",
+ "highPrice": "12.50000000",
+ "lowPrice": "11.76100000",
+ "volume": "11594.27300000",
+ "quoteVolume": "140913.41395900",
+ "openTime": 1560210241712,
+ "closeTime": 1560296641712,
+ "firstId": 34145,
+ "lastId": 34598,
+ "count": 454
+ },
+ {
+ "symbol": "DASHBNB",
+ "priceChange": "-0.09800000",
+ "priceChangePercent": "-2.075",
+ "weightedAvgPrice": "4.64866212",
+ "prevClosePrice": "4.72300000",
+ "lastPrice": "4.62500000",
+ "lastQty": "0.02200000",
+ "bidPrice": "4.61600000",
+ "bidQty": "0.03000000",
+ "askPrice": "4.62600000",
+ "askQty": "0.98900000",
+ "openPrice": "4.72300000",
+ "highPrice": "4.73700000",
+ "lowPrice": "4.56100000",
+ "volume": "243.22900000",
+ "quoteVolume": "1130.68943800",
+ "openTime": 1560210237397,
+ "closeTime": 1560296637397,
+ "firstId": 50938,
+ "lastId": 51349,
+ "count": 412
+ },
+ {
+ "symbol": "DASHUSDT",
+ "priceChange": "-3.47000000",
+ "priceChangePercent": "-2.295",
+ "weightedAvgPrice": "146.75301850",
+ "prevClosePrice": "151.15000000",
+ "lastPrice": "147.72000000",
+ "lastQty": "0.00038000",
+ "bidPrice": "147.16000000",
+ "bidQty": "3.03503000",
+ "askPrice": "147.56000000",
+ "askQty": "9.93711000",
+ "openPrice": "151.19000000",
+ "highPrice": "151.33000000",
+ "lowPrice": "143.21000000",
+ "volume": "4322.71790000",
+ "quoteVolume": "634371.89996950",
+ "openTime": 1560210242313,
+ "closeTime": 1560296642313,
+ "firstId": 276279,
+ "lastId": 279022,
+ "count": 2744
+ },
+ {
+ "symbol": "NANOUSDT",
+ "priceChange": "-0.01060000",
+ "priceChangePercent": "-0.672",
+ "weightedAvgPrice": "1.53950413",
+ "prevClosePrice": "1.57720000",
+ "lastPrice": "1.56720000",
+ "lastQty": "17.89000000",
+ "bidPrice": "1.56600000",
+ "bidQty": "20.24000000",
+ "askPrice": "1.57170000",
+ "askQty": "459.04000000",
+ "openPrice": "1.57780000",
+ "highPrice": "1.59000000",
+ "lowPrice": "1.49040000",
+ "volume": "329014.34000000",
+ "quoteVolume": "506518.93544700",
+ "openTime": 1560210241571,
+ "closeTime": 1560296641571,
+ "firstId": 423916,
+ "lastId": 427042,
+ "count": 3127
+ },
+ {
+ "symbol": "OMGBNB",
+ "priceChange": "-0.00127000",
+ "priceChangePercent": "-2.015",
+ "weightedAvgPrice": "0.06201349",
+ "prevClosePrice": "0.06298000",
+ "lastPrice": "0.06177000",
+ "lastQty": "10.80000000",
+ "bidPrice": "0.06172000",
+ "bidQty": "2.30000000",
+ "askPrice": "0.06207000",
+ "askQty": "98.00000000",
+ "openPrice": "0.06304000",
+ "highPrice": "0.06357000",
+ "lowPrice": "0.06121000",
+ "volume": "16590.40000000",
+ "quoteVolume": "1028.82862200",
+ "openTime": 1560210240321,
+ "closeTime": 1560296640321,
+ "firstId": 28115,
+ "lastId": 28390,
+ "count": 276
+ },
+ {
+ "symbol": "OMGUSDT",
+ "priceChange": "-0.04140000",
+ "priceChangePercent": "-2.053",
+ "weightedAvgPrice": "1.95217372",
+ "prevClosePrice": "2.01150000",
+ "lastPrice": "1.97560000",
+ "lastQty": "232.96000000",
+ "bidPrice": "1.96960000",
+ "bidQty": "116.19000000",
+ "askPrice": "1.97540000",
+ "askQty": "15.41000000",
+ "openPrice": "2.01700000",
+ "highPrice": "2.03500000",
+ "lowPrice": "1.90000000",
+ "volume": "229823.20000000",
+ "quoteVolume": "448654.81116400",
+ "openTime": 1560210242367,
+ "closeTime": 1560296642367,
+ "firstId": 205394,
+ "lastId": 207939,
+ "count": 2546
+ },
+ {
+ "symbol": "THETAUSDT",
+ "priceChange": "-0.00332000",
+ "priceChangePercent": "-2.292",
+ "weightedAvgPrice": "0.14197788",
+ "prevClosePrice": "0.14545000",
+ "lastPrice": "0.14154000",
+ "lastQty": "24.80000000",
+ "bidPrice": "0.14100000",
+ "bidQty": "1000.00000000",
+ "askPrice": "0.14154000",
+ "askQty": "751.20000000",
+ "openPrice": "0.14486000",
+ "highPrice": "0.14699000",
+ "lowPrice": "0.13716000",
+ "volume": "7735950.50000000",
+ "quoteVolume": "1098333.84784800",
+ "openTime": 1560210240897,
+ "closeTime": 1560296640897,
+ "firstId": 298462,
+ "lastId": 303579,
+ "count": 5118
+ },
+ {
+ "symbol": "ENJUSDT",
+ "priceChange": "0.00694000",
+ "priceChangePercent": "4.573",
+ "weightedAvgPrice": "0.15655550",
+ "prevClosePrice": "0.15187000",
+ "lastPrice": "0.15870000",
+ "lastQty": "150.00000000",
+ "bidPrice": "0.15857000",
+ "bidQty": "471.40000000",
+ "askPrice": "0.15870000",
+ "askQty": "129.20000000",
+ "openPrice": "0.15176000",
+ "highPrice": "0.16300000",
+ "lowPrice": "0.14850000",
+ "volume": "10260340.90000000",
+ "quoteVolume": "1606312.79674900",
+ "openTime": 1560210241602,
+ "closeTime": 1560296641602,
+ "firstId": 336082,
+ "lastId": 343710,
+ "count": 7629
+ },
+ {
+ "symbol": "MITHUSDT",
+ "priceChange": "-0.00288000",
+ "priceChangePercent": "-5.105",
+ "weightedAvgPrice": "0.05596819",
+ "prevClosePrice": "0.05650000",
+ "lastPrice": "0.05353000",
+ "lastQty": "23568.50000000",
+ "bidPrice": "0.05353000",
+ "bidQty": "1079.50000000",
+ "askPrice": "0.05354000",
+ "askQty": "15942.90000000",
+ "openPrice": "0.05641000",
+ "highPrice": "0.06214000",
+ "lowPrice": "0.05075000",
+ "volume": "110687296.60000000",
+ "quoteVolume": "6194967.77664000",
+ "openTime": 1560210241615,
+ "closeTime": 1560296641615,
+ "firstId": 319482,
+ "lastId": 341765,
+ "count": 22284
+ },
+ {
+ "symbol": "MATICBNB",
+ "priceChange": "-0.00011200",
+ "priceChangePercent": "-13.130",
+ "weightedAvgPrice": "0.00078635",
+ "prevClosePrice": "0.00085300",
+ "lastPrice": "0.00074100",
+ "lastQty": "29080.00000000",
+ "bidPrice": "0.00074100",
+ "bidQty": "4833.00000000",
+ "askPrice": "0.00074200",
+ "askQty": "101147.00000000",
+ "openPrice": "0.00085300",
+ "highPrice": "0.00085900",
+ "lowPrice": "0.00073500",
+ "volume": "79523708.00000000",
+ "quoteVolume": "62533.61614000",
+ "openTime": 1560210242296,
+ "closeTime": 1560296642296,
+ "firstId": 987804,
+ "lastId": 1011499,
+ "count": 23696
+ },
+ {
+ "symbol": "MATICBTC",
+ "priceChange": "-0.00000042",
+ "priceChangePercent": "-12.281",
+ "weightedAvgPrice": "0.00000317",
+ "prevClosePrice": "0.00000342",
+ "lastPrice": "0.00000300",
+ "lastQty": "120514.00000000",
+ "bidPrice": "0.00000299",
+ "bidQty": "159732.00000000",
+ "askPrice": "0.00000300",
+ "askQty": "375506.00000000",
+ "openPrice": "0.00000342",
+ "highPrice": "0.00000343",
+ "lowPrice": "0.00000297",
+ "volume": "913581362.00000000",
+ "quoteVolume": "2893.33960470",
+ "openTime": 1560210242332,
+ "closeTime": 1560296642332,
+ "firstId": 3451197,
+ "lastId": 3501232,
+ "count": 50036
+ },
+ {
+ "symbol": "MATICUSDT",
+ "priceChange": "-0.00355000",
+ "priceChangePercent": "-13.037",
+ "weightedAvgPrice": "0.02486993",
+ "prevClosePrice": "0.02723000",
+ "lastPrice": "0.02368000",
+ "lastQty": "109875.70000000",
+ "bidPrice": "0.02366000",
+ "bidQty": "0.90000000",
+ "askPrice": "0.02370000",
+ "askQty": "17690.80000000",
+ "openPrice": "0.02723000",
+ "highPrice": "0.02726000",
+ "lowPrice": "0.02332000",
+ "volume": "654070859.70000000",
+ "quoteVolume": "16266693.96727500",
+ "openTime": 1560210241820,
+ "closeTime": 1560296641820,
+ "firstId": 2601067,
+ "lastId": 2633532,
+ "count": 32466
+ },
+ {
+ "symbol": "ATOMBNB",
+ "priceChange": "-0.00400000",
+ "priceChangePercent": "-2.105",
+ "weightedAvgPrice": "0.18753979",
+ "prevClosePrice": "0.19040000",
+ "lastPrice": "0.18600000",
+ "lastQty": "50.30000000",
+ "bidPrice": "0.18530000",
+ "bidQty": "4.00000000",
+ "askPrice": "0.18590000",
+ "askQty": "43.00000000",
+ "openPrice": "0.19000000",
+ "highPrice": "0.19220000",
+ "lowPrice": "0.18450000",
+ "volume": "59417.33000000",
+ "quoteVolume": "11143.11384500",
+ "openTime": 1560210232779,
+ "closeTime": 1560296632779,
+ "firstId": 246698,
+ "lastId": 249966,
+ "count": 3269
+ },
+ {
+ "symbol": "ATOMBTC",
+ "priceChange": "-0.00001100",
+ "priceChangePercent": "-1.443",
+ "weightedAvgPrice": "0.00075161",
+ "prevClosePrice": "0.00076230",
+ "lastPrice": "0.00075130",
+ "lastQty": "1.87000000",
+ "bidPrice": "0.00075070",
+ "bidQty": "70.00000000",
+ "askPrice": "0.00075100",
+ "askQty": "22.27000000",
+ "openPrice": "0.00076230",
+ "highPrice": "0.00076900",
+ "lowPrice": "0.00073990",
+ "volume": "455102.98000000",
+ "quoteVolume": "342.05996020",
+ "openTime": 1560210242305,
+ "closeTime": 1560296642305,
+ "firstId": 1753703,
+ "lastId": 1765752,
+ "count": 12050
+ },
+ {
+ "symbol": "ATOMUSDT",
+ "priceChange": "-0.15100000",
+ "priceChangePercent": "-2.486",
+ "weightedAvgPrice": "5.91714574",
+ "prevClosePrice": "6.07300000",
+ "lastPrice": "5.92200000",
+ "lastQty": "26.04000000",
+ "bidPrice": "5.92000000",
+ "bidQty": "330.48400000",
+ "askPrice": "5.92600000",
+ "askQty": "3.74100000",
+ "openPrice": "6.07300000",
+ "highPrice": "6.17600000",
+ "lowPrice": "5.75300000",
+ "volume": "558727.88900000",
+ "quoteVolume": "3306074.34556900",
+ "openTime": 1560210242241,
+ "closeTime": 1560296642241,
+ "firstId": 1343653,
+ "lastId": 1359396,
+ "count": 15744
+ },
+ {
+ "symbol": "ATOMUSDC",
+ "priceChange": "-0.16300000",
+ "priceChangePercent": "-2.664",
+ "weightedAvgPrice": "5.90345727",
+ "prevClosePrice": "6.10000000",
+ "lastPrice": "5.95600000",
+ "lastQty": "87.21000000",
+ "bidPrice": "5.93700000",
+ "bidQty": "232.16400000",
+ "askPrice": "5.97400000",
+ "askQty": "108.32000000",
+ "openPrice": "6.11900000",
+ "highPrice": "6.17500000",
+ "lowPrice": "5.79100000",
+ "volume": "10850.30500000",
+ "quoteVolume": "64054.31196800",
+ "openTime": 1560210225978,
+ "closeTime": 1560296625978,
+ "firstId": 21404,
+ "lastId": 21698,
+ "count": 295
+ },
+ {
+ "symbol": "ATOMPAX",
+ "priceChange": "-0.13100000",
+ "priceChangePercent": "-2.149",
+ "weightedAvgPrice": "5.94537525",
+ "prevClosePrice": "6.10800000",
+ "lastPrice": "5.96500000",
+ "lastQty": "10.04800000",
+ "bidPrice": "5.93900000",
+ "bidQty": "75.20300000",
+ "askPrice": "5.97600000",
+ "askQty": "42.84500000",
+ "openPrice": "6.09600000",
+ "highPrice": "6.20800000",
+ "lowPrice": "5.78400000",
+ "volume": "1894.51000000",
+ "quoteVolume": "11263.57286800",
+ "openTime": 1560210240667,
+ "closeTime": 1560296640667,
+ "firstId": 13610,
+ "lastId": 13681,
+ "count": 72
+ },
+ {
+ "symbol": "ATOMTUSD",
+ "priceChange": "-0.12400000",
+ "priceChangePercent": "-2.031",
+ "weightedAvgPrice": "5.96889871",
+ "prevClosePrice": "6.09000000",
+ "lastPrice": "5.98100000",
+ "lastQty": "2.00700000",
+ "bidPrice": "5.95100000",
+ "bidQty": "1.68100000",
+ "askPrice": "5.99600000",
+ "askQty": "63.80500000",
+ "openPrice": "6.10500000",
+ "highPrice": "6.17400000",
+ "lowPrice": "5.79100000",
+ "volume": "7810.31100000",
+ "quoteVolume": "46618.95524300",
+ "openTime": 1560210235936,
+ "closeTime": 1560296635936,
+ "firstId": 16978,
+ "lastId": 17186,
+ "count": 209
+ },
+ {
+ "symbol": "ETCUSDC",
+ "priceChange": "-0.09800000",
+ "priceChangePercent": "-1.176",
+ "weightedAvgPrice": "8.18155115",
+ "prevClosePrice": "8.30500000",
+ "lastPrice": "8.23800000",
+ "lastQty": "10.56000000",
+ "bidPrice": "8.24500000",
+ "bidQty": "23.42100000",
+ "askPrice": "8.27500000",
+ "askQty": "40.32500000",
+ "openPrice": "8.33600000",
+ "highPrice": "8.33600000",
+ "lowPrice": "8.02500000",
+ "volume": "1758.47400000",
+ "quoteVolume": "14387.04497300",
+ "openTime": 1560210239847,
+ "closeTime": 1560296639847,
+ "firstId": 9159,
+ "lastId": 9245,
+ "count": 87
+ },
+ {
+ "symbol": "ETCPAX",
+ "priceChange": "-0.07500000",
+ "priceChangePercent": "-0.901",
+ "weightedAvgPrice": "8.10907059",
+ "prevClosePrice": "8.32500000",
+ "lastPrice": "8.25000000",
+ "lastQty": "3.28400000",
+ "bidPrice": "8.24700000",
+ "bidQty": "117.88300000",
+ "askPrice": "8.28500000",
+ "askQty": "143.19500000",
+ "openPrice": "8.32500000",
+ "highPrice": "8.32500000",
+ "lowPrice": "8.05000000",
+ "volume": "1302.25900000",
+ "quoteVolume": "10560.11015500",
+ "openTime": 1560210239570,
+ "closeTime": 1560296639570,
+ "firstId": 4888,
+ "lastId": 4925,
+ "count": 38
+ },
+ {
+ "symbol": "ETCTUSD",
+ "priceChange": "-0.12100000",
+ "priceChangePercent": "-1.452",
+ "weightedAvgPrice": "8.16198650",
+ "prevClosePrice": "8.30200000",
+ "lastPrice": "8.21300000",
+ "lastQty": "113.19400000",
+ "bidPrice": "8.25100000",
+ "bidQty": "609.02000000",
+ "askPrice": "8.28100000",
+ "askQty": "239.84100000",
+ "openPrice": "8.33400000",
+ "highPrice": "8.39200000",
+ "lowPrice": "8.01200000",
+ "volume": "1528.64400000",
+ "quoteVolume": "12476.77168800",
+ "openTime": 1560210234914,
+ "closeTime": 1560296634914,
+ "firstId": 5713,
+ "lastId": 5809,
+ "count": 97
+ },
+ {
+ "symbol": "BATUSDC",
+ "priceChange": "-0.00490000",
+ "priceChangePercent": "-1.468",
+ "weightedAvgPrice": "0.32530943",
+ "prevClosePrice": "0.33380000",
+ "lastPrice": "0.32890000",
+ "lastQty": "401.00000000",
+ "bidPrice": "0.32440000",
+ "bidQty": "178.05000000",
+ "askPrice": "0.32550000",
+ "askQty": "150.00000000",
+ "openPrice": "0.33380000",
+ "highPrice": "0.33410000",
+ "lowPrice": "0.31910000",
+ "volume": "94755.86000000",
+ "quoteVolume": "30824.97445800",
+ "openTime": 1560210191167,
+ "closeTime": 1560296591167,
+ "firstId": 27179,
+ "lastId": 27355,
+ "count": 177
+ },
+ {
+ "symbol": "BATPAX",
+ "priceChange": "-0.00980000",
+ "priceChangePercent": "-2.922",
+ "weightedAvgPrice": "0.32603511",
+ "prevClosePrice": "0.33340000",
+ "lastPrice": "0.32560000",
+ "lastQty": "47.05000000",
+ "bidPrice": "0.32450000",
+ "bidQty": "1622.76000000",
+ "askPrice": "0.32630000",
+ "askQty": "7118.60000000",
+ "openPrice": "0.33540000",
+ "highPrice": "0.33540000",
+ "lowPrice": "0.32060000",
+ "volume": "37144.86000000",
+ "quoteVolume": "12110.52858000",
+ "openTime": 1560210235579,
+ "closeTime": 1560296635579,
+ "firstId": 15416,
+ "lastId": 15571,
+ "count": 156
+ },
+ {
+ "symbol": "BATTUSD",
+ "priceChange": "-0.00780000",
+ "priceChangePercent": "-2.333",
+ "weightedAvgPrice": "0.32638133",
+ "prevClosePrice": "0.33120000",
+ "lastPrice": "0.32660000",
+ "lastQty": "76.55000000",
+ "bidPrice": "0.32520000",
+ "bidQty": "63.00000000",
+ "askPrice": "0.32640000",
+ "askQty": "7118.60000000",
+ "openPrice": "0.33440000",
+ "highPrice": "0.33500000",
+ "lowPrice": "0.32060000",
+ "volume": "68841.13000000",
+ "quoteVolume": "22468.45971800",
+ "openTime": 1560210189248,
+ "closeTime": 1560296589248,
+ "firstId": 18339,
+ "lastId": 18513,
+ "count": 175
+ },
+ {
+ "symbol": "PHBBNB",
+ "priceChange": "0.00000200",
+ "priceChangePercent": "0.319",
+ "weightedAvgPrice": "0.00063703",
+ "prevClosePrice": "0.00063100",
+ "lastPrice": "0.00062900",
+ "lastQty": "165.00000000",
+ "bidPrice": "0.00062300",
+ "bidQty": "12100.00000000",
+ "askPrice": "0.00062800",
+ "askQty": "12949.00000000",
+ "openPrice": "0.00062700",
+ "highPrice": "0.00065700",
+ "lowPrice": "0.00062300",
+ "volume": "3945778.00000000",
+ "quoteVolume": "2513.58541300",
+ "openTime": 1560210229870,
+ "closeTime": 1560296629870,
+ "firstId": 87363,
+ "lastId": 88046,
+ "count": 684
+ },
+ {
+ "symbol": "PHBBTC",
+ "priceChange": "0.00000001",
+ "priceChangePercent": "0.397",
+ "weightedAvgPrice": "0.00000254",
+ "prevClosePrice": "0.00000252",
+ "lastPrice": "0.00000253",
+ "lastQty": "493.00000000",
+ "bidPrice": "0.00000252",
+ "bidQty": "206541.00000000",
+ "askPrice": "0.00000253",
+ "askQty": "19093.00000000",
+ "openPrice": "0.00000252",
+ "highPrice": "0.00000262",
+ "lowPrice": "0.00000249",
+ "volume": "124241877.00000000",
+ "quoteVolume": "316.05665202",
+ "openTime": 1560210241470,
+ "closeTime": 1560296641470,
+ "firstId": 828292,
+ "lastId": 836458,
+ "count": 8167
+ },
+ {
+ "symbol": "PHBUSDC",
+ "priceChange": "-0.00003000",
+ "priceChangePercent": "-0.151",
+ "weightedAvgPrice": "0.01972287",
+ "prevClosePrice": "0.02020000",
+ "lastPrice": "0.01989000",
+ "lastQty": "5066.00000000",
+ "bidPrice": "0.01986000",
+ "bidQty": "44638.40000000",
+ "askPrice": "0.02015000",
+ "askQty": "1534.70000000",
+ "openPrice": "0.01992000",
+ "highPrice": "0.02098000",
+ "lowPrice": "0.01950000",
+ "volume": "3419726.50000000",
+ "quoteVolume": "67446.80731800",
+ "openTime": 1560209687161,
+ "closeTime": 1560296087161,
+ "firstId": 9662,
+ "lastId": 9792,
+ "count": 131
+ },
+ {
+ "symbol": "PHBTUSD",
+ "priceChange": "-0.00018000",
+ "priceChangePercent": "-0.896",
+ "weightedAvgPrice": "0.02015609",
+ "prevClosePrice": "0.02032000",
+ "lastPrice": "0.01991000",
+ "lastQty": "6248.80000000",
+ "bidPrice": "0.01982000",
+ "bidQty": "42740.10000000",
+ "askPrice": "0.02013000",
+ "askQty": "565.40000000",
+ "openPrice": "0.02009000",
+ "highPrice": "0.02080000",
+ "lowPrice": "0.01941000",
+ "volume": "2077313.20000000",
+ "quoteVolume": "41870.51056000",
+ "openTime": 1560210221566,
+ "closeTime": 1560296621566,
+ "firstId": 20199,
+ "lastId": 20360,
+ "count": 162
+ },
+ {
+ "symbol": "PHBPAX",
+ "priceChange": "-0.00029000",
+ "priceChangePercent": "-1.444",
+ "weightedAvgPrice": "0.02023682",
+ "prevClosePrice": "0.02012000",
+ "lastPrice": "0.01979000",
+ "lastQty": "789.50000000",
+ "bidPrice": "0.01990000",
+ "bidQty": "24721.90000000",
+ "askPrice": "0.02061000",
+ "askQty": "12694.00000000",
+ "openPrice": "0.02008000",
+ "highPrice": "0.02091000",
+ "lowPrice": "0.01900000",
+ "volume": "524483.40000000",
+ "quoteVolume": "10613.87669600",
+ "openTime": 1560210150387,
+ "closeTime": 1560296550387,
+ "firstId": 4662,
+ "lastId": 4707,
+ "count": 46
+ },
+ {
+ "symbol": "TFUELBNB",
+ "priceChange": "-0.00001800",
+ "priceChangePercent": "-4.054",
+ "weightedAvgPrice": "0.00043259",
+ "prevClosePrice": "0.00044500",
+ "lastPrice": "0.00042600",
+ "lastQty": "5868.00000000",
+ "bidPrice": "0.00042600",
+ "bidQty": "1401.00000000",
+ "askPrice": "0.00042700",
+ "askQty": "3065.00000000",
+ "openPrice": "0.00044400",
+ "highPrice": "0.00044600",
+ "lowPrice": "0.00041800",
+ "volume": "7130165.00000000",
+ "quoteVolume": "3084.43275600",
+ "openTime": 1560210238615,
+ "closeTime": 1560296638615,
+ "firstId": 82367,
+ "lastId": 83656,
+ "count": 1290
+ },
+ {
+ "symbol": "TFUELBTC",
+ "priceChange": "-0.00000005",
+ "priceChangePercent": "-2.809",
+ "weightedAvgPrice": "0.00000172",
+ "prevClosePrice": "0.00000178",
+ "lastPrice": "0.00000173",
+ "lastQty": "179950.00000000",
+ "bidPrice": "0.00000172",
+ "bidQty": "1785886.00000000",
+ "askPrice": "0.00000173",
+ "askQty": "327891.00000000",
+ "openPrice": "0.00000178",
+ "highPrice": "0.00000178",
+ "lowPrice": "0.00000167",
+ "volume": "235969134.00000000",
+ "quoteVolume": "406.43081984",
+ "openTime": 1560210241830,
+ "closeTime": 1560296641830,
+ "firstId": 675825,
+ "lastId": 684861,
+ "count": 9037
+ },
+ {
+ "symbol": "TFUELUSDT",
+ "priceChange": "-0.00059000",
+ "priceChangePercent": "-4.158",
+ "weightedAvgPrice": "0.01355165",
+ "prevClosePrice": "0.01419000",
+ "lastPrice": "0.01360000",
+ "lastQty": "4432.00000000",
+ "bidPrice": "0.01360000",
+ "bidQty": "67724.90000000",
+ "askPrice": "0.01365000",
+ "askQty": "57729.40000000",
+ "openPrice": "0.01419000",
+ "highPrice": "0.01419000",
+ "lowPrice": "0.01306000",
+ "volume": "148384159.80000000",
+ "quoteVolume": "2010850.68084700",
+ "openTime": 1560210230316,
+ "closeTime": 1560296630316,
+ "firstId": 413392,
+ "lastId": 419140,
+ "count": 5749
+ },
+ {
+ "symbol": "TFUELUSDC",
+ "priceChange": "-0.00059000",
+ "priceChangePercent": "-4.143",
+ "weightedAvgPrice": "0.01371500",
+ "prevClosePrice": "0.01424000",
+ "lastPrice": "0.01365000",
+ "lastQty": "2331.00000000",
+ "bidPrice": "0.01363000",
+ "bidQty": "71513.40000000",
+ "askPrice": "0.01375000",
+ "askQty": "38394.80000000",
+ "openPrice": "0.01424000",
+ "highPrice": "0.01425000",
+ "lowPrice": "0.01208000",
+ "volume": "1230614.30000000",
+ "quoteVolume": "16877.87628100",
+ "openTime": 1560210228567,
+ "closeTime": 1560296628567,
+ "firstId": 5908,
+ "lastId": 5995,
+ "count": 88
+ },
+ {
+ "symbol": "TFUELTUSD",
+ "priceChange": "-0.00029000",
+ "priceChangePercent": "-2.064",
+ "weightedAvgPrice": "0.01358160",
+ "prevClosePrice": "0.01418000",
+ "lastPrice": "0.01376000",
+ "lastQty": "190.70000000",
+ "bidPrice": "0.01364000",
+ "bidQty": "67724.90000000",
+ "askPrice": "0.01375000",
+ "askQty": "47272.70000000",
+ "openPrice": "0.01405000",
+ "highPrice": "0.01405000",
+ "lowPrice": "0.01303000",
+ "volume": "1897045.80000000",
+ "quoteVolume": "25764.91254200",
+ "openTime": 1560210232555,
+ "closeTime": 1560296632555,
+ "firstId": 9701,
+ "lastId": 9836,
+ "count": 136
+ },
+ {
+ "symbol": "TFUELPAX",
+ "priceChange": "-0.00035000",
+ "priceChangePercent": "-2.491",
+ "weightedAvgPrice": "0.01340426",
+ "prevClosePrice": "0.01401000",
+ "lastPrice": "0.01370000",
+ "lastQty": "730.00000000",
+ "bidPrice": "0.01364000",
+ "bidQty": "41720.80000000",
+ "askPrice": "0.01376000",
+ "askQty": "18728.50000000",
+ "openPrice": "0.01405000",
+ "highPrice": "0.01493000",
+ "lowPrice": "0.01315000",
+ "volume": "381946.10000000",
+ "quoteVolume": "5119.70428700",
+ "openTime": 1560210173853,
+ "closeTime": 1560296573853,
+ "firstId": 3215,
+ "lastId": 3255,
+ "count": 41
+ },
+ {
+ "symbol": "ONEBNB",
+ "priceChange": "-0.00008200",
+ "priceChangePercent": "-10.289",
+ "weightedAvgPrice": "0.00075398",
+ "prevClosePrice": "0.00079800",
+ "lastPrice": "0.00071500",
+ "lastQty": "51353.00000000",
+ "bidPrice": "0.00071400",
+ "bidQty": "3681.00000000",
+ "askPrice": "0.00071500",
+ "askQty": "100636.00000000",
+ "openPrice": "0.00079700",
+ "highPrice": "0.00080500",
+ "lowPrice": "0.00070000",
+ "volume": "155214517.00000000",
+ "quoteVolume": "117029.39136100",
+ "openTime": 1560210241888,
+ "closeTime": 1560296641888,
+ "firstId": 622209,
+ "lastId": 647025,
+ "count": 24817
+ },
+ {
+ "symbol": "ONEBTC",
+ "priceChange": "-0.00000030",
+ "priceChangePercent": "-9.375",
+ "weightedAvgPrice": "0.00000302",
+ "prevClosePrice": "0.00000320",
+ "lastPrice": "0.00000290",
+ "lastQty": "9910.00000000",
+ "bidPrice": "0.00000289",
+ "bidQty": "944766.00000000",
+ "askPrice": "0.00000290",
+ "askQty": "161583.00000000",
+ "openPrice": "0.00000320",
+ "highPrice": "0.00000322",
+ "lowPrice": "0.00000281",
+ "volume": "910684490.00000000",
+ "quoteVolume": "2750.03683503",
+ "openTime": 1560210238199,
+ "closeTime": 1560296638199,
+ "firstId": 1390419,
+ "lastId": 1435222,
+ "count": 44804
+ },
+ {
+ "symbol": "ONEUSDT",
+ "priceChange": "-0.00257000",
+ "priceChangePercent": "-10.102",
+ "weightedAvgPrice": "0.02370474",
+ "prevClosePrice": "0.02547000",
+ "lastPrice": "0.02287000",
+ "lastQty": "19990.00000000",
+ "bidPrice": "0.02281000",
+ "bidQty": "12657.10000000",
+ "askPrice": "0.02285000",
+ "askQty": "71369.00000000",
+ "openPrice": "0.02544000",
+ "highPrice": "0.02573000",
+ "lowPrice": "0.02220000",
+ "volume": "631028365.70000000",
+ "quoteVolume": "14958360.57240400",
+ "openTime": 1560210238458,
+ "closeTime": 1560296638458,
+ "firstId": 981615,
+ "lastId": 1014575,
+ "count": 32961
+ },
+ {
+ "symbol": "ONETUSD",
+ "priceChange": "-0.00253000",
+ "priceChangePercent": "-9.914",
+ "weightedAvgPrice": "0.02377527",
+ "prevClosePrice": "0.02550000",
+ "lastPrice": "0.02299000",
+ "lastQty": "5617.60000000",
+ "bidPrice": "0.02290000",
+ "bidQty": "16444.60000000",
+ "askPrice": "0.02304000",
+ "askQty": "34117.90000000",
+ "openPrice": "0.02552000",
+ "highPrice": "0.02573000",
+ "lowPrice": "0.02237000",
+ "volume": "9549010.30000000",
+ "quoteVolume": "227030.30916900",
+ "openTime": 1560210225069,
+ "closeTime": 1560296625069,
+ "firstId": 19776,
+ "lastId": 21130,
+ "count": 1355
+ },
+ {
+ "symbol": "ONEPAX",
+ "priceChange": "-0.00276000",
+ "priceChangePercent": "-10.718",
+ "weightedAvgPrice": "0.02359438",
+ "prevClosePrice": "0.02552000",
+ "lastPrice": "0.02299000",
+ "lastQty": "18347.20000000",
+ "bidPrice": "0.02284000",
+ "bidQty": "22156.60000000",
+ "askPrice": "0.02312000",
+ "askQty": "13535.30000000",
+ "openPrice": "0.02575000",
+ "highPrice": "0.02578000",
+ "lowPrice": "0.02242000",
+ "volume": "7045258.80000000",
+ "quoteVolume": "166228.50257800",
+ "openTime": 1560210228728,
+ "closeTime": 1560296628728,
+ "firstId": 12550,
+ "lastId": 13833,
+ "count": 1284
+ },
+ {
+ "symbol": "ONEUSDC",
+ "priceChange": "-0.00324000",
+ "priceChangePercent": "-12.366",
+ "weightedAvgPrice": "0.02384909",
+ "prevClosePrice": "0.02553000",
+ "lastPrice": "0.02296000",
+ "lastQty": "4976.60000000",
+ "bidPrice": "0.02287000",
+ "bidQty": "12657.10000000",
+ "askPrice": "0.02318000",
+ "askQty": "2010.80000000",
+ "openPrice": "0.02620000",
+ "highPrice": "0.02698000",
+ "lowPrice": "0.02219000",
+ "volume": "5513200.00000000",
+ "quoteVolume": "131484.79003500",
+ "openTime": 1560210239109,
+ "closeTime": 1560296639109,
+ "firstId": 15915,
+ "lastId": 16324,
+ "count": 410
+ },
+ {
+ "symbol": "FTMBNB",
+ "priceChange": "-0.00027900",
+ "priceChangePercent": "-21.462",
+ "weightedAvgPrice": "0.00118080",
+ "prevClosePrice": "0.00000000",
+ "lastPrice": "0.00102100",
+ "lastQty": "4178.00000000",
+ "bidPrice": "0.00102100",
+ "bidQty": "53090.00000000",
+ "askPrice": "0.00102800",
+ "askQty": "86783.00000000",
+ "openPrice": "0.00130000",
+ "highPrice": "0.00148900",
+ "lowPrice": "0.00091100",
+ "volume": "91600332.00000000",
+ "quoteVolume": "108162.12637800",
+ "openTime": 1560210242347,
+ "closeTime": 1560296642347,
+ "firstId": 0,
+ "lastId": 10046,
+ "count": 10047
+ },
+ {
+ "symbol": "FTMBTC",
+ "priceChange": "0.00000015",
+ "priceChangePercent": "3.750",
+ "weightedAvgPrice": "0.00000472",
+ "prevClosePrice": "0.00000000",
+ "lastPrice": "0.00000415",
+ "lastQty": "7571.00000000",
+ "bidPrice": "0.00000415",
+ "bidQty": "18772.00000000",
+ "askPrice": "0.00000416",
+ "askQty": "375803.00000000",
+ "openPrice": "0.00000400",
+ "highPrice": "0.00000562",
+ "lowPrice": "0.00000390",
+ "volume": "2006043884.00000000",
+ "quoteVolume": "9476.77885328",
+ "openTime": 1560210241698,
+ "closeTime": 1560296641698,
+ "firstId": 0,
+ "lastId": 124790,
+ "count": 124791
+ },
+ {
+ "symbol": "FTMUSDT",
+ "priceChange": "-0.00318000",
+ "priceChangePercent": "-8.858",
+ "weightedAvgPrice": "0.03686993",
+ "prevClosePrice": "0.00000000",
+ "lastPrice": "0.03272000",
+ "lastQty": "8648.00000000",
+ "bidPrice": "0.03272000",
+ "bidQty": "269.60000000",
+ "askPrice": "0.03276000",
+ "askQty": "228338.00000000",
+ "openPrice": "0.03590000",
+ "highPrice": "0.04500000",
+ "lowPrice": "0.03000000",
+ "volume": "763113706.40000000",
+ "quoteVolume": "28135948.22995100",
+ "openTime": 1560210242332,
+ "closeTime": 1560296642332,
+ "firstId": 0,
+ "lastId": 60921,
+ "count": 60922
+ },
+ {
+ "symbol": "FTMTUSD",
+ "priceChange": "-0.00701000",
+ "priceChangePercent": "-17.521",
+ "weightedAvgPrice": "0.03709871",
+ "prevClosePrice": "0.00000000",
+ "lastPrice": "0.03300000",
+ "lastQty": "2115.20000000",
+ "bidPrice": "0.03275000",
+ "bidQty": "31705.20000000",
+ "askPrice": "0.03331000",
+ "askQty": "9151.00000000",
+ "openPrice": "0.04001000",
+ "highPrice": "0.05000000",
+ "lowPrice": "0.02500000",
+ "volume": "5185500.90000000",
+ "quoteVolume": "192375.37978600",
+ "openTime": 1560210206035,
+ "closeTime": 1560296606035,
+ "firstId": 0,
+ "lastId": 1054,
+ "count": 1055
+ },
+ {
+ "symbol": "FTMPAX",
+ "priceChange": "-0.00786000",
+ "priceChangePercent": "-19.645",
+ "weightedAvgPrice": "0.03695218",
+ "prevClosePrice": "0.00000000",
+ "lastPrice": "0.03215000",
+ "lastQty": "1562.00000000",
+ "bidPrice": "0.03275000",
+ "bidQty": "17376.20000000",
+ "askPrice": "0.03366000",
+ "askQty": "1788.40000000",
+ "openPrice": "0.04001000",
+ "highPrice": "0.04485000",
+ "lowPrice": "0.03000000",
+ "volume": "1483649.10000000",
+ "quoteVolume": "54824.06712800",
+ "openTime": 1560210237873,
+ "closeTime": 1560296637873,
+ "firstId": 0,
+ "lastId": 326,
+ "count": 327
+ },
+ {
+ "symbol": "FTMUSDC",
+ "priceChange": "-0.00741000",
+ "priceChangePercent": "-18.525",
+ "weightedAvgPrice": "0.03838945",
+ "prevClosePrice": "0.00000000",
+ "lastPrice": "0.03259000",
+ "lastQty": "3582.70000000",
+ "bidPrice": "0.03273000",
+ "bidQty": "29780.80000000",
+ "askPrice": "0.03371000",
+ "askQty": "9359.70000000",
+ "openPrice": "0.04000000",
+ "highPrice": "0.05354000",
+ "lowPrice": "0.03000000",
+ "volume": "5006329.20000000",
+ "quoteVolume": "192190.22320100",
+ "openTime": 1560210238896,
+ "closeTime": 1560296638896,
+ "firstId": 0,
+ "lastId": 591,
+ "count": 592
+ }
+ ],
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ },
+ {
+ "data": {
+ "symbol": "BTCUSDT",
+ "priceChange": "-66.29000000",
+ "priceChangePercent": "-0.833",
+ "weightedAvgPrice": "7847.66848366",
+ "prevClosePrice": "7954.88000000",
+ "lastPrice": "7887.72000000",
+ "lastQty": "1.05713300",
+ "bidPrice": "7887.45000000",
+ "bidQty": "0.13037900",
+ "askPrice": "7887.72000000",
+ "askQty": "7.85449900",
+ "openPrice": "7954.01000000",
+ "highPrice": "8010.00000000",
+ "lowPrice": "7692.23000000",
+ "volume": "30443.06048900",
+ "quoteVolume": "238907046.34575619",
+ "openTime": 1560210506109,
+ "closeTime": 1560296906109,
+ "firstId": 134003738,
+ "lastId": 134313940,
+ "count": 310203
+ },
+ "queryString": "symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v1/trades": {
+ "GET": [
+ {
+ "data": [
+ {
+ "id": 134316261,
+ "price": "7889.90000000",
+ "qty": "0.00212800",
+ "quoteQty": "16.78970720",
+ "time": 1560297806779,
+ "isBuyerMaker": false,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316262,
+ "price": "7888.66000000",
+ "qty": "0.02660000",
+ "quoteQty": "209.83835600",
+ "time": 1560297808410,
+ "isBuyerMaker": false,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316263,
+ "price": "7888.66000000",
+ "qty": "0.10928300",
+ "quoteQty": "862.09643078",
+ "time": 1560297808410,
+ "isBuyerMaker": false,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316264,
+ "price": "7888.66000000",
+ "qty": "0.02660000",
+ "quoteQty": "209.83835600",
+ "time": 1560297808414,
+ "isBuyerMaker": true,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316265,
+ "price": "7887.72000000",
+ "qty": "0.09776000",
+ "quoteQty": "771.10350720",
+ "time": 1560297808414,
+ "isBuyerMaker": true,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316266,
+ "price": "7887.72000000",
+ "qty": "0.01103000",
+ "quoteQty": "87.00155160",
+ "time": 1560297809203,
+ "isBuyerMaker": true,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316267,
+ "price": "7887.72000000",
+ "qty": "0.01557000",
+ "quoteQty": "122.81180040",
+ "time": 1560297809587,
+ "isBuyerMaker": true,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316268,
+ "price": "7887.70000000",
+ "qty": "0.01732700",
+ "quoteQty": "136.67017790",
+ "time": 1560297810038,
+ "isBuyerMaker": true,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316269,
+ "price": "7887.70000000",
+ "qty": "0.00495100",
+ "quoteQty": "39.05200270",
+ "time": 1560297810495,
+ "isBuyerMaker": true,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316270,
+ "price": "7887.38000000",
+ "qty": "0.06520200",
+ "quoteQty": "514.27295076",
+ "time": 1560297811181,
+ "isBuyerMaker": true,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316271,
+ "price": "7887.67000000",
+ "qty": "0.00148600",
+ "quoteQty": "11.72107762",
+ "time": 1560297812185,
+ "isBuyerMaker": false,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316272,
+ "price": "7887.67000000",
+ "qty": "0.01019300",
+ "quoteQty": "80.39902031",
+ "time": 1560297813510,
+ "isBuyerMaker": false,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316273,
+ "price": "7887.67000000",
+ "qty": "0.00000100",
+ "quoteQty": "0.00788767",
+ "time": 1560297813535,
+ "isBuyerMaker": false,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316274,
+ "price": "7889.05000000",
+ "qty": "0.13062200",
+ "quoteQty": "1030.48348910",
+ "time": 1560297814605,
+ "isBuyerMaker": false,
+ "isBestMatch": true
+ },
+ {
+ "id": 134316275,
+ "price": "7889.72000000",
+ "qty": "0.00837800",
+ "quoteQty": "66.10007416",
+ "time": 1560297814605,
+ "isBuyerMaker": false,
+ "isBestMatch": true
+ }
+ ],
+ "queryString": "limit=15\u0026symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v3/account": {
+ "GET": [
+ {
+ "data": {
+ "makerCommission": 10,
+ "takerCommission": 10,
+ "buyerCommission": 0,
+ "sellerCommission": 0,
+ "canTrade": true,
+ "canWithdraw": true,
+ "canDeposit": true,
+ "updateTime": 1517434535027,
+ "accountType": "MARGIN",
+ "balances": [
+ {
+ "asset": "BTC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "LTC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ETH",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "NEO",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BNB",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "QTUM",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "EOS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "SNT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BNT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "GAS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BCC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "USDT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "HSR",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "OAX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "DNT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "MCO",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ICN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ZRX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "OMG",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "WTC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "YOYO",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "LRC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "TRX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "SNGLS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "STRAT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BQX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "FUN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "KNC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "CDT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "XVG",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "IOTA",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "SNM",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "LINK",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "CVC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "TNT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "REP",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "MDA",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "MTL",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "SALT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "NULS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "SUB",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "MTH",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ADX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ETC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ENG",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ZEC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "AST",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "GNT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "DGD",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BAT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "DASH",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "POWR",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BTG",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "REQ",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "XMR",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "EVX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "VIB",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ENJ",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "VEN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ARK",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "XRP",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "MOD",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "STORJ",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "KMD",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "RCN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "EDO",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "DATA",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "DLT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "MANA",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "PPT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "RDN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "GXS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "AMB",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ARN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BCPT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "CND",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "GVT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "POE",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BTS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "FUEL",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "XZC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "QSP",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "LSK",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BCD",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "TNB",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ADA",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "LEND",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "XLM",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "CMT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "WAVES",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "WABI",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "GTO",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ICX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "OST",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ELF",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "AION",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "WINGS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BRD",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "NEBL",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "NAV",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "VIBE",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "LUN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "TRIG",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "APPC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "CHAT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "RLC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "INS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "PIVX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "IOST",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "STEEM",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "NANO",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "AE",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "VIA",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BLZ",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "SYS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "RPX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "NCASH",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "POA",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ONT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ZIL",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "STORM",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "XEM",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "WAN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "WPR",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "QLC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "GRS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "CLOAK",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "LOOM",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BCN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "TUSD",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ZEN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "SKY",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "THETA",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "IOTX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "QKC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "AGI",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "NXS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "SC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "NPXS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "KEY",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "NAS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "MFT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "DENT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ARDR",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "HOT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "VET",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "DOCK",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "POLY",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ONG",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "PHX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "HC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "GO",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "PAX",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "RVN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "DCR",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "USDC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "MITH",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BCHABC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BCHSV",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "REN",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "BTT",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "USDS",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "FET",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "TFUEL",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "CELR",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "MATIC",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ATOM",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "PHB",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "ONE",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ },
+ {
+ "asset": "FTM",
+ "free": "0.00000000",
+ "locked": "0.00000000"
+ }
+ ]
+ },
+ "queryString": "recvWindow=5000\u0026signature=7cae6f0626a72d9331edf09a1905f16ee424cb0b9b884d09000b490c4142c207\u0026timestamp=1560296073000",
+ "bodyParams": "",
+ "headers": {
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v3/allOrders": {
+ "GET": [
+ {
+ "data": [
+ {
+ "symbol": "LTCBTC",
+ "orderId": 1,
+ "clientOrderId": "mySuperOrderOfAwesome",
+ "price": "0.1",
+ "origQty": "1.0",
+ "executedQty": "0.0",
+ "cummulativeQuoteQty": "0.0",
+ "status": "NEW",
+ "timeInForce": "GTC",
+ "type": "LIMIT",
+ "side": "BUY",
+ "stopPrice": "0.0",
+ "icebergQty": "0.0",
+ "time": 1499827319559,
+ "updateTime": 1499827319559,
+ "isWorking": true
+ }
+ ],
+ "queryString": "limit=1000\u0026recvWindow=5000\u0026signature=4c63d8c6c56c8376c43df8bae65c19bc5c45677e501f8cf07227c7061d40ab28\u0026symbol=LTCBTC\u0026timestamp=1560295613000",
+ "bodyParams": "",
+ "headers": {
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": [
+ {
+ "symbol": "LTCBTC",
+ "orderId": 1,
+ "clientOrderId": "myOrder1",
+ "price": "0.1",
+ "origQty": "1.0",
+ "executedQty": "0.0",
+ "cummulativeQuoteQty": "0.0",
+ "status": "NEW",
+ "timeInForce": "GTC",
+ "type": "LIMIT",
+ "side": "BUY",
+ "stopPrice": "0.0",
+ "icebergQty": "0.0",
+ "time": 1499827319559,
+ "updateTime": 1499827319559,
+ "isWorking": true
+ }
+ ],
+ "queryString": "recvWindow=5000\u0026signature=ffa80a00a4ac2e29493e2d7b36df11de1e4b63f4f0cc584cfeaf1709a6478dc1\u0026symbol=BTCUSDT\u0026timestamp=1560296162000",
+ "bodyParams": "",
+ "headers": {
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v3/avgPrice": {
+ "GET": [
+ {
+ "data": {
+ "mins": 5,
+ "price": "7889.05325623"
+ },
+ "queryString": "symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v3/openOrders": {
+ "GET": [
+ {
+ "data": [
+ {
+ "symbol": "LTCBTC",
+ "orderId": 1,
+ "clientOrderId": "myOrder1",
+ "price": "0.1",
+ "origQty": "1.0",
+ "executedQty": "0.0",
+ "cummulativeQuoteQty": "0.0",
+ "status": "NEW",
+ "timeInForce": "GTC",
+ "type": "LIMIT",
+ "side": "BUY",
+ "stopPrice": "0.0",
+ "icebergQty": "0.0",
+ "time": 1499827319559,
+ "updateTime": 1499827319559,
+ "isWorking": true
+ }
+ ],
+ "queryString": "recvWindow=5000\u0026signature=0351f91c920dc08244977c888946962df9c39add182cfc400041a29dc41931ac\u0026timestamp=1560235137000",
+ "bodyParams": "",
+ "headers": {
+ "Key": [
+ ""
+ ],
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": [
+ {
+ "symbol": "LTCBTC",
+ "orderId": 1,
+ "clientOrderId": "superDuperOpenOrder",
+ "price": "0.1",
+ "origQty": "1.0",
+ "executedQty": "0.0",
+ "cummulativeQuoteQty": "0.0",
+ "status": "NEW",
+ "timeInForce": "GTC",
+ "type": "LIMIT",
+ "side": "BUY",
+ "stopPrice": "0.0",
+ "icebergQty": "0.0",
+ "time": 1499827319559,
+ "updateTime": 1499827319559,
+ "isWorking": true
+ }
+ ],
+ "queryString": "recvWindow=5000\u0026signature=7ec10254280461f4ac9abaaad60afddf3f0ffeccf7aa5f8269174faea27751da\u0026symbol=LTCBTC\u0026timestamp=1560295910000",
+ "bodyParams": "",
+ "headers": {
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": [
+ {
+ "symbol": "BTCUDT",
+ "orderId": 1,
+ "clientOrderId": "meowOrder",
+ "price": "0.1",
+ "origQty": "1.0",
+ "executedQty": "0.0",
+ "cummulativeQuoteQty": "0.0",
+ "status": "NEW",
+ "timeInForce": "GTC",
+ "type": "LIMIT",
+ "side": "BUY",
+ "stopPrice": "0.0",
+ "icebergQty": "0.0",
+ "time": 1499827319559,
+ "updateTime": 1499827319559,
+ "isWorking": true
+ }
+ ],
+ "queryString": "recvWindow=5000\u0026signature=d202904fe292b81d5fbb334ac7322bfbdb8472074c05f5a78b946232b197cd8a\u0026symbol=BTCUSDT\u0026timestamp=1560296250000",
+ "bodyParams": "",
+ "headers": {
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v3/order": {
+ "DELETE": [
+ {
+ "data": {
+ "symbol": "LTCBTC",
+ "orderId": 28,
+ "origClientOrderId": "myOrder1",
+ "clientOrderId": "cancelMyOrder1",
+ "transactTime": 1507725176595,
+ "price": "1.00000000",
+ "origQty": "10.00000000",
+ "executedQty": "8.00000000",
+ "cummulativeQuoteQty": "8.00000000",
+ "status": "CANCELED",
+ "timeInForce": "GTC",
+ "type": "LIMIT",
+ "side": "SELL"
+ },
+ "queryString": "orderId=1\u0026origClientOrderId=1\u0026recvWindow=5000\u0026signature=1fc17bbf196e99c41a3fdc5c333aa963d3a059b00bef547b35734d2c0bb950e4\u0026symbol=LTCBTC\u0026timestamp=1560235422000",
+ "bodyParams": "",
+ "headers": {
+ "Key": [
+ ""
+ ],
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": {
+ "symbol": "LTCBTC",
+ "orderId": 28,
+ "origClientOrderId": "myOrder1",
+ "clientOrderId": "cancelMyOrder1",
+ "transactTime": 1507725176595,
+ "price": "1.00000000",
+ "origQty": "10.00000000",
+ "executedQty": "8.00000000",
+ "cummulativeQuoteQty": "8.00000000",
+ "status": "CANCELED",
+ "timeInForce": "GTC",
+ "type": "LIMIT",
+ "side": "SELL"
+ },
+ "queryString": "orderId=1\u0026recvWindow=5000\u0026signature=1fc17bbf196e99c41a3fdc5c333aa963d3a059b00bef547b35734d2c0bb950e4\u0026symbol=LTCBTC\u0026timestamp=1560235422000",
+ "bodyParams": "",
+ "headers": {
+ "Key": [
+ ""
+ ],
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ }
+ ],
+ "GET": [
+ {
+ "data": {
+ "symbol": "BTCUSDT",
+ "orderId": 1337,
+ "clientOrderId": "eliteOrder",
+ "price": "0.1",
+ "origQty": "1.0",
+ "executedQty": "0.0",
+ "cummulativeQuoteQty": "0.0",
+ "status": "NEW",
+ "timeInForce": "GTC",
+ "type": "LIMIT",
+ "side": "BUY",
+ "stopPrice": "0.0",
+ "icebergQty": "0.0",
+ "time": 1499827319559,
+ "updateTime": 1499827319559,
+ "isWorking": true
+ },
+ "queryString": "orderId=1337\u0026recvWindow=5000\u0026signature=0dffb798f0ecba6292e5b5fc9e86027c4d85733c6ff6edd5dbb9be2f7e48f6a6\u0026symbol=BTCUSDT\u0026timestamp=1560296399000",
+ "bodyParams": "",
+ "headers": {
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ }
+ ],
+ "POST": [
+ {
+ "data": {},
+ "queryString": "quantity=1\u0026recvWindow=5000\u0026side=BUY\u0026signature=d122bfd46f4dcf8dda98974aed14221916aabc050a6aa30194d124e81ffe7f44\u0026symbol=LTCBTC\u0026timeInForce=GTC\u0026timestamp=1560236466000\u0026type=MARKET",
+ "bodyParams": "",
+ "headers": {
+ "Key": [
+ ""
+ ],
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v3/ticker/bookTicker": {
+ "GET": [
+ {
+ "data": {
+ "symbol": "BTCUSDT",
+ "bidPrice": "7888.64000000",
+ "bidQty": "0.02534600",
+ "askPrice": "7890.50000000",
+ "askQty": "0.13300500"
+ },
+ "queryString": "symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v3/ticker/price": {
+ "GET": [
+ {
+ "data": {
+ "symbol": "BTCUSDT",
+ "price": "7888.64000000"
+ },
+ "queryString": "symbol=BTCUSDT",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/wapi/v3/depositAddress.html": {
+ "GET": [
+ {
+ "data": {
+ "address": "1H5qe5xK5fCcEHGhww7jsoBMZRYSzVDz9V",
+ "success": true,
+ "addressTag": "",
+ "asset": "BTC"
+ },
+ "queryString": "asset=BTC\u0026recvWindow=5000\u0026signature=e94a8205dc67343a7bb482c4b4c65cb48abbca60b3009ee139e8c221f0271e6a\u0026status=true\u0026timestamp=1560233327000",
+ "bodyParams": "",
+ "headers": {
+ "Key": [
+ ""
+ ],
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ "/wapi/v3/withdraw.html": {
+ "POST": [
+ {
+ "data": {
+ "msg": "success",
+ "success": true,
+ "id": "7213fea8e94b4a5593d507237e5a555b"
+ },
+ "queryString": "address=1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB\u0026amount=0\u0026asset=BTC\u0026name=WITHDRAW+IT+ALL\u0026recvWindow=5000\u0026signature=bec597908e6d2c223790cac9ca46300109216e056690a3f10a279b9eecc97e7e\u0026timestamp=1560233386000",
+ "bodyParams": "",
+ "headers": {
+ "Key": [
+ ""
+ ],
+ "X-Mbx-Apikey": [
+ ""
+ ]
+ }
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/testdata/http_mock/bitstamp/bitstamp.json b/testdata/http_mock/bitstamp/bitstamp.json
new file mode 100644
index 00000000000..e1ce969480c
--- /dev/null
+++ b/testdata/http_mock/bitstamp/bitstamp.json
@@ -0,0 +1,42842 @@
+{
+ "routes": {
+ "/api/bitcoin_deposit_address/": {
+ "POST": [
+ {
+ "data": "3JKiWaRunFQhpaYSDs4cQwfdPXHK2pWXct",
+ "queryString": "",
+ "bodyParams": "key=\u0026nonce=1560479820465818675\u0026signature=71962D6BBDFE3BF42BAC455E3A9C410FA90286148A6C299BAC1B44234072DA45",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/bitcoin_withdrawal/": {
+ "POST": [
+ {
+ "data": {
+ "error": {
+ "amount": [
+ "You have only 0.00000000 BTC available. Check your account balance for details."
+ ],
+ "instant": [
+ "Bitcoin instant withdrawals are temporarily disabled."
+ ]
+ }
+ },
+ "queryString": "",
+ "bodyParams": "address=1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB\u0026amount=100\u0026instant=1\u0026key=\u0026nonce=1560405519661130725\u0026signature=2CEEA36209A743A15CEF2C5AD724DEF2339E4FB5497DE58149507ED6CEEF98BA",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/cancel_all_orders/": {
+ "POST": [
+ {
+ "data": true,
+ "queryString": "",
+ "bodyParams": "key=\u0026nonce=1560466182936874211\u0026signature=D9F943CF9728072206C123E8E6381EE6AB714504A264D9AEA091D945539FEFF5",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/eur_usd/": {
+ "GET": [
+ {
+ "data": {
+ "sell": "1.1287",
+ "buy": "1.1377"
+ },
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {
+ "Referer": [
+ "https://www.bitstamp.net/api/eur_usd"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/order_status/": {
+ "POST": [
+ {
+ "data": {
+ "error": "Order not found"
+ },
+ "queryString": "",
+ "bodyParams": "id=1337\u0026key=\u0026nonce=1560480481012757775\u0026signature=71E0C3A3B0CE4C96C9AC0C6519C3F4801A46C52C5C9BAAADB8642CE65F0CF385",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/unconfirmed_btc/": {
+ "POST": [
+ {
+ "data": [],
+ "queryString": "",
+ "bodyParams": "key=\u0026nonce=1560479341665583985\u0026signature=8E4563D286BB5EEE45093DA708A8F78780B20CA5B1631E308E9C5CB64ACFE8D3",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/balance/": {
+ "POST": [
+ {
+ "data": {
+ "bch_available": "0.00000000",
+ "bch_balance": "0.00000000",
+ "bch_reserved": "0.00000000",
+ "bchbtc_fee": "0.25",
+ "bcheur_fee": "0.25",
+ "bchusd_fee": "0.25",
+ "btc_available": "0.00000000",
+ "btc_balance": "0.00000000",
+ "btc_reserved": "0.00000000",
+ "btceur_fee": "0.25",
+ "btcusd_fee": "0.25",
+ "eth_available": "0.00000000",
+ "eth_balance": "0.00000000",
+ "eth_reserved": "0.00000000",
+ "ethbtc_fee": "0.25",
+ "etheur_fee": "0.25",
+ "ethusd_fee": "0.25",
+ "eur_available": "0.00",
+ "eur_balance": "0.00",
+ "eur_reserved": "0.00",
+ "eurusd_fee": "0.25",
+ "ltc_available": "0.00000000",
+ "ltc_balance": "0.00000000",
+ "ltc_reserved": "0.00000000",
+ "ltcbtc_fee": "0.25",
+ "ltceur_fee": "0.25",
+ "ltcusd_fee": "0.25",
+ "usd_available": "0.00",
+ "usd_balance": "0.00",
+ "usd_reserved": "0.00",
+ "xrp_available": "0.00000000",
+ "xrp_balance": "0.00000000",
+ "xrp_reserved": "0.00000000",
+ "xrpbtc_fee": "0.25",
+ "xrpeur_fee": "0.25",
+ "xrpusd_fee": "0.25"
+ },
+ "queryString": "",
+ "bodyParams": "key=\u0026nonce=1560481519007838128\u0026signature=C7558B2B2E75E9057994271CCC0200835887CDC63EC4103220489C52F749BFFA",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/buy/market/btcusd/": {
+ "POST": [
+ {
+ "data": {
+ "status": "error",
+ "reason": {
+ "__all__": [
+ "You can only buy 0.00000000 BTC. Check your account balance for details."
+ ]
+ }
+ },
+ "queryString": "",
+ "bodyParams": "amount=1\u0026key=\u0026nonce=1560469416881040806\u0026price=1\u0026signature=D683BE07779B299B730F334C94758EBC56E264FC5C96C87B64E5ECC670421D65",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/cancel_order/": {
+ "POST": [
+ {
+ "data": {
+ "error": "Order not found"
+ },
+ "queryString": "",
+ "bodyParams": "id=1\u0026key=\u0026nonce=1560467884949723197\u0026signature=79D88FC2BC3AECBFDD27F70EF5DDBB485349F45129C58EE725BAEE0DF7818452",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/open_orders/all/": {
+ "POST": [
+ {
+ "data": [],
+ "queryString": "",
+ "bodyParams": "key=\u0026nonce=1560473214020947705\u0026signature=4530400B3F02B223F5AFE62DA3B18A09757A32882D9798B9AA78D70DE976316F",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/open_orders/btcusd/": {
+ "POST": [
+ {
+ "data": [],
+ "queryString": "",
+ "bodyParams": "key=\u0026nonce=1560480749904299481\u0026signature=C1DCFCFC6E3122D12ACCA57178F781658DA6690DCAE4F56EC13998D5FCE9DF5D",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/order_book/btcusd/": {
+ "GET": [
+ {
+ "data": {
+ "timestamp": "1560482001",
+ "bids": [
+ [
+ "8200.59",
+ "2.00000000"
+ ],
+ [
+ "8196.66",
+ "1.90720000"
+ ],
+ [
+ "8196.51",
+ "2.00000000"
+ ],
+ [
+ "8196.00",
+ "0.02000000"
+ ],
+ [
+ "8195.02",
+ "3.04580000"
+ ],
+ [
+ "8194.92",
+ "0.06000000"
+ ],
+ [
+ "8194.10",
+ "4.98000000"
+ ],
+ [
+ "8193.82",
+ "1.00000000"
+ ],
+ [
+ "8193.22",
+ "1.50000000"
+ ],
+ [
+ "8192.88",
+ "5.00000000"
+ ],
+ [
+ "8192.09",
+ "0.40000000"
+ ],
+ [
+ "8191.98",
+ "2.50000000"
+ ],
+ [
+ "8191.08",
+ "4.00000000"
+ ],
+ [
+ "8188.41",
+ "10.00000000"
+ ],
+ [
+ "8188.00",
+ "0.06000000"
+ ],
+ [
+ "8187.91",
+ "4.30000000"
+ ],
+ [
+ "8187.29",
+ "4.12935423"
+ ],
+ [
+ "8186.73",
+ "3.62073320"
+ ],
+ [
+ "8186.45",
+ "2.50000000"
+ ],
+ [
+ "8186.29",
+ "2.00000000"
+ ],
+ [
+ "8186.26",
+ "5.00000000"
+ ],
+ [
+ "8185.69",
+ "0.31014450"
+ ],
+ [
+ "8185.68",
+ "0.40000000"
+ ],
+ [
+ "8185.16",
+ "0.10000000"
+ ],
+ [
+ "8184.96",
+ "3.38967500"
+ ],
+ [
+ "8184.00",
+ "4.90000000"
+ ],
+ [
+ "8182.48",
+ "1.00000000"
+ ],
+ [
+ "8181.69",
+ "0.70000000"
+ ],
+ [
+ "8181.00",
+ "1.66108835"
+ ],
+ [
+ "8180.84",
+ "4.01501600"
+ ],
+ [
+ "8180.78",
+ "5.00000000"
+ ],
+ [
+ "8180.37",
+ "5.00000000"
+ ],
+ [
+ "8178.92",
+ "2.37600000"
+ ],
+ [
+ "8177.83",
+ "2.75000000"
+ ],
+ [
+ "8174.55",
+ "3.00000000"
+ ],
+ [
+ "8173.79",
+ "0.20000000"
+ ],
+ [
+ "8173.76",
+ "0.00096057"
+ ],
+ [
+ "8172.48",
+ "8.08587150"
+ ],
+ [
+ "8172.04",
+ "8.06320237"
+ ],
+ [
+ "8171.53",
+ "0.00674998"
+ ],
+ [
+ "8171.00",
+ "0.20000000"
+ ],
+ [
+ "8170.71",
+ "12.55000000"
+ ],
+ [
+ "8169.98",
+ "1.50180000"
+ ],
+ [
+ "8169.50",
+ "0.86960531"
+ ],
+ [
+ "8168.24",
+ "0.01480061"
+ ],
+ [
+ "8165.58",
+ "1.45200000"
+ ],
+ [
+ "8165.19",
+ "1.39337966"
+ ],
+ [
+ "8164.80",
+ "1.36000000"
+ ],
+ [
+ "8164.77",
+ "0.07000000"
+ ],
+ [
+ "8164.17",
+ "1.43276582"
+ ],
+ [
+ "8161.00",
+ "2.36531606"
+ ],
+ [
+ "8160.61",
+ "0.00674998"
+ ],
+ [
+ "8160.00",
+ "0.01400000"
+ ],
+ [
+ "8159.95",
+ "0.00096056"
+ ],
+ [
+ "8158.25",
+ "21.53520000"
+ ],
+ [
+ "8156.61",
+ "0.00069500"
+ ],
+ [
+ "8155.26",
+ "0.07000000"
+ ],
+ [
+ "8150.33",
+ "12.55000000"
+ ],
+ [
+ "8150.00",
+ "0.72616995"
+ ],
+ [
+ "8149.69",
+ "0.00674998"
+ ],
+ [
+ "8148.60",
+ "0.81000000"
+ ],
+ [
+ "8147.59",
+ "15.18900000"
+ ],
+ [
+ "8146.13",
+ "0.00096055"
+ ],
+ [
+ "8143.71",
+ "0.00413412"
+ ],
+ [
+ "8141.30",
+ "15.88668520"
+ ],
+ [
+ "8140.50",
+ "0.86000000"
+ ],
+ [
+ "8140.00",
+ "1.00000000"
+ ],
+ [
+ "8138.77",
+ "0.00674998"
+ ],
+ [
+ "8135.00",
+ "0.75605800"
+ ],
+ [
+ "8132.31",
+ "0.00097054"
+ ],
+ [
+ "8130.03",
+ "0.01720104"
+ ],
+ [
+ "8130.01",
+ "12.55000000"
+ ],
+ [
+ "8129.50",
+ "0.00689602"
+ ],
+ [
+ "8128.96",
+ "18.20801456"
+ ],
+ [
+ "8128.00",
+ "0.02598254"
+ ],
+ [
+ "8127.85",
+ "0.00674998"
+ ],
+ [
+ "8126.00",
+ "0.50000000"
+ ],
+ [
+ "8125.52",
+ "1.00000000"
+ ],
+ [
+ "8125.01",
+ "0.49230709"
+ ],
+ [
+ "8125.00",
+ "2.00000000"
+ ],
+ [
+ "8123.40",
+ "0.03654189"
+ ],
+ [
+ "8123.39",
+ "6.04930000"
+ ],
+ [
+ "8123.37",
+ "4.59900000"
+ ],
+ [
+ "8121.97",
+ "0.51019519"
+ ],
+ [
+ "8121.93",
+ "1.00000000"
+ ],
+ [
+ "8120.00",
+ "1.00000000"
+ ],
+ [
+ "8118.49",
+ "0.00097053"
+ ],
+ [
+ "8117.77",
+ "6.50051395"
+ ],
+ [
+ "8117.53",
+ "0.05000000"
+ ],
+ [
+ "8116.92",
+ "0.00674998"
+ ],
+ [
+ "8113.27",
+ "1.00000000"
+ ],
+ [
+ "8113.19",
+ "1.00000000"
+ ],
+ [
+ "8111.11",
+ "1.15219829"
+ ],
+ [
+ "8110.68",
+ "2.00000000"
+ ],
+ [
+ "8110.00",
+ "0.01732169"
+ ],
+ [
+ "8109.74",
+ "12.55000000"
+ ],
+ [
+ "8106.00",
+ "0.00674998"
+ ],
+ [
+ "8104.85",
+ "0.98000000"
+ ],
+ [
+ "8104.68",
+ "0.00097052"
+ ],
+ [
+ "8104.00",
+ "0.12402915"
+ ],
+ [
+ "8102.57",
+ "18.97881720"
+ ],
+ [
+ "8102.00",
+ "0.15000000"
+ ],
+ [
+ "8101.00",
+ "11.54930648"
+ ],
+ [
+ "8100.00",
+ "3.59309698"
+ ],
+ [
+ "8099.00",
+ "2.50000000"
+ ],
+ [
+ "8098.98",
+ "9.99000000"
+ ],
+ [
+ "8098.91",
+ "9.99000000"
+ ],
+ [
+ "8098.88",
+ "9.99000000"
+ ],
+ [
+ "8097.42",
+ "0.01470036"
+ ],
+ [
+ "8096.98",
+ "9.99000000"
+ ],
+ [
+ "8096.68",
+ "1.00000000"
+ ],
+ [
+ "8095.08",
+ "0.00674998"
+ ],
+ [
+ "8092.00",
+ "0.07742462"
+ ],
+ [
+ "8090.86",
+ "0.00097051"
+ ],
+ [
+ "8090.00",
+ "1.00000000"
+ ],
+ [
+ "8089.51",
+ "12.55000000"
+ ],
+ [
+ "8087.18",
+ "6.87000000"
+ ],
+ [
+ "8086.00",
+ "0.01500000"
+ ],
+ [
+ "8084.73",
+ "6.86118815"
+ ],
+ [
+ "8084.16",
+ "0.00674998"
+ ],
+ [
+ "8080.00",
+ "0.42569834"
+ ],
+ [
+ "8077.44",
+ "0.30384255"
+ ],
+ [
+ "8077.04",
+ "0.00097050"
+ ],
+ [
+ "8076.47",
+ "0.50000000"
+ ],
+ [
+ "8075.00",
+ "1.00000000"
+ ],
+ [
+ "8074.11",
+ "0.33000000"
+ ],
+ [
+ "8073.63",
+ "21.59624700"
+ ],
+ [
+ "8073.24",
+ "0.00674998"
+ ],
+ [
+ "8070.00",
+ "0.00710161"
+ ],
+ [
+ "8069.34",
+ "12.55000000"
+ ],
+ [
+ "8067.00",
+ "0.51000000"
+ ],
+ [
+ "8066.00",
+ "0.02130092"
+ ],
+ [
+ "8064.87",
+ "1.48830000"
+ ],
+ [
+ "8063.23",
+ "0.00097049"
+ ],
+ [
+ "8063.00",
+ "0.01500000"
+ ],
+ [
+ "8062.32",
+ "0.00674998"
+ ],
+ [
+ "8060.00",
+ "0.02598254"
+ ],
+ [
+ "8058.00",
+ "0.10000000"
+ ],
+ [
+ "8057.79",
+ "13.65145361"
+ ],
+ [
+ "8057.00",
+ "0.10000000"
+ ],
+ [
+ "8055.00",
+ "0.10000000"
+ ],
+ [
+ "8053.90",
+ "0.50000000"
+ ],
+ [
+ "8053.00",
+ "0.07000000"
+ ],
+ [
+ "8051.40",
+ "0.00674998"
+ ],
+ [
+ "8050.99",
+ "7.21600000"
+ ],
+ [
+ "8050.00",
+ "0.32238572"
+ ],
+ [
+ "8049.41",
+ "0.00098048"
+ ],
+ [
+ "8049.22",
+ "8.97821409"
+ ],
+ [
+ "8047.93",
+ "0.03000000"
+ ],
+ [
+ "8047.48",
+ "18.20000000"
+ ],
+ [
+ "8046.00",
+ "0.02200000"
+ ],
+ [
+ "8044.00",
+ "0.10000000"
+ ],
+ [
+ "8042.00",
+ "1.00000000"
+ ],
+ [
+ "8041.00",
+ "0.05000000"
+ ],
+ [
+ "8040.47",
+ "0.00674998"
+ ],
+ [
+ "8038.04",
+ "0.00247324"
+ ],
+ [
+ "8038.00",
+ "0.15000000"
+ ],
+ [
+ "8037.00",
+ "0.10152215"
+ ],
+ [
+ "8036.08",
+ "0.50000000"
+ ],
+ [
+ "8035.59",
+ "0.00098047"
+ ],
+ [
+ "8034.11",
+ "1.00000000"
+ ],
+ [
+ "8032.22",
+ "0.10000000"
+ ],
+ [
+ "8031.65",
+ "0.01242951"
+ ],
+ [
+ "8030.75",
+ "15.04265167"
+ ],
+ [
+ "8030.00",
+ "0.09876339"
+ ],
+ [
+ "8029.55",
+ "0.00674998"
+ ],
+ [
+ "8029.14",
+ "12.55000000"
+ ],
+ [
+ "8028.00",
+ "0.60000000"
+ ],
+ [
+ "8023.84",
+ "0.03000000"
+ ],
+ [
+ "8023.59",
+ "0.01000000"
+ ],
+ [
+ "8021.77",
+ "0.00098046"
+ ],
+ [
+ "8021.00",
+ "0.05000000"
+ ],
+ [
+ "8020.00",
+ "0.27000000"
+ ],
+ [
+ "8019.11",
+ "0.01865918"
+ ],
+ [
+ "8018.63",
+ "0.00674998"
+ ],
+ [
+ "8018.47",
+ "15.95553644"
+ ],
+ [
+ "8018.00",
+ "0.02500000"
+ ],
+ [
+ "8016.28",
+ "0.00814691"
+ ],
+ [
+ "8015.00",
+ "0.03000000"
+ ],
+ [
+ "8014.79",
+ "13.28100000"
+ ],
+ [
+ "8013.00",
+ "0.60000000"
+ ],
+ [
+ "8012.90",
+ "1.00000000"
+ ],
+ [
+ "8010.00",
+ "0.20100000"
+ ],
+ [
+ "8009.32",
+ "0.02517442"
+ ],
+ [
+ "8009.22",
+ "14.70848699"
+ ],
+ [
+ "8009.12",
+ "12.55000000"
+ ],
+ [
+ "8008.71",
+ "1.00000000"
+ ],
+ [
+ "8008.45",
+ "0.21665000"
+ ],
+ [
+ "8007.96",
+ "0.00098045"
+ ],
+ [
+ "8007.71",
+ "0.00674998"
+ ],
+ [
+ "8005.00",
+ "1.20779625"
+ ],
+ [
+ "8004.51",
+ "0.05000000"
+ ],
+ [
+ "8004.00",
+ "0.20000000"
+ ],
+ [
+ "8001.00",
+ "0.87189976"
+ ],
+ [
+ "8000.90",
+ "0.02000000"
+ ],
+ [
+ "8000.00",
+ "3.24490281"
+ ],
+ [
+ "7999.39",
+ "0.00070900"
+ ],
+ [
+ "7996.79",
+ "0.00674998"
+ ],
+ [
+ "7996.53",
+ "0.50000000"
+ ],
+ [
+ "7995.97",
+ "0.50000000"
+ ],
+ [
+ "7995.89",
+ "0.50000000"
+ ],
+ [
+ "7994.14",
+ "0.00098044"
+ ],
+ [
+ "7993.23",
+ "5.46294097"
+ ],
+ [
+ "7991.00",
+ "0.01500000"
+ ],
+ [
+ "7990.31",
+ "0.01744988"
+ ],
+ [
+ "7990.00",
+ "7.05100000"
+ ],
+ [
+ "7989.15",
+ "12.55000000"
+ ],
+ [
+ "7985.87",
+ "0.00674998"
+ ],
+ [
+ "7982.01",
+ "13.11068317"
+ ],
+ [
+ "7980.36",
+ "0.02000000"
+ ],
+ [
+ "7980.32",
+ "0.00098043"
+ ],
+ [
+ "7979.00",
+ "0.05000000"
+ ],
+ [
+ "7977.00",
+ "0.05000000"
+ ],
+ [
+ "7974.95",
+ "0.00674998"
+ ],
+ [
+ "7974.93",
+ "0.81816016"
+ ],
+ [
+ "7973.00",
+ "1.00000000"
+ ],
+ [
+ "7971.87",
+ "0.50000000"
+ ],
+ [
+ "7971.00",
+ "0.05000000"
+ ],
+ [
+ "7969.22",
+ "12.55000000"
+ ],
+ [
+ "7968.00",
+ "0.50000000"
+ ],
+ [
+ "7966.51",
+ "0.00099042"
+ ],
+ [
+ "7966.00",
+ "0.13172454"
+ ],
+ [
+ "7964.02",
+ "0.00674998"
+ ],
+ [
+ "7963.00",
+ "0.01000000"
+ ],
+ [
+ "7955.91",
+ "0.50000000"
+ ],
+ [
+ "7953.10",
+ "0.00674998"
+ ],
+ [
+ "7952.69",
+ "0.00099041"
+ ],
+ [
+ "7952.51",
+ "0.05000000"
+ ],
+ [
+ "7950.05",
+ "0.03081550"
+ ],
+ [
+ "7950.00",
+ "0.33412140"
+ ],
+ [
+ "7949.35",
+ "12.55000000"
+ ],
+ [
+ "7947.22",
+ "0.03000000"
+ ],
+ [
+ "7945.00",
+ "1.00000000"
+ ],
+ [
+ "7942.18",
+ "0.00674998"
+ ],
+ [
+ "7940.02",
+ "1.55230000"
+ ],
+ [
+ "7940.00",
+ "0.02000000"
+ ],
+ [
+ "7938.87",
+ "0.00099040"
+ ],
+ [
+ "7937.29",
+ "0.03058631"
+ ],
+ [
+ "7933.00",
+ "0.13262996"
+ ],
+ [
+ "7931.26",
+ "0.00674998"
+ ],
+ [
+ "7929.53",
+ "2.19914149"
+ ],
+ [
+ "7928.07",
+ "0.23692176"
+ ],
+ [
+ "7925.05",
+ "0.00099039"
+ ],
+ [
+ "7923.99",
+ "0.00319990"
+ ],
+ [
+ "7922.00",
+ "0.00100000"
+ ],
+ [
+ "7920.34",
+ "0.00674998"
+ ],
+ [
+ "7920.15",
+ "0.05502743"
+ ],
+ [
+ "7917.27",
+ "0.10000000"
+ ],
+ [
+ "7916.80",
+ "0.63000000"
+ ],
+ [
+ "7913.04",
+ "0.03080318"
+ ],
+ [
+ "7912.90",
+ "1.00000000"
+ ],
+ [
+ "7911.24",
+ "0.00099038"
+ ],
+ [
+ "7911.00",
+ "1.00000000"
+ ],
+ [
+ "7910.78",
+ "0.50000000"
+ ],
+ [
+ "7909.75",
+ "12.55000000"
+ ],
+ [
+ "7909.42",
+ "0.00674998"
+ ],
+ [
+ "7909.00",
+ "0.30000000"
+ ],
+ [
+ "7907.00",
+ "0.10000000"
+ ],
+ [
+ "7906.00",
+ "0.05000000"
+ ],
+ [
+ "7904.00",
+ "0.05000000"
+ ],
+ [
+ "7902.00",
+ "0.05000000"
+ ],
+ [
+ "7901.00",
+ "0.22000000"
+ ],
+ [
+ "7900.03",
+ "0.03502316"
+ ],
+ [
+ "7900.00",
+ "3.33303042"
+ ],
+ [
+ "7899.00",
+ "0.10000000"
+ ],
+ [
+ "7898.00",
+ "0.05000000"
+ ],
+ [
+ "7897.42",
+ "0.00099037"
+ ],
+ [
+ "7896.32",
+ "8.69316277"
+ ],
+ [
+ "7892.11",
+ "0.00831717"
+ ],
+ [
+ "7892.00",
+ "0.50000000"
+ ],
+ [
+ "7890.03",
+ "12.55000000"
+ ],
+ [
+ "7890.00",
+ "0.00848289"
+ ],
+ [
+ "7889.00",
+ "0.00430000"
+ ],
+ [
+ "7888.86",
+ "0.00944836"
+ ],
+ [
+ "7888.00",
+ "0.55686619"
+ ],
+ [
+ "7887.00",
+ "0.02000000"
+ ],
+ [
+ "7885.75",
+ "0.10000000"
+ ],
+ [
+ "7884.00",
+ "2.00000000"
+ ],
+ [
+ "7883.60",
+ "0.00100036"
+ ],
+ [
+ "7883.58",
+ "0.13469514"
+ ],
+ [
+ "7882.78",
+ "0.10000000"
+ ],
+ [
+ "7879.00",
+ "0.50000000"
+ ],
+ [
+ "7875.00",
+ "0.10003937"
+ ],
+ [
+ "7874.00",
+ "0.02677673"
+ ],
+ [
+ "7873.00",
+ "0.02000000"
+ ],
+ [
+ "7870.35",
+ "12.55000000"
+ ],
+ [
+ "7870.00",
+ "0.05000000"
+ ],
+ [
+ "7869.78",
+ "0.00100035"
+ ],
+ [
+ "7869.02",
+ "0.50000000"
+ ],
+ [
+ "7868.00",
+ "0.01783045"
+ ],
+ [
+ "7867.00",
+ "0.02000000"
+ ],
+ [
+ "7865.00",
+ "1.00000000"
+ ],
+ [
+ "7863.16",
+ "0.00448460"
+ ],
+ [
+ "7861.46",
+ "0.02500000"
+ ],
+ [
+ "7861.08",
+ "0.00223754"
+ ],
+ [
+ "7861.00",
+ "0.10000000"
+ ],
+ [
+ "7860.00",
+ "0.07336400"
+ ],
+ [
+ "7859.72",
+ "0.50000000"
+ ],
+ [
+ "7859.00",
+ "0.01000000"
+ ],
+ [
+ "7857.81",
+ "0.01508244"
+ ],
+ [
+ "7856.00",
+ "0.09667897"
+ ],
+ [
+ "7855.97",
+ "0.00100034"
+ ],
+ [
+ "7855.00",
+ "0.03000000"
+ ],
+ [
+ "7854.00",
+ "0.03000000"
+ ],
+ [
+ "7850.79",
+ "0.02000000"
+ ],
+ [
+ "7850.72",
+ "12.55000000"
+ ],
+ [
+ "7850.01",
+ "0.03000000"
+ ],
+ [
+ "7850.00",
+ "1.43150655"
+ ],
+ [
+ "7847.00",
+ "0.02000000"
+ ],
+ [
+ "7842.77",
+ "0.01280995"
+ ],
+ [
+ "7842.30",
+ "0.00091800"
+ ],
+ [
+ "7842.15",
+ "0.00100033"
+ ],
+ [
+ "7840.13",
+ "0.00112000"
+ ],
+ [
+ "7840.00",
+ "0.40459322"
+ ],
+ [
+ "7838.91",
+ "0.00328234"
+ ],
+ [
+ "7838.59",
+ "0.01407625"
+ ],
+ [
+ "7832.00",
+ "1.00000000"
+ ],
+ [
+ "7831.15",
+ "12.55000000"
+ ],
+ [
+ "7828.33",
+ "0.00100032"
+ ],
+ [
+ "7828.11",
+ "0.50000000"
+ ],
+ [
+ "7827.00",
+ "0.02000000"
+ ],
+ [
+ "7826.00",
+ "0.11768209"
+ ],
+ [
+ "7824.00",
+ "0.03000000"
+ ],
+ [
+ "7823.55",
+ "0.12277035"
+ ],
+ [
+ "7820.00",
+ "0.41870407"
+ ],
+ [
+ "7816.00",
+ "0.01727865"
+ ],
+ [
+ "7815.43",
+ "1.51010000"
+ ],
+ [
+ "7815.00",
+ "0.00750479"
+ ],
+ [
+ "7814.52",
+ "0.00100031"
+ ],
+ [
+ "7812.90",
+ "1.00000000"
+ ],
+ [
+ "7811.62",
+ "12.55000000"
+ ],
+ [
+ "7810.00",
+ "0.13608067"
+ ],
+ [
+ "7807.74",
+ "0.40000000"
+ ],
+ [
+ "7807.72",
+ "0.01306500"
+ ],
+ [
+ "7807.00",
+ "0.02000000"
+ ],
+ [
+ "7806.11",
+ "1.54850000"
+ ],
+ [
+ "7804.68",
+ "1.36235694"
+ ],
+ [
+ "7802.84",
+ "0.00177307"
+ ],
+ [
+ "7801.01",
+ "0.43352592"
+ ],
+ [
+ "7800.70",
+ "0.00101030"
+ ],
+ [
+ "7800.10",
+ "0.03811144"
+ ],
+ [
+ "7800.00",
+ "16.16853461"
+ ],
+ [
+ "7793.00",
+ "0.10239060"
+ ],
+ [
+ "7792.14",
+ "12.55000000"
+ ],
+ [
+ "7789.00",
+ "0.00350000"
+ ],
+ [
+ "7788.96",
+ "0.50000000"
+ ],
+ [
+ "7788.00",
+ "0.50000000"
+ ],
+ [
+ "7787.00",
+ "0.02000000"
+ ],
+ [
+ "7786.88",
+ "0.00101029"
+ ],
+ [
+ "7785.00",
+ "0.92434167"
+ ],
+ [
+ "7780.00",
+ "1.05101414"
+ ],
+ [
+ "7777.70",
+ "2.68333055"
+ ],
+ [
+ "7777.00",
+ "0.10000000"
+ ],
+ [
+ "7773.06",
+ "0.00101028"
+ ],
+ [
+ "7773.00",
+ "0.02200000"
+ ],
+ [
+ "7772.71",
+ "12.55000000"
+ ],
+ [
+ "7771.00",
+ "0.10000000"
+ ],
+ [
+ "7770.00",
+ "0.20000000"
+ ],
+ [
+ "7768.00",
+ "0.05000000"
+ ],
+ [
+ "7767.00",
+ "0.02000000"
+ ],
+ [
+ "7765.00",
+ "0.10000000"
+ ],
+ [
+ "7761.00",
+ "2.00000000"
+ ],
+ [
+ "7760.00",
+ "0.02000000"
+ ],
+ [
+ "7759.25",
+ "0.00101027"
+ ],
+ [
+ "7758.72",
+ "0.01527572"
+ ],
+ [
+ "7758.64",
+ "0.40000000"
+ ],
+ [
+ "7757.73",
+ "0.06284014"
+ ],
+ [
+ "7755.00",
+ "0.11000000"
+ ],
+ [
+ "7753.32",
+ "12.55000000"
+ ],
+ [
+ "7751.01",
+ "0.43632249"
+ ],
+ [
+ "7751.00",
+ "0.02699522"
+ ],
+ [
+ "7750.01",
+ "0.50000000"
+ ],
+ [
+ "7750.00",
+ "11.42995872"
+ ],
+ [
+ "7749.00",
+ "0.00350000"
+ ],
+ [
+ "7748.34",
+ "0.50000000"
+ ],
+ [
+ "7748.00",
+ "0.05000000"
+ ],
+ [
+ "7747.00",
+ "0.02000000"
+ ],
+ [
+ "7741.00",
+ "0.03500000"
+ ],
+ [
+ "7737.00",
+ "1.01000000"
+ ],
+ [
+ "7733.99",
+ "12.55000000"
+ ],
+ [
+ "7733.00",
+ "0.13505535"
+ ],
+ [
+ "7731.00",
+ "0.05000000"
+ ],
+ [
+ "7730.00",
+ "0.00100000"
+ ],
+ [
+ "7729.87",
+ "0.00191000"
+ ],
+ [
+ "7729.76",
+ "0.05274738"
+ ],
+ [
+ "7727.00",
+ "0.02000000"
+ ],
+ [
+ "7726.17",
+ "0.08443693"
+ ],
+ [
+ "7723.00",
+ "0.03000000"
+ ],
+ [
+ "7722.28",
+ "0.00245005"
+ ],
+ [
+ "7719.00",
+ "0.00350000"
+ ],
+ [
+ "7714.70",
+ "12.55000000"
+ ],
+ [
+ "7712.90",
+ "2.00000000"
+ ],
+ [
+ "7711.25",
+ "0.50000000"
+ ],
+ [
+ "7710.00",
+ "0.04628867"
+ ],
+ [
+ "7708.00",
+ "0.39135398"
+ ],
+ [
+ "7707.49",
+ "0.10000000"
+ ],
+ [
+ "7707.00",
+ "0.02000000"
+ ],
+ [
+ "7706.00",
+ "0.05000000"
+ ],
+ [
+ "7705.22",
+ "0.03300000"
+ ],
+ [
+ "7702.94",
+ "0.04909336"
+ ],
+ [
+ "7701.97",
+ "0.00336147"
+ ],
+ [
+ "7700.00",
+ "15.04826209"
+ ],
+ [
+ "7697.72",
+ "0.50000000"
+ ],
+ [
+ "7695.46",
+ "12.55000000"
+ ],
+ [
+ "7690.00",
+ "0.33300429"
+ ],
+ [
+ "7689.00",
+ "0.00304461"
+ ],
+ [
+ "7687.00",
+ "0.02000000"
+ ],
+ [
+ "7680.28",
+ "0.02516575"
+ ],
+ [
+ "7680.00",
+ "0.67502308"
+ ],
+ [
+ "7676.27",
+ "12.55000000"
+ ],
+ [
+ "7673.68",
+ "0.00514405"
+ ],
+ [
+ "7672.69",
+ "0.50000000"
+ ],
+ [
+ "7672.00",
+ "0.01500000"
+ ],
+ [
+ "7670.68",
+ "0.00130000"
+ ],
+ [
+ "7670.00",
+ "0.00200000"
+ ],
+ [
+ "7667.00",
+ "0.02000000"
+ ],
+ [
+ "7665.38",
+ "0.04000000"
+ ],
+ [
+ "7661.78",
+ "2.00000000"
+ ],
+ [
+ "7661.40",
+ "0.10800000"
+ ],
+ [
+ "7659.58",
+ "0.00977208"
+ ],
+ [
+ "7659.00",
+ "0.00430000"
+ ],
+ [
+ "7657.13",
+ "12.55000000"
+ ],
+ [
+ "7653.33",
+ "0.00362951"
+ ],
+ [
+ "7651.00",
+ "0.32085266"
+ ],
+ [
+ "7650.00",
+ "1.37004104"
+ ],
+ [
+ "7649.00",
+ "0.00350000"
+ ],
+ [
+ "7647.00",
+ "0.02000000"
+ ],
+ [
+ "7645.00",
+ "0.03888300"
+ ],
+ [
+ "7644.00",
+ "0.00287132"
+ ],
+ [
+ "7642.83",
+ "0.02000000"
+ ],
+ [
+ "7641.00",
+ "1.34185000"
+ ],
+ [
+ "7640.00",
+ "0.14044436"
+ ],
+ [
+ "7638.03",
+ "12.55000000"
+ ],
+ [
+ "7637.00",
+ "1.00043996"
+ ],
+ [
+ "7633.00",
+ "2.76762531"
+ ],
+ [
+ "7632.00",
+ "0.28000000"
+ ],
+ [
+ "7631.37",
+ "0.33166129"
+ ],
+ [
+ "7631.21",
+ "0.00352499"
+ ],
+ [
+ "7630.00",
+ "0.14094937"
+ ],
+ [
+ "7629.00",
+ "0.08143924"
+ ],
+ [
+ "7627.00",
+ "0.09000000"
+ ],
+ [
+ "7624.00",
+ "0.01500000"
+ ],
+ [
+ "7622.00",
+ "0.14000000"
+ ],
+ [
+ "7621.00",
+ "0.07000000"
+ ],
+ [
+ "7620.00",
+ "0.97800000"
+ ],
+ [
+ "7619.99",
+ "0.01453900"
+ ],
+ [
+ "7619.00",
+ "0.00350000"
+ ],
+ [
+ "7618.99",
+ "12.55000000"
+ ],
+ [
+ "7613.86",
+ "0.32754900"
+ ],
+ [
+ "7611.99",
+ "0.00500000"
+ ],
+ [
+ "7610.00",
+ "2.00000000"
+ ],
+ [
+ "7607.00",
+ "0.02000000"
+ ],
+ [
+ "7606.40",
+ "1.73618268"
+ ],
+ [
+ "7602.18",
+ "0.70958593"
+ ],
+ [
+ "7602.00",
+ "0.13578926"
+ ],
+ [
+ "7601.16",
+ "0.50000000"
+ ],
+ [
+ "7600.91",
+ "1.03359466"
+ ],
+ [
+ "7600.00",
+ "6.07444813"
+ ],
+ [
+ "7599.99",
+ "12.55000000"
+ ],
+ [
+ "7595.00",
+ "0.00094504"
+ ],
+ [
+ "7590.00",
+ "0.00650000"
+ ],
+ [
+ "7589.00",
+ "0.00340000"
+ ],
+ [
+ "7588.66",
+ "0.60000000"
+ ],
+ [
+ "7587.00",
+ "0.02000000"
+ ],
+ [
+ "7581.03",
+ "12.55000000"
+ ],
+ [
+ "7580.00",
+ "0.30365171"
+ ],
+ [
+ "7577.00",
+ "0.04200000"
+ ],
+ [
+ "7571.00",
+ "0.10000000"
+ ],
+ [
+ "7569.43",
+ "0.10000000"
+ ],
+ [
+ "7567.00",
+ "0.02000000"
+ ],
+ [
+ "7562.13",
+ "12.55000000"
+ ],
+ [
+ "7560.25",
+ "0.08000000"
+ ],
+ [
+ "7560.00",
+ "0.20170639"
+ ],
+ [
+ "7558.63",
+ "0.02000000"
+ ],
+ [
+ "7557.00",
+ "1.54634511"
+ ],
+ [
+ "7554.00",
+ "1.00000000"
+ ],
+ [
+ "7552.00",
+ "0.95105135"
+ ],
+ [
+ "7551.55",
+ "5.00000000"
+ ],
+ [
+ "7551.00",
+ "5.39823788"
+ ],
+ [
+ "7550.00",
+ "1.40561084"
+ ],
+ [
+ "7549.00",
+ "0.00237162"
+ ],
+ [
+ "7547.00",
+ "0.03000000"
+ ],
+ [
+ "7545.85",
+ "0.08531875"
+ ],
+ [
+ "7543.27",
+ "12.55000000"
+ ],
+ [
+ "7541.19",
+ "0.05406635"
+ ],
+ [
+ "7541.15",
+ "1.50950000"
+ ],
+ [
+ "7541.00",
+ "0.02000000"
+ ],
+ [
+ "7540.00",
+ "0.09010875"
+ ],
+ [
+ "7535.57",
+ "0.00200000"
+ ],
+ [
+ "7535.14",
+ "0.50000000"
+ ],
+ [
+ "7535.00",
+ "0.05000000"
+ ],
+ [
+ "7533.00",
+ "0.10000000"
+ ],
+ [
+ "7530.00",
+ "0.16729748"
+ ],
+ [
+ "7528.00",
+ "0.11408670"
+ ],
+ [
+ "7527.00",
+ "0.02000000"
+ ],
+ [
+ "7524.46",
+ "12.55000000"
+ ],
+ [
+ "7521.19",
+ "0.02762861"
+ ],
+ [
+ "7520.00",
+ "0.20015427"
+ ],
+ [
+ "7515.00",
+ "1.00000000"
+ ],
+ [
+ "7512.00",
+ "1.00000000"
+ ],
+ [
+ "7511.06",
+ "0.09120283"
+ ],
+ [
+ "7511.00",
+ "0.40000000"
+ ],
+ [
+ "7508.90",
+ "2.79444792"
+ ],
+ [
+ "7507.23",
+ "0.79617959"
+ ],
+ [
+ "7507.00",
+ "0.02000000"
+ ],
+ [
+ "7505.69",
+ "12.55000000"
+ ],
+ [
+ "7505.00",
+ "0.20000000"
+ ],
+ [
+ "7504.00",
+ "1.32025852"
+ ],
+ [
+ "7503.51",
+ "0.00106350"
+ ],
+ [
+ "7502.83",
+ "1.16399031"
+ ],
+ [
+ "7502.02",
+ "0.01671950"
+ ],
+ [
+ "7502.00",
+ "1.00000000"
+ ],
+ [
+ "7501.01",
+ "0.90173057"
+ ],
+ [
+ "7501.00",
+ "0.50000000"
+ ],
+ [
+ "7500.88",
+ "3.99237721"
+ ],
+ [
+ "7500.59",
+ "0.02902305"
+ ],
+ [
+ "7500.02",
+ "0.08637377"
+ ],
+ [
+ "7500.00",
+ "57.22523149"
+ ],
+ [
+ "7498.00",
+ "0.14000000"
+ ],
+ [
+ "7497.46",
+ "0.29772761"
+ ],
+ [
+ "7496.86",
+ "0.04793373"
+ ],
+ [
+ "7496.60",
+ "0.03500000"
+ ],
+ [
+ "7494.00",
+ "0.04200000"
+ ],
+ [
+ "7493.00",
+ "1.00883536"
+ ],
+ [
+ "7492.00",
+ "0.14000000"
+ ],
+ [
+ "7490.00",
+ "1.10000000"
+ ],
+ [
+ "7488.00",
+ "8.32223558"
+ ],
+ [
+ "7487.00",
+ "0.02000000"
+ ],
+ [
+ "7486.98",
+ "12.55000000"
+ ],
+ [
+ "7486.13",
+ "0.33778400"
+ ],
+ [
+ "7486.00",
+ "1.00000000"
+ ],
+ [
+ "7484.21",
+ "0.00583685"
+ ],
+ [
+ "7482.00",
+ "0.22400000"
+ ],
+ [
+ "7480.00",
+ "0.10000000"
+ ],
+ [
+ "7479.18",
+ "0.18489534"
+ ],
+ [
+ "7475.00",
+ "0.07000000"
+ ],
+ [
+ "7474.74",
+ "2.88586894"
+ ],
+ [
+ "7471.58",
+ "0.00537123"
+ ],
+ [
+ "7469.11",
+ "0.50000000"
+ ],
+ [
+ "7468.31",
+ "12.55000000"
+ ],
+ [
+ "7467.00",
+ "0.02000000"
+ ],
+ [
+ "7466.67",
+ "0.00210000"
+ ],
+ [
+ "7464.00",
+ "0.04500000"
+ ],
+ [
+ "7460.00",
+ "1.00000000"
+ ],
+ [
+ "7459.97",
+ "0.50000000"
+ ],
+ [
+ "7458.00",
+ "0.07000000"
+ ],
+ [
+ "7456.00",
+ "0.11359798"
+ ],
+ [
+ "7455.00",
+ "1.00000000"
+ ],
+ [
+ "7452.64",
+ "0.08567800"
+ ],
+ [
+ "7451.00",
+ "0.25977814"
+ ],
+ [
+ "7450.00",
+ "2.49153177"
+ ],
+ [
+ "7449.68",
+ "5.34832583"
+ ],
+ [
+ "7448.00",
+ "5.00000000"
+ ],
+ [
+ "7447.00",
+ "0.62003088"
+ ],
+ [
+ "7446.00",
+ "0.02686366"
+ ],
+ [
+ "7444.29",
+ "0.08760000"
+ ],
+ [
+ "7444.00",
+ "1.00000000"
+ ],
+ [
+ "7443.00",
+ "0.16000000"
+ ],
+ [
+ "7440.00",
+ "0.11950672"
+ ],
+ [
+ "7439.58",
+ "0.02000000"
+ ],
+ [
+ "7436.00",
+ "0.00430000"
+ ],
+ [
+ "7433.00",
+ "0.27000000"
+ ],
+ [
+ "7431.10",
+ "12.55000000"
+ ],
+ [
+ "7430.00",
+ "0.00100000"
+ ],
+ [
+ "7428.44",
+ "0.02692355"
+ ],
+ [
+ "7427.00",
+ "0.57000000"
+ ],
+ [
+ "7426.66",
+ "0.37200000"
+ ],
+ [
+ "7425.00",
+ "0.10000000"
+ ],
+ [
+ "7424.46",
+ "0.13350735"
+ ],
+ [
+ "7424.00",
+ "0.03800000"
+ ],
+ [
+ "7423.14",
+ "0.07000000"
+ ],
+ [
+ "7423.00",
+ "0.01000000"
+ ],
+ [
+ "7422.67",
+ "0.50000000"
+ ],
+ [
+ "7422.45",
+ "0.00070000"
+ ],
+ [
+ "7422.05",
+ "0.00900000"
+ ],
+ [
+ "7421.00",
+ "1.13295990"
+ ],
+ [
+ "7420.17",
+ "0.00310059"
+ ],
+ [
+ "7420.00",
+ "0.50000000"
+ ],
+ [
+ "7419.99",
+ "2.05618762"
+ ],
+ [
+ "7419.97",
+ "0.00500000"
+ ],
+ [
+ "7419.00",
+ "0.00500000"
+ ],
+ [
+ "7418.38",
+ "0.00093551"
+ ],
+ [
+ "7418.00",
+ "0.10000000"
+ ],
+ [
+ "7415.00",
+ "2.03985442"
+ ],
+ [
+ "7414.05",
+ "0.02000000"
+ ],
+ [
+ "7414.00",
+ "0.03900000"
+ ],
+ [
+ "7413.00",
+ "0.81474617"
+ ],
+ [
+ "7412.57",
+ "12.55000000"
+ ],
+ [
+ "7412.18",
+ "0.04000000"
+ ],
+ [
+ "7411.89",
+ "0.03301807"
+ ],
+ [
+ "7411.00",
+ "0.02000000"
+ ],
+ [
+ "7410.00",
+ "0.00088000"
+ ],
+ [
+ "7408.40",
+ "0.10000000"
+ ],
+ [
+ "7408.00",
+ "13.32348271"
+ ],
+ [
+ "7407.00",
+ "0.02000000"
+ ],
+ [
+ "7406.00",
+ "0.30000000"
+ ],
+ [
+ "7405.00",
+ "0.10000000"
+ ],
+ [
+ "7404.70",
+ "0.01367915"
+ ],
+ [
+ "7404.65",
+ "0.11774567"
+ ],
+ [
+ "7401.00",
+ "0.15000000"
+ ],
+ [
+ "7400.39",
+ "0.30662033"
+ ],
+ [
+ "7400.38",
+ "0.00500000"
+ ],
+ [
+ "7400.00",
+ "19.32149034"
+ ],
+ [
+ "7399.00",
+ "0.26000000"
+ ],
+ [
+ "7397.00",
+ "0.02500000"
+ ],
+ [
+ "7396.44",
+ "0.11100000"
+ ],
+ [
+ "7395.00",
+ "0.09000000"
+ ],
+ [
+ "7394.09",
+ "12.55000000"
+ ],
+ [
+ "7393.63",
+ "0.00107931"
+ ],
+ [
+ "7393.60",
+ "0.04000000"
+ ],
+ [
+ "7393.00",
+ "0.05000000"
+ ],
+ [
+ "7392.00",
+ "0.10800000"
+ ],
+ [
+ "7391.30",
+ "0.02024339"
+ ],
+ [
+ "7388.89",
+ "0.00319298"
+ ],
+ [
+ "7388.88",
+ "0.03273705"
+ ],
+ [
+ "7388.86",
+ "0.10000000"
+ ],
+ [
+ "7388.44",
+ "0.00643234"
+ ],
+ [
+ "7388.00",
+ "1.25500000"
+ ],
+ [
+ "7387.00",
+ "0.02000000"
+ ],
+ [
+ "7386.86",
+ "0.08444300"
+ ],
+ [
+ "7385.55",
+ "0.50000000"
+ ],
+ [
+ "7385.00",
+ "0.07000000"
+ ],
+ [
+ "7380.00",
+ "0.02800000"
+ ],
+ [
+ "7379.97",
+ "0.00500000"
+ ],
+ [
+ "7378.02",
+ "0.15000000"
+ ],
+ [
+ "7377.00",
+ "0.07500000"
+ ],
+ [
+ "7375.65",
+ "12.55000000"
+ ],
+ [
+ "7370.00",
+ "0.20000000"
+ ],
+ [
+ "7369.00",
+ "0.00500000"
+ ],
+ [
+ "7367.00",
+ "0.02000000"
+ ],
+ [
+ "7366.67",
+ "0.00746604"
+ ],
+ [
+ "7365.00",
+ "0.14000000"
+ ],
+ [
+ "7364.00",
+ "0.06500000"
+ ],
+ [
+ "7362.00",
+ "1.55897854"
+ ],
+ [
+ "7360.00",
+ "0.06000000"
+ ],
+ [
+ "7359.05",
+ "0.02408055"
+ ],
+ [
+ "7357.26",
+ "12.55000000"
+ ],
+ [
+ "7357.00",
+ "1.47305367"
+ ],
+ [
+ "7356.00",
+ "0.19000000"
+ ],
+ [
+ "7355.43",
+ "0.03000000"
+ ],
+ [
+ "7355.00",
+ "0.49909451"
+ ],
+ [
+ "7354.00",
+ "0.02000000"
+ ],
+ [
+ "7353.00",
+ "0.18000000"
+ ],
+ [
+ "7352.49",
+ "0.00068100"
+ ],
+ [
+ "7351.51",
+ "5.44932130"
+ ],
+ [
+ "7351.06",
+ "0.12020000"
+ ],
+ [
+ "7350.99",
+ "0.02000000"
+ ],
+ [
+ "7350.69",
+ "0.04176002"
+ ],
+ [
+ "7350.00",
+ "2.46391559"
+ ],
+ [
+ "7347.00",
+ "0.02000000"
+ ],
+ [
+ "7345.00",
+ "0.28000000"
+ ],
+ [
+ "7340.00",
+ "20.10000000"
+ ],
+ [
+ "7339.00",
+ "0.01000000"
+ ],
+ [
+ "7338.95",
+ "0.00600615"
+ ],
+ [
+ "7338.91",
+ "12.55000000"
+ ],
+ [
+ "7334.00",
+ "0.20564313"
+ ],
+ [
+ "7333.66",
+ "0.13592654"
+ ],
+ [
+ "7333.14",
+ "0.02040394"
+ ],
+ [
+ "7333.00",
+ "0.02250000"
+ ],
+ [
+ "7327.00",
+ "0.02000000"
+ ],
+ [
+ "7325.00",
+ "10.00000000"
+ ],
+ [
+ "7324.00",
+ "0.05000000"
+ ],
+ [
+ "7323.23",
+ "0.02731035"
+ ],
+ [
+ "7321.00",
+ "1.38804160"
+ ],
+ [
+ "7320.61",
+ "12.55000000"
+ ],
+ [
+ "7319.00",
+ "1.00500000"
+ ],
+ [
+ "7318.73",
+ "0.50000000"
+ ],
+ [
+ "7317.37",
+ "0.04259727"
+ ],
+ [
+ "7315.85",
+ "0.02000000"
+ ],
+ [
+ "7315.00",
+ "0.16118183"
+ ],
+ [
+ "7314.85",
+ "0.00243963"
+ ],
+ [
+ "7313.14",
+ "0.01500000"
+ ],
+ [
+ "7312.00",
+ "1.00000000"
+ ],
+ [
+ "7311.00",
+ "1.40000000"
+ ],
+ [
+ "7310.00",
+ "1.12589000"
+ ],
+ [
+ "7309.00",
+ "0.27000000"
+ ],
+ [
+ "7308.86",
+ "0.01051892"
+ ],
+ [
+ "7308.00",
+ "0.02000000"
+ ],
+ [
+ "7307.00",
+ "0.02000000"
+ ],
+ [
+ "7306.07",
+ "0.01000000"
+ ],
+ [
+ "7306.00",
+ "0.00100000"
+ ],
+ [
+ "7305.00",
+ "0.10000000"
+ ],
+ [
+ "7303.23",
+ "0.10000000"
+ ],
+ [
+ "7302.35",
+ "12.55000000"
+ ],
+ [
+ "7301.00",
+ "3.00472456"
+ ],
+ [
+ "7300.00",
+ "13.85415009"
+ ],
+ [
+ "7298.63",
+ "0.11562580"
+ ],
+ [
+ "7297.85",
+ "0.22340000"
+ ],
+ [
+ "7294.74",
+ "0.00656564"
+ ],
+ [
+ "7292.00",
+ "0.01500000"
+ ],
+ [
+ "7289.97",
+ "0.00500000"
+ ],
+ [
+ "7289.00",
+ "0.05000000"
+ ],
+ [
+ "7288.00",
+ "0.09069841"
+ ],
+ [
+ "7287.00",
+ "0.22000000"
+ ],
+ [
+ "7284.14",
+ "12.55000000"
+ ],
+ [
+ "7280.63",
+ "0.02055110"
+ ],
+ [
+ "7280.00",
+ "0.80503663"
+ ],
+ [
+ "7279.00",
+ "0.00500000"
+ ],
+ [
+ "7278.00",
+ "0.04000000"
+ ],
+ [
+ "7277.00",
+ "0.20000000"
+ ],
+ [
+ "7276.54",
+ "0.22035472"
+ ],
+ [
+ "7275.06",
+ "0.02000000"
+ ],
+ [
+ "7272.00",
+ "0.05000000"
+ ],
+ [
+ "7270.00",
+ "0.15502063"
+ ],
+ [
+ "7268.56",
+ "0.15000000"
+ ],
+ [
+ "7267.00",
+ "0.03000000"
+ ],
+ [
+ "7266.98",
+ "0.00365901"
+ ],
+ [
+ "7266.88",
+ "1.66000000"
+ ],
+ [
+ "7266.66",
+ "0.01000000"
+ ],
+ [
+ "7265.98",
+ "12.55000000"
+ ],
+ [
+ "7265.00",
+ "0.05000000"
+ ],
+ [
+ "7263.00",
+ "0.17876634"
+ ],
+ [
+ "7260.00",
+ "2.27534430"
+ ],
+ [
+ "7259.58",
+ "0.00381702"
+ ],
+ [
+ "7259.00",
+ "1.00000000"
+ ],
+ [
+ "7258.19",
+ "1.00000000"
+ ],
+ [
+ "7258.00",
+ "0.00723201"
+ ],
+ [
+ "7256.69",
+ "0.00637756"
+ ],
+ [
+ "7255.00",
+ "0.44100000"
+ ],
+ [
+ "7253.81",
+ "0.02000000"
+ ],
+ [
+ "7253.65",
+ "0.50000000"
+ ],
+ [
+ "7253.00",
+ "0.05000000"
+ ],
+ [
+ "7252.49",
+ "0.00069100"
+ ],
+ [
+ "7252.00",
+ "0.50000000"
+ ],
+ [
+ "7251.50",
+ "0.00882510"
+ ],
+ [
+ "7251.00",
+ "0.53885053"
+ ],
+ [
+ "7250.62",
+ "0.06164317"
+ ],
+ [
+ "7250.00",
+ "4.58603346"
+ ],
+ [
+ "7249.00",
+ "0.20000000"
+ ],
+ [
+ "7248.68",
+ "0.50000000"
+ ],
+ [
+ "7248.17",
+ "0.01827391"
+ ],
+ [
+ "7248.00",
+ "0.09000000"
+ ],
+ [
+ "7247.86",
+ "10.08102638"
+ ],
+ [
+ "7247.00",
+ "0.02000000"
+ ],
+ [
+ "7246.12",
+ "0.00408770"
+ ],
+ [
+ "7245.02",
+ "0.06471255"
+ ],
+ [
+ "7242.11",
+ "0.00095688"
+ ],
+ [
+ "7242.00",
+ "0.96218724"
+ ],
+ [
+ "7241.85",
+ "0.00500000"
+ ],
+ [
+ "7241.00",
+ "0.00500000"
+ ],
+ [
+ "7240.64",
+ "0.07072615"
+ ],
+ [
+ "7240.00",
+ "0.00580095"
+ ],
+ [
+ "7239.97",
+ "0.00700000"
+ ],
+ [
+ "7239.66",
+ "0.50000000"
+ ],
+ [
+ "7239.00",
+ "0.11300000"
+ ],
+ [
+ "7237.11",
+ "0.50000000"
+ ],
+ [
+ "7236.21",
+ "0.02448934"
+ ],
+ [
+ "7236.00",
+ "0.20000000"
+ ],
+ [
+ "7235.00",
+ "0.01000000"
+ ],
+ [
+ "7234.45",
+ "0.10741245"
+ ],
+ [
+ "7233.69",
+ "0.02068446"
+ ],
+ [
+ "7233.00",
+ "0.17943454"
+ ],
+ [
+ "7232.70",
+ "0.10800000"
+ ],
+ [
+ "7230.00",
+ "0.01708941"
+ ],
+ [
+ "7229.78",
+ "12.55000000"
+ ],
+ [
+ "7228.00",
+ "1.03087990"
+ ],
+ [
+ "7227.71",
+ "0.25000000"
+ ],
+ [
+ "7227.00",
+ "0.05800000"
+ ],
+ [
+ "7225.71",
+ "0.08570281"
+ ],
+ [
+ "7225.00",
+ "0.21383875"
+ ],
+ [
+ "7224.55",
+ "0.00116683"
+ ],
+ [
+ "7224.00",
+ "1.38000000"
+ ],
+ [
+ "7222.00",
+ "0.16896289"
+ ],
+ [
+ "7221.00",
+ "1.02084475"
+ ],
+ [
+ "7220.41",
+ "0.03400000"
+ ],
+ [
+ "7220.00",
+ "0.73818975"
+ ],
+ [
+ "7219.00",
+ "0.18430000"
+ ],
+ [
+ "7217.88",
+ "0.02770896"
+ ],
+ [
+ "7217.00",
+ "0.30000000"
+ ],
+ [
+ "7215.00",
+ "17.48299791"
+ ],
+ [
+ "7213.00",
+ "0.01000000"
+ ],
+ [
+ "7212.00",
+ "0.31976211"
+ ],
+ [
+ "7211.75",
+ "8.95616202"
+ ],
+ [
+ "7211.08",
+ "1.44860270"
+ ],
+ [
+ "7211.00",
+ "0.30000000"
+ ],
+ [
+ "7210.00",
+ "0.24690000"
+ ],
+ [
+ "7209.00",
+ "0.33000000"
+ ],
+ [
+ "7208.00",
+ "1.22000000"
+ ],
+ [
+ "7207.00",
+ "0.02000000"
+ ],
+ [
+ "7206.60",
+ "1.00000000"
+ ],
+ [
+ "7206.32",
+ "0.00666445"
+ ],
+ [
+ "7205.00",
+ "2.35000000"
+ ],
+ [
+ "7204.48",
+ "0.10000000"
+ ],
+ [
+ "7204.23",
+ "6.60000000"
+ ],
+ [
+ "7204.00",
+ "0.40000000"
+ ],
+ [
+ "7203.64",
+ "0.00600000"
+ ],
+ [
+ "7203.46",
+ "0.50000000"
+ ],
+ [
+ "7202.00",
+ "0.09000000"
+ ],
+ [
+ "7201.16",
+ "0.15037716"
+ ],
+ [
+ "7201.00",
+ "0.98464834"
+ ],
+ [
+ "7200.50",
+ "0.10000000"
+ ],
+ [
+ "7200.00",
+ "20.63338323"
+ ],
+ [
+ "7196.64",
+ "0.06000000"
+ ],
+ [
+ "7194.00",
+ "0.05000000"
+ ],
+ [
+ "7193.77",
+ "12.55000000"
+ ],
+ [
+ "7191.00",
+ "0.03600000"
+ ],
+ [
+ "7189.97",
+ "0.02975957"
+ ],
+ [
+ "7189.00",
+ "0.01000000"
+ ],
+ [
+ "7188.32",
+ "0.76249182"
+ ],
+ [
+ "7188.00",
+ "2.00000000"
+ ],
+ [
+ "7187.00",
+ "0.07500000"
+ ],
+ [
+ "7185.64",
+ "0.00111813"
+ ],
+ [
+ "7185.00",
+ "0.22946555"
+ ],
+ [
+ "7184.99",
+ "0.20051947"
+ ],
+ [
+ "7183.35",
+ "0.00500000"
+ ],
+ [
+ "7183.30",
+ "0.18000000"
+ ],
+ [
+ "7181.22",
+ "0.05000000"
+ ],
+ [
+ "7180.00",
+ "1.34730000"
+ ],
+ [
+ "7177.77",
+ "0.05000000"
+ ],
+ [
+ "7177.00",
+ "0.51419525"
+ ],
+ [
+ "7175.83",
+ "12.55000000"
+ ],
+ [
+ "7175.55",
+ "0.50000000"
+ ],
+ [
+ "7175.00",
+ "6.00000000"
+ ],
+ [
+ "7171.82",
+ "0.10000000"
+ ],
+ [
+ "7171.80",
+ "0.01226960"
+ ],
+ [
+ "7171.77",
+ "0.08000000"
+ ],
+ [
+ "7171.57",
+ "0.15000000"
+ ],
+ [
+ "7170.00",
+ "0.04787656"
+ ],
+ [
+ "7168.23",
+ "0.01499999"
+ ],
+ [
+ "7167.44",
+ "0.50000000"
+ ],
+ [
+ "7167.00",
+ "0.04000000"
+ ],
+ [
+ "7166.04",
+ "0.12617234"
+ ],
+ [
+ "7166.00",
+ "0.30000000"
+ ],
+ [
+ "7165.00",
+ "0.10200000"
+ ],
+ [
+ "7164.00",
+ "0.02500000"
+ ],
+ [
+ "7160.00",
+ "0.20000000"
+ ],
+ [
+ "7159.00",
+ "0.11600000"
+ ],
+ [
+ "7158.00",
+ "0.11812517"
+ ],
+ [
+ "7157.93",
+ "12.55000000"
+ ],
+ [
+ "7156.00",
+ "0.10000000"
+ ],
+ [
+ "7152.97",
+ "0.00500000"
+ ],
+ [
+ "7152.49",
+ "0.00070000"
+ ],
+ [
+ "7151.06",
+ "0.12398022"
+ ],
+ [
+ "7150.25",
+ "0.00783120"
+ ],
+ [
+ "7150.00",
+ "3.14897868"
+ ],
+ [
+ "7149.00",
+ "5.02993566"
+ ],
+ [
+ "7148.52",
+ "0.50000000"
+ ],
+ [
+ "7147.83",
+ "0.10000000"
+ ],
+ [
+ "7147.00",
+ "0.02000000"
+ ],
+ [
+ "7140.08",
+ "12.55000000"
+ ],
+ [
+ "7139.97",
+ "0.01000000"
+ ],
+ [
+ "7138.98",
+ "0.00108769"
+ ],
+ [
+ "7137.60",
+ "0.02000000"
+ ],
+ [
+ "7136.84",
+ "0.00150000"
+ ],
+ [
+ "7132.50",
+ "0.56838275"
+ ],
+ [
+ "7132.00",
+ "0.18000000"
+ ],
+ [
+ "7131.60",
+ "0.50000000"
+ ],
+ [
+ "7131.00",
+ "0.01000000"
+ ],
+ [
+ "7130.83",
+ "0.15000000"
+ ],
+ [
+ "7130.50",
+ "0.02498352"
+ ],
+ [
+ "7130.47",
+ "0.05000000"
+ ],
+ [
+ "7130.00",
+ "0.14025245"
+ ],
+ [
+ "7129.00",
+ "0.10000000"
+ ],
+ [
+ "7128.20",
+ "1.51028029"
+ ],
+ [
+ "7128.00",
+ "0.02500000"
+ ],
+ [
+ "7127.05",
+ "0.00200000"
+ ],
+ [
+ "7127.00",
+ "0.02000000"
+ ],
+ [
+ "7126.00",
+ "0.00500000"
+ ],
+ [
+ "7125.00",
+ "8.31795930"
+ ],
+ [
+ "7124.59",
+ "0.00473992"
+ ],
+ [
+ "7124.58",
+ "0.02000000"
+ ],
+ [
+ "7123.00",
+ "0.02553418"
+ ],
+ [
+ "7122.28",
+ "12.55000000"
+ ],
+ [
+ "7121.00",
+ "0.22000000"
+ ],
+ [
+ "7120.00",
+ "0.66000000"
+ ],
+ [
+ "7119.00",
+ "0.00500000"
+ ],
+ [
+ "7118.00",
+ "0.60000000"
+ ],
+ [
+ "7117.98",
+ "0.03447396"
+ ],
+ [
+ "7112.54",
+ "0.02811934"
+ ],
+ [
+ "7112.00",
+ "0.57901434"
+ ],
+ [
+ "7111.00",
+ "0.70160034"
+ ],
+ [
+ "7110.00",
+ "0.00092000"
+ ],
+ [
+ "7109.97",
+ "0.00500000"
+ ],
+ [
+ "7109.00",
+ "0.15000000"
+ ],
+ [
+ "7108.00",
+ "0.02000000"
+ ],
+ [
+ "7107.00",
+ "0.02000000"
+ ],
+ [
+ "7105.26",
+ "0.00733335"
+ ],
+ [
+ "7105.00",
+ "0.19011963"
+ ],
+ [
+ "7104.52",
+ "12.55000000"
+ ],
+ [
+ "7104.00",
+ "0.30000000"
+ ],
+ [
+ "7103.00",
+ "0.61740884"
+ ],
+ [
+ "7102.75",
+ "0.00252133"
+ ],
+ [
+ "7101.00",
+ "1.03404027"
+ ],
+ [
+ "7100.28",
+ "2.63019346"
+ ],
+ [
+ "7100.21",
+ "0.60098645"
+ ],
+ [
+ "7100.00",
+ "7.97865743"
+ ],
+ [
+ "7095.94",
+ "0.50000000"
+ ],
+ [
+ "7090.00",
+ "0.17000000"
+ ],
+ [
+ "7089.97",
+ "0.00500000"
+ ],
+ [
+ "7088.68",
+ "0.50000000"
+ ],
+ [
+ "7088.38",
+ "0.69750351"
+ ],
+ [
+ "7088.00",
+ "0.09325762"
+ ],
+ [
+ "7087.00",
+ "0.02000000"
+ ],
+ [
+ "7086.80",
+ "12.55000000"
+ ],
+ [
+ "7086.10",
+ "10.00000000"
+ ],
+ [
+ "7086.00",
+ "1.00000000"
+ ],
+ [
+ "7083.33",
+ "0.00917649"
+ ],
+ [
+ "7083.00",
+ "0.11000000"
+ ],
+ [
+ "7082.26",
+ "6.38093066"
+ ],
+ [
+ "7080.00",
+ "3.70801906"
+ ],
+ [
+ "7078.00",
+ "0.44000000"
+ ],
+ [
+ "7076.00",
+ "0.22000000"
+ ],
+ [
+ "7075.25",
+ "0.05000000"
+ ],
+ [
+ "7074.30",
+ "0.04000000"
+ ],
+ [
+ "7074.00",
+ "0.10000000"
+ ],
+ [
+ "7073.68",
+ "0.00734749"
+ ],
+ [
+ "7073.06",
+ "0.06327813"
+ ],
+ [
+ "7070.00",
+ "0.35703359"
+ ],
+ [
+ "7069.69",
+ "0.54218643"
+ ],
+ [
+ "7069.13",
+ "12.55000000"
+ ],
+ [
+ "7068.00",
+ "0.50600000"
+ ],
+ [
+ "7067.00",
+ "0.02000000"
+ ],
+ [
+ "7066.21",
+ "0.10000000"
+ ],
+ [
+ "7066.00",
+ "5.00000000"
+ ],
+ [
+ "7064.87",
+ "0.06952994"
+ ],
+ [
+ "7062.70",
+ "0.01406454"
+ ],
+ [
+ "7061.70",
+ "0.01500000"
+ ],
+ [
+ "7060.60",
+ "2.00000000"
+ ],
+ [
+ "7060.46",
+ "0.50000000"
+ ],
+ [
+ "7060.00",
+ "0.52715721"
+ ],
+ [
+ "7059.88",
+ "0.00084279"
+ ],
+ [
+ "7058.35",
+ "0.07993301"
+ ],
+ [
+ "7055.00",
+ "5.01533998"
+ ],
+ [
+ "7052.84",
+ "0.12771735"
+ ],
+ [
+ "7052.49",
+ "0.00070970"
+ ],
+ [
+ "7051.50",
+ "12.55000000"
+ ],
+ [
+ "7051.00",
+ "0.50000000"
+ ],
+ [
+ "7050.57",
+ "0.52595180"
+ ],
+ [
+ "7050.00",
+ "20.38036170"
+ ],
+ [
+ "7047.00",
+ "0.02000000"
+ ],
+ [
+ "7046.52",
+ "0.48484358"
+ ],
+ [
+ "7046.01",
+ "3.11453263"
+ ],
+ [
+ "7045.00",
+ "7.30093115"
+ ],
+ [
+ "7040.38",
+ "0.12936937"
+ ],
+ [
+ "7040.00",
+ "20.27458948"
+ ],
+ [
+ "7038.00",
+ "0.01000000"
+ ],
+ [
+ "7035.65",
+ "0.00960928"
+ ],
+ [
+ "7035.00",
+ "0.02562189"
+ ],
+ [
+ "7034.98",
+ "0.02236200"
+ ],
+ [
+ "7034.28",
+ "0.30000000"
+ ],
+ [
+ "7033.91",
+ "12.55000000"
+ ],
+ [
+ "7033.53",
+ "0.44240516"
+ ],
+ [
+ "7032.24",
+ "0.30000000"
+ ],
+ [
+ "7030.00",
+ "0.01070554"
+ ],
+ [
+ "7027.13",
+ "0.01700000"
+ ],
+ [
+ "7027.00",
+ "0.05000000"
+ ],
+ [
+ "7026.10",
+ "0.00155000"
+ ],
+ [
+ "7025.25",
+ "0.00910930"
+ ],
+ [
+ "7025.00",
+ "0.03000000"
+ ],
+ [
+ "7024.41",
+ "0.07732464"
+ ],
+ [
+ "7024.00",
+ "0.54790899"
+ ],
+ [
+ "7023.89",
+ "0.10000000"
+ ],
+ [
+ "7023.00",
+ "0.06600000"
+ ],
+ [
+ "7022.00",
+ "0.50000000"
+ ],
+ [
+ "7021.00",
+ "0.04300000"
+ ],
+ [
+ "7020.62",
+ "0.02848751"
+ ],
+ [
+ "7020.00",
+ "0.40000000"
+ ],
+ [
+ "7019.00",
+ "0.00500000"
+ ],
+ [
+ "7016.37",
+ "12.55000000"
+ ],
+ [
+ "7015.79",
+ "0.00111278"
+ ],
+ [
+ "7015.73",
+ "0.02954968"
+ ],
+ [
+ "7014.86",
+ "0.01500000"
+ ],
+ [
+ "7014.22",
+ "0.50000000"
+ ],
+ [
+ "7013.19",
+ "0.00300000"
+ ],
+ [
+ "7013.00",
+ "0.00800000"
+ ],
+ [
+ "7012.00",
+ "0.10000000"
+ ],
+ [
+ "7011.51",
+ "1.00000000"
+ ],
+ [
+ "7011.22",
+ "0.25000000"
+ ],
+ [
+ "7011.06",
+ "0.11950000"
+ ],
+ [
+ "7011.00",
+ "0.62690458"
+ ],
+ [
+ "7010.00",
+ "0.27491098"
+ ],
+ [
+ "7009.00",
+ "0.05430000"
+ ],
+ [
+ "7008.82",
+ "0.02000000"
+ ],
+ [
+ "7008.00",
+ "0.06600000"
+ ],
+ [
+ "7007.00",
+ "7.02000000"
+ ],
+ [
+ "7006.00",
+ "0.30000000"
+ ],
+ [
+ "7005.28",
+ "0.13877960"
+ ],
+ [
+ "7005.18",
+ "0.07300000"
+ ],
+ [
+ "7005.00",
+ "4.14020413"
+ ],
+ [
+ "7004.00",
+ "0.10000000"
+ ],
+ [
+ "7003.90",
+ "1.30000000"
+ ],
+ [
+ "7002.00",
+ "2.21352350"
+ ],
+ [
+ "7001.00",
+ "6.75183973"
+ ],
+ [
+ "7000.97",
+ "0.40000000"
+ ],
+ [
+ "7000.68",
+ "0.22886583"
+ ],
+ [
+ "7000.14",
+ "0.00670000"
+ ],
+ [
+ "7000.00",
+ "40.97819268"
+ ],
+ [
+ "6999.00",
+ "0.26123300"
+ ],
+ [
+ "6998.87",
+ "12.55000000"
+ ],
+ [
+ "6998.00",
+ "0.50000000"
+ ],
+ [
+ "6996.00",
+ "0.13200000"
+ ],
+ [
+ "6994.01",
+ "0.01000000"
+ ],
+ [
+ "6987.00",
+ "0.06500000"
+ ],
+ [
+ "6986.00",
+ "1.00000000"
+ ],
+ [
+ "6982.56",
+ "1.00000000"
+ ],
+ [
+ "6981.42",
+ "12.55000000"
+ ],
+ [
+ "6980.00",
+ "0.16624212"
+ ],
+ [
+ "6979.14",
+ "0.50000000"
+ ],
+ [
+ "6979.00",
+ "0.00500000"
+ ],
+ [
+ "6977.00",
+ "0.29400000"
+ ],
+ [
+ "6976.00",
+ "0.03517775"
+ ],
+ [
+ "6975.09",
+ "0.14389348"
+ ],
+ [
+ "6973.97",
+ "0.00500000"
+ ],
+ [
+ "6971.00",
+ "1.00000000"
+ ],
+ [
+ "6968.88",
+ "0.50000000"
+ ],
+ [
+ "6967.00",
+ "0.03000000"
+ ],
+ [
+ "6966.00",
+ "0.33300000"
+ ],
+ [
+ "6964.01",
+ "12.06279382"
+ ],
+ [
+ "6960.00",
+ "2.01000000"
+ ],
+ [
+ "6959.60",
+ "0.17522457"
+ ],
+ [
+ "6959.44",
+ "0.01499999"
+ ],
+ [
+ "6959.00",
+ "0.10000000"
+ ],
+ [
+ "6958.00",
+ "0.04400000"
+ ],
+ [
+ "6955.00",
+ "25.02863968"
+ ],
+ [
+ "6954.00",
+ "0.04600000"
+ ],
+ [
+ "6953.00",
+ "0.35000000"
+ ],
+ [
+ "6952.49",
+ "0.00072000"
+ ],
+ [
+ "6952.00",
+ "0.00800000"
+ ],
+ [
+ "6951.00",
+ "0.04000000"
+ ],
+ [
+ "6950.00",
+ "4.00992724"
+ ],
+ [
+ "6949.28",
+ "0.02000000"
+ ],
+ [
+ "6947.00",
+ "0.02000000"
+ ],
+ [
+ "6946.64",
+ "50.20000000"
+ ],
+ [
+ "6944.09",
+ "0.25000000"
+ ],
+ [
+ "6943.00",
+ "0.02500000"
+ ],
+ [
+ "6941.05",
+ "0.00805658"
+ ],
+ [
+ "6940.00",
+ "0.00500000"
+ ],
+ [
+ "6939.14",
+ "0.02000000"
+ ],
+ [
+ "6936.42",
+ "0.05738360"
+ ],
+ [
+ "6936.00",
+ "1.38491061"
+ ],
+ [
+ "6935.11",
+ "0.05000000"
+ ],
+ [
+ "6935.00",
+ "0.23560201"
+ ],
+ [
+ "6933.23",
+ "0.09406438"
+ ],
+ [
+ "6933.00",
+ "0.34000000"
+ ],
+ [
+ "6932.00",
+ "0.50000000"
+ ],
+ [
+ "6931.02",
+ "0.50000000"
+ ],
+ [
+ "6930.00",
+ "10.03508225"
+ ],
+ [
+ "6929.32",
+ "12.55000000"
+ ],
+ [
+ "6929.00",
+ "0.11500000"
+ ],
+ [
+ "6927.00",
+ "0.03000000"
+ ],
+ [
+ "6926.00",
+ "0.12400000"
+ ],
+ [
+ "6925.00",
+ "0.03124331"
+ ],
+ [
+ "6924.38",
+ "0.33087495"
+ ],
+ [
+ "6923.00",
+ "1.02000000"
+ ],
+ [
+ "6920.00",
+ "0.50000000"
+ ],
+ [
+ "6919.00",
+ "0.04400000"
+ ],
+ [
+ "6917.00",
+ "0.11127643"
+ ],
+ [
+ "6915.79",
+ "0.00814307"
+ ],
+ [
+ "6915.00",
+ "0.52640219"
+ ],
+ [
+ "6912.04",
+ "12.55000000"
+ ],
+ [
+ "6912.00",
+ "0.11000000"
+ ],
+ [
+ "6911.00",
+ "3.16719534"
+ ],
+ [
+ "6910.00",
+ "0.39837000"
+ ],
+ [
+ "6909.00",
+ "0.15000000"
+ ],
+ [
+ "6908.00",
+ "0.03271424"
+ ],
+ [
+ "6907.00",
+ "0.02000000"
+ ],
+ [
+ "6906.67",
+ "0.00659587"
+ ],
+ [
+ "6905.00",
+ "3.00039537"
+ ],
+ [
+ "6904.67",
+ "0.14465137"
+ ],
+ [
+ "6904.20",
+ "0.11385389"
+ ],
+ [
+ "6903.00",
+ "1.00000000"
+ ],
+ [
+ "6902.57",
+ "0.00112566"
+ ],
+ [
+ "6901.00",
+ "0.05800000"
+ ],
+ [
+ "6900.00",
+ "12.58427965"
+ ],
+ [
+ "6899.00",
+ "0.50000000"
+ ],
+ [
+ "6898.00",
+ "0.05000000"
+ ],
+ [
+ "6896.36",
+ "0.50000000"
+ ],
+ [
+ "6896.00",
+ "0.14000000"
+ ],
+ [
+ "6894.80",
+ "2.50207259"
+ ],
+ [
+ "6892.22",
+ "0.05300000"
+ ],
+ [
+ "6891.00",
+ "0.10000000"
+ ],
+ [
+ "6889.20",
+ "1.23092376"
+ ],
+ [
+ "6888.88",
+ "0.05568000"
+ ],
+ [
+ "6888.00",
+ "0.24965912"
+ ],
+ [
+ "6887.00",
+ "0.13000000"
+ ],
+ [
+ "6886.00",
+ "21.60463259"
+ ],
+ [
+ "6880.00",
+ "10.08682878"
+ ],
+ [
+ "6879.97",
+ "0.00550000"
+ ],
+ [
+ "6879.00",
+ "0.03500000"
+ ],
+ [
+ "6877.61",
+ "12.55000000"
+ ],
+ [
+ "6875.00",
+ "1.85000000"
+ ],
+ [
+ "6873.24",
+ "0.00200000"
+ ],
+ [
+ "6871.52",
+ "0.10000000"
+ ],
+ [
+ "6870.00",
+ "0.97204076"
+ ],
+ [
+ "6869.98",
+ "0.01000000"
+ ],
+ [
+ "6868.88",
+ "0.50000000"
+ ],
+ [
+ "6868.13",
+ "0.01500000"
+ ],
+ [
+ "6868.00",
+ "0.10200000"
+ ],
+ [
+ "6867.00",
+ "0.02000000"
+ ],
+ [
+ "6866.00",
+ "1.33300000"
+ ],
+ [
+ "6865.00",
+ "0.05693168"
+ ],
+ [
+ "6861.11",
+ "0.00414035"
+ ],
+ [
+ "6860.46",
+ "12.55000000"
+ ],
+ [
+ "6860.00",
+ "0.76200000"
+ ],
+ [
+ "6859.97",
+ "0.00500000"
+ ],
+ [
+ "6859.00",
+ "0.05000000"
+ ],
+ [
+ "6858.00",
+ "10.00000000"
+ ],
+ [
+ "6856.00",
+ "1.97000000"
+ ],
+ [
+ "6855.92",
+ "0.99000000"
+ ],
+ [
+ "6852.49",
+ "0.00073100"
+ ],
+ [
+ "6852.00",
+ "3.16987147"
+ ],
+ [
+ "6851.34",
+ "0.17104099"
+ ],
+ [
+ "6851.00",
+ "1.00800000"
+ ],
+ [
+ "6850.82",
+ "0.04231579"
+ ],
+ [
+ "6850.65",
+ "0.50000000"
+ ],
+ [
+ "6850.00",
+ "17.64020664"
+ ],
+ [
+ "6849.83",
+ "0.00184050"
+ ],
+ [
+ "6848.45",
+ "0.05465616"
+ ],
+ [
+ "6848.00",
+ "0.00480000"
+ ],
+ [
+ "6847.00",
+ "0.02000000"
+ ],
+ [
+ "6844.44",
+ "0.00270000"
+ ],
+ [
+ "6843.35",
+ "12.55000000"
+ ],
+ [
+ "6841.00",
+ "0.00500000"
+ ],
+ [
+ "6840.00",
+ "0.11695900"
+ ],
+ [
+ "6839.47",
+ "0.00160000"
+ ],
+ [
+ "6839.00",
+ "0.00500000"
+ ],
+ [
+ "6838.11",
+ "0.02940000"
+ ],
+ [
+ "6836.41",
+ "0.57647654"
+ ],
+ [
+ "6835.00",
+ "0.39300000"
+ ],
+ [
+ "6834.00",
+ "0.02018191"
+ ],
+ [
+ "6833.00",
+ "0.08000000"
+ ],
+ [
+ "6830.11",
+ "0.15000000"
+ ],
+ [
+ "6830.00",
+ "0.48184480"
+ ],
+ [
+ "6829.86",
+ "1.60000000"
+ ],
+ [
+ "6827.00",
+ "0.02000000"
+ ],
+ [
+ "6826.28",
+ "12.55000000"
+ ],
+ [
+ "6826.00",
+ "0.25255928"
+ ],
+ [
+ "6825.00",
+ "0.18500000"
+ ],
+ [
+ "6824.68",
+ "0.76064665"
+ ],
+ [
+ "6822.00",
+ "1.04000000"
+ ],
+ [
+ "6821.00",
+ "1.00000000"
+ ],
+ [
+ "6820.00",
+ "0.45475733"
+ ],
+ [
+ "6819.00",
+ "0.02000000"
+ ],
+ [
+ "6818.50",
+ "0.05000000"
+ ],
+ [
+ "6818.00",
+ "0.04400000"
+ ],
+ [
+ "6817.00",
+ "0.05800000"
+ ],
+ [
+ "6816.39",
+ "0.50000000"
+ ],
+ [
+ "6816.23",
+ "0.00080000"
+ ],
+ [
+ "6816.00",
+ "0.25000000"
+ ],
+ [
+ "6815.00",
+ "0.73257519"
+ ],
+ [
+ "6812.40",
+ "0.00340000"
+ ],
+ [
+ "6812.16",
+ "0.05000000"
+ ],
+ [
+ "6812.00",
+ "0.02930000"
+ ],
+ [
+ "6811.89",
+ "0.00081182"
+ ],
+ [
+ "6811.06",
+ "0.12280000"
+ ],
+ [
+ "6811.00",
+ "0.03000000"
+ ],
+ [
+ "6810.00",
+ "0.52864867"
+ ],
+ [
+ "6809.26",
+ "12.55000000"
+ ],
+ [
+ "6809.00",
+ "0.05000000"
+ ],
+ [
+ "6808.42",
+ "0.00879330"
+ ],
+ [
+ "6807.00",
+ "0.12000000"
+ ],
+ [
+ "6805.05",
+ "0.00400000"
+ ],
+ [
+ "6805.00",
+ "1.60430000"
+ ],
+ [
+ "6804.34",
+ "0.04580900"
+ ],
+ [
+ "6804.00",
+ "0.35505789"
+ ],
+ [
+ "6803.69",
+ "0.35200783"
+ ],
+ [
+ "6803.66",
+ "0.02603378"
+ ],
+ [
+ "6803.00",
+ "0.35664413"
+ ],
+ [
+ "6802.00",
+ "0.20000000"
+ ],
+ [
+ "6801.83",
+ "0.25000000"
+ ],
+ [
+ "6801.37",
+ "0.33800000"
+ ],
+ [
+ "6801.34",
+ "0.19000000"
+ ],
+ [
+ "6801.00",
+ "3.94928126"
+ ],
+ [
+ "6800.82",
+ "0.21488879"
+ ],
+ [
+ "6800.00",
+ "115.86131555"
+ ],
+ [
+ "6799.00",
+ "0.26000000"
+ ],
+ [
+ "6792.28",
+ "12.55000000"
+ ],
+ [
+ "6791.00",
+ "0.26000000"
+ ],
+ [
+ "6789.47",
+ "0.00127907"
+ ],
+ [
+ "6789.00",
+ "1.53305156"
+ ],
+ [
+ "6787.00",
+ "0.02000000"
+ ],
+ [
+ "6786.00",
+ "1.00000000"
+ ],
+ [
+ "6785.73",
+ "0.01500000"
+ ],
+ [
+ "6785.00",
+ "0.06780398"
+ ],
+ [
+ "6784.00",
+ "9.98391273"
+ ],
+ [
+ "6781.00",
+ "0.30000000"
+ ],
+ [
+ "6780.09",
+ "0.14288306"
+ ],
+ [
+ "6780.00",
+ "1.01973548"
+ ],
+ [
+ "6779.16",
+ "0.02731901"
+ ],
+ [
+ "6779.00",
+ "0.50000000"
+ ],
+ [
+ "6778.00",
+ "0.10000000"
+ ],
+ [
+ "6777.09",
+ "0.00432781"
+ ],
+ [
+ "6776.38",
+ "1.00000000"
+ ],
+ [
+ "6775.34",
+ "12.55000000"
+ ],
+ [
+ "6775.11",
+ "1.00000000"
+ ],
+ [
+ "6775.00",
+ "0.10855498"
+ ],
+ [
+ "6770.00",
+ "0.08025004"
+ ],
+ [
+ "6769.69",
+ "1.20577013"
+ ],
+ [
+ "6767.33",
+ "0.08313659"
+ ],
+ [
+ "6767.00",
+ "0.13800000"
+ ],
+ [
+ "6766.00",
+ "0.58000000"
+ ],
+ [
+ "6765.87",
+ "0.02000000"
+ ],
+ [
+ "6765.00",
+ "0.07800000"
+ ],
+ [
+ "6763.24",
+ "0.09086230"
+ ],
+ [
+ "6762.00",
+ "0.13000000"
+ ],
+ [
+ "6760.00",
+ "0.05316124"
+ ],
+ [
+ "6758.45",
+ "12.55000000"
+ ],
+ [
+ "6756.74",
+ "0.01499999"
+ ],
+ [
+ "6756.00",
+ "0.19000000"
+ ],
+ [
+ "6755.00",
+ "1.10194818"
+ ],
+ [
+ "6753.84",
+ "0.00118155"
+ ],
+ [
+ "6753.13",
+ "0.01472206"
+ ],
+ [
+ "6753.00",
+ "0.07800000"
+ ],
+ [
+ "6751.74",
+ "0.05044685"
+ ],
+ [
+ "6751.09",
+ "0.22852984"
+ ],
+ [
+ "6751.00",
+ "0.00800000"
+ ],
+ [
+ "6750.57",
+ "0.10500000"
+ ],
+ [
+ "6750.01",
+ "1.00000000"
+ ],
+ [
+ "6750.00",
+ "12.07613889"
+ ],
+ [
+ "6749.00",
+ "0.00500000"
+ ],
+ [
+ "6748.00",
+ "0.33000000"
+ ],
+ [
+ "6747.00",
+ "0.02000000"
+ ],
+ [
+ "6746.00",
+ "0.57800000"
+ ],
+ [
+ "6745.78",
+ "0.09271722"
+ ],
+ [
+ "6741.59",
+ "12.55000000"
+ ],
+ [
+ "6741.00",
+ "0.29520249"
+ ],
+ [
+ "6736.00",
+ "0.01500000"
+ ],
+ [
+ "6734.34",
+ "0.00200501"
+ ],
+ [
+ "6734.00",
+ "0.74433769"
+ ],
+ [
+ "6733.45",
+ "0.50000000"
+ ],
+ [
+ "6732.36",
+ "0.50000000"
+ ],
+ [
+ "6732.10",
+ "0.00350000"
+ ],
+ [
+ "6730.00",
+ "0.02000000"
+ ],
+ [
+ "6727.00",
+ "0.02000000"
+ ],
+ [
+ "6726.32",
+ "0.00899842"
+ ],
+ [
+ "6725.00",
+ "0.18292788"
+ ],
+ [
+ "6724.78",
+ "12.55000000"
+ ],
+ [
+ "6721.00",
+ "0.25510000"
+ ],
+ [
+ "6720.00",
+ "1.05570014"
+ ],
+ [
+ "6717.00",
+ "1.03900000"
+ ],
+ [
+ "6715.00",
+ "0.02000000"
+ ],
+ [
+ "6712.00",
+ "0.01091030"
+ ],
+ [
+ "6711.91",
+ "0.27499324"
+ ],
+ [
+ "6711.00",
+ "0.29856653"
+ ],
+ [
+ "6710.00",
+ "0.01097000"
+ ],
+ [
+ "6708.01",
+ "12.55000000"
+ ],
+ [
+ "6708.00",
+ "1.00000000"
+ ],
+ [
+ "6707.00",
+ "0.02000000"
+ ],
+ [
+ "6706.00",
+ "0.31350000"
+ ],
+ [
+ "6705.00",
+ "0.50000000"
+ ],
+ [
+ "6702.10",
+ "0.10800000"
+ ],
+ [
+ "6701.00",
+ "0.56141023"
+ ],
+ [
+ "6700.22",
+ "0.00290000"
+ ],
+ [
+ "6700.00",
+ "62.22654648"
+ ],
+ [
+ "6693.00",
+ "0.13200000"
+ ],
+ [
+ "6691.28",
+ "12.55000000"
+ ],
+ [
+ "6690.00",
+ "0.12670000"
+ ],
+ [
+ "6689.99",
+ "0.05000000"
+ ],
+ [
+ "6687.00",
+ "0.02000000"
+ ],
+ [
+ "6686.13",
+ "0.00360000"
+ ],
+ [
+ "6686.00",
+ "1.00000000"
+ ],
+ [
+ "6684.64",
+ "7.08560852"
+ ],
+ [
+ "6682.91",
+ "0.90261614"
+ ],
+ [
+ "6681.00",
+ "0.05400000"
+ ],
+ [
+ "6680.00",
+ "0.10000000"
+ ],
+ [
+ "6677.00",
+ "1.00000000"
+ ],
+ [
+ "6675.79",
+ "0.00955928"
+ ],
+ [
+ "6674.60",
+ "12.55000000"
+ ],
+ [
+ "6672.73",
+ "0.00600000"
+ ],
+ [
+ "6670.00",
+ "0.07850374"
+ ],
+ [
+ "6668.00",
+ "0.01490000"
+ ],
+ [
+ "6667.93",
+ "3.00000000"
+ ],
+ [
+ "6667.12",
+ "0.54028801"
+ ],
+ [
+ "6667.00",
+ "0.02000000"
+ ],
+ [
+ "6666.69",
+ "0.23141619"
+ ],
+ [
+ "6666.66",
+ "0.14123337"
+ ],
+ [
+ "6666.00",
+ "9.11539078"
+ ],
+ [
+ "6663.00",
+ "0.44000000"
+ ],
+ [
+ "6660.82",
+ "0.07528352"
+ ],
+ [
+ "6660.00",
+ "7.96541141"
+ ],
+ [
+ "6659.97",
+ "0.01000000"
+ ],
+ [
+ "6659.54",
+ "0.05000000"
+ ],
+ [
+ "6658.35",
+ "0.16801269"
+ ],
+ [
+ "6657.95",
+ "12.55000000"
+ ],
+ [
+ "6657.00",
+ "0.92401382"
+ ],
+ [
+ "6656.00",
+ "0.13000000"
+ ],
+ [
+ "6655.00",
+ "0.06060000"
+ ],
+ [
+ "6653.84",
+ "0.06800960"
+ ],
+ [
+ "6651.06",
+ "0.12570000"
+ ],
+ [
+ "6650.00",
+ "8.01711165"
+ ],
+ [
+ "6647.00",
+ "0.02000000"
+ ],
+ [
+ "6646.00",
+ "0.03500000"
+ ],
+ [
+ "6641.35",
+ "12.55000000"
+ ],
+ [
+ "6639.00",
+ "0.13000000"
+ ],
+ [
+ "6636.41",
+ "0.00257467"
+ ],
+ [
+ "6635.00",
+ "0.13400000"
+ ],
+ [
+ "6633.00",
+ "0.07500000"
+ ],
+ [
+ "6630.00",
+ "0.02500000"
+ ],
+ [
+ "6628.60",
+ "0.15000000"
+ ],
+ [
+ "6627.00",
+ "0.02000000"
+ ],
+ [
+ "6625.92",
+ "0.01000000"
+ ],
+ [
+ "6625.00",
+ "1.00000000"
+ ],
+ [
+ "6624.79",
+ "12.55000000"
+ ],
+ [
+ "6622.00",
+ "0.07000000"
+ ],
+ [
+ "6621.64",
+ "0.00370000"
+ ],
+ [
+ "6620.00",
+ "3.40000000"
+ ],
+ [
+ "6616.00",
+ "0.04600000"
+ ],
+ [
+ "6614.00",
+ "1.03000000"
+ ],
+ [
+ "6613.00",
+ "0.10000000"
+ ],
+ [
+ "6612.16",
+ "0.21591851"
+ ],
+ [
+ "6611.83",
+ "0.01500000"
+ ],
+ [
+ "6611.10",
+ "0.08500000"
+ ],
+ [
+ "6611.00",
+ "0.02000000"
+ ],
+ [
+ "6610.00",
+ "0.00098000"
+ ],
+ [
+ "6608.36",
+ "0.01500000"
+ ],
+ [
+ "6608.26",
+ "12.55000000"
+ ],
+ [
+ "6608.00",
+ "1.00000000"
+ ],
+ [
+ "6607.00",
+ "0.02430000"
+ ],
+ [
+ "6606.75",
+ "0.01000000"
+ ],
+ [
+ "6606.00",
+ "0.50000000"
+ ],
+ [
+ "6605.00",
+ "0.50000000"
+ ],
+ [
+ "6602.00",
+ "0.49000000"
+ ],
+ [
+ "6601.43",
+ "0.09000000"
+ ],
+ [
+ "6601.00",
+ "0.62604698"
+ ],
+ [
+ "6600.63",
+ "0.25000000"
+ ],
+ [
+ "6600.17",
+ "0.18599608"
+ ],
+ [
+ "6600.00",
+ "14.31902803"
+ ],
+ [
+ "6599.00",
+ "0.05000000"
+ ],
+ [
+ "6597.09",
+ "0.00430190"
+ ],
+ [
+ "6594.00",
+ "0.03000000"
+ ],
+ [
+ "6591.79",
+ "12.55000000"
+ ],
+ [
+ "6590.00",
+ "0.50000000"
+ ],
+ [
+ "6589.77",
+ "0.15000000"
+ ],
+ [
+ "6589.00",
+ "0.50500000"
+ ],
+ [
+ "6587.00",
+ "0.03500000"
+ ],
+ [
+ "6586.86",
+ "2.23063000"
+ ],
+ [
+ "6586.45",
+ "1.04447222"
+ ],
+ [
+ "6586.00",
+ "1.01499848"
+ ],
+ [
+ "6584.00",
+ "0.06600000"
+ ],
+ [
+ "6580.50",
+ "0.00568497"
+ ],
+ [
+ "6580.00",
+ "11.44357903"
+ ],
+ [
+ "6579.36",
+ "0.05000000"
+ ],
+ [
+ "6578.60",
+ "0.05000000"
+ ],
+ [
+ "6578.00",
+ "0.34000000"
+ ],
+ [
+ "6577.24",
+ "0.02000000"
+ ],
+ [
+ "6575.35",
+ "12.55000000"
+ ],
+ [
+ "6575.00",
+ "0.04000000"
+ ],
+ [
+ "6573.58",
+ "0.02000000"
+ ],
+ [
+ "6572.52",
+ "0.06390246"
+ ],
+ [
+ "6572.11",
+ "0.03040000"
+ ],
+ [
+ "6570.00",
+ "0.22386914"
+ ],
+ [
+ "6569.97",
+ "0.01000000"
+ ],
+ [
+ "6568.56",
+ "1.95000000"
+ ],
+ [
+ "6567.00",
+ "0.02000000"
+ ],
+ [
+ "6563.20",
+ "0.10000000"
+ ],
+ [
+ "6563.16",
+ "0.00145683"
+ ],
+ [
+ "6561.01",
+ "3.34476401"
+ ],
+ [
+ "6560.47",
+ "1.34000000"
+ ],
+ [
+ "6560.28",
+ "0.02904906"
+ ],
+ [
+ "6560.00",
+ "0.23056249"
+ ],
+ [
+ "6559.35",
+ "0.03314439"
+ ],
+ [
+ "6558.95",
+ "12.55000000"
+ ],
+ [
+ "6558.00",
+ "0.01000000"
+ ],
+ [
+ "6555.00",
+ "1.59866270"
+ ],
+ [
+ "6553.95",
+ "0.07476407"
+ ],
+ [
+ "6551.42",
+ "0.12855739"
+ ],
+ [
+ "6551.00",
+ "0.02700000"
+ ],
+ [
+ "6550.72",
+ "0.01000000"
+ ],
+ [
+ "6550.00",
+ "14.46661070"
+ ],
+ [
+ "6549.12",
+ "0.00525719"
+ ],
+ [
+ "6548.00",
+ "9.79254429"
+ ],
+ [
+ "6547.00",
+ "0.52000000"
+ ],
+ [
+ "6545.00",
+ "0.60000000"
+ ],
+ [
+ "6544.00",
+ "2.00000000"
+ ],
+ [
+ "6543.16",
+ "0.01035633"
+ ],
+ [
+ "6542.59",
+ "12.55000000"
+ ],
+ [
+ "6542.30",
+ "0.00400000"
+ ],
+ [
+ "6542.11",
+ "0.00180000"
+ ],
+ [
+ "6541.87",
+ "0.14249901"
+ ],
+ [
+ "6541.00",
+ "0.38128726"
+ ],
+ [
+ "6540.00",
+ "1.07000000"
+ ],
+ [
+ "6538.85",
+ "0.10000000"
+ ],
+ [
+ "6538.00",
+ "2.00000000"
+ ],
+ [
+ "6536.84",
+ "0.00990339"
+ ],
+ [
+ "6534.00",
+ "0.11600000"
+ ],
+ [
+ "6533.33",
+ "0.00833335"
+ ],
+ [
+ "6533.00",
+ "0.16000000"
+ ],
+ [
+ "6530.00",
+ "10.20200000"
+ ],
+ [
+ "6529.00",
+ "0.10000000"
+ ],
+ [
+ "6528.00",
+ "1.10859925"
+ ],
+ [
+ "6527.00",
+ "0.02000000"
+ ],
+ [
+ "6526.28",
+ "12.55000000"
+ ],
+ [
+ "6525.60",
+ "0.07000000"
+ ],
+ [
+ "6525.58",
+ "0.03000000"
+ ],
+ [
+ "6525.19",
+ "0.00094480"
+ ],
+ [
+ "6525.00",
+ "0.13900000"
+ ],
+ [
+ "6524.06",
+ "0.00475010"
+ ],
+ [
+ "6524.00",
+ "0.45000000"
+ ],
+ [
+ "6522.60",
+ "1.00000000"
+ ],
+ [
+ "6522.00",
+ "0.64000000"
+ ],
+ [
+ "6521.02",
+ "0.52933590"
+ ],
+ [
+ "6520.00",
+ "0.78000000"
+ ],
+ [
+ "6519.00",
+ "0.15000000"
+ ],
+ [
+ "6516.95",
+ "0.00383615"
+ ],
+ [
+ "6516.67",
+ "0.01304345"
+ ],
+ [
+ "6515.00",
+ "0.04600000"
+ ],
+ [
+ "6514.00",
+ "0.01500000"
+ ],
+ [
+ "6513.00",
+ "0.21000000"
+ ],
+ [
+ "6512.64",
+ "5.00000000"
+ ],
+ [
+ "6512.16",
+ "0.17023044"
+ ],
+ [
+ "6512.00",
+ "0.04191339"
+ ],
+ [
+ "6511.06",
+ "0.12840000"
+ ],
+ [
+ "6510.95",
+ "0.03839685"
+ ],
+ [
+ "6510.00",
+ "18.34695754"
+ ],
+ [
+ "6508.00",
+ "1.00000000"
+ ],
+ [
+ "6507.93",
+ "0.00100000"
+ ],
+ [
+ "6507.00",
+ "0.35900000"
+ ],
+ [
+ "6506.97",
+ "1.00000000"
+ ],
+ [
+ "6505.00",
+ "2.00000000"
+ ],
+ [
+ "6502.00",
+ "0.25000000"
+ ],
+ [
+ "6501.09",
+ "0.33399916"
+ ],
+ [
+ "6501.00",
+ "4.05000000"
+ ],
+ [
+ "6500.71",
+ "0.06068625"
+ ],
+ [
+ "6500.08",
+ "9.52129512"
+ ],
+ [
+ "6500.01",
+ "0.14142670"
+ ],
+ [
+ "6500.00",
+ "42.03203839"
+ ],
+ [
+ "6499.00",
+ "0.10000000"
+ ],
+ [
+ "6498.60",
+ "0.05000000"
+ ],
+ [
+ "6498.00",
+ "10.00000000"
+ ],
+ [
+ "6496.91",
+ "0.25391892"
+ ],
+ [
+ "6493.77",
+ "12.55000000"
+ ],
+ [
+ "6492.00",
+ "0.26406000"
+ ],
+ [
+ "6491.00",
+ "0.50000000"
+ ],
+ [
+ "6488.00",
+ "10.00000000"
+ ],
+ [
+ "6487.00",
+ "1.03000000"
+ ],
+ [
+ "6486.00",
+ "1.00000000"
+ ],
+ [
+ "6485.34",
+ "0.00123047"
+ ],
+ [
+ "6485.00",
+ "0.13284040"
+ ],
+ [
+ "6480.29",
+ "0.02019200"
+ ],
+ [
+ "6480.00",
+ "2.04960000"
+ ],
+ [
+ "6479.97",
+ "0.02010179"
+ ],
+ [
+ "6478.00",
+ "0.13276952"
+ ],
+ [
+ "6477.57",
+ "12.55000000"
+ ],
+ [
+ "6470.00",
+ "0.44465687"
+ ],
+ [
+ "6469.00",
+ "0.09000000"
+ ],
+ [
+ "6468.00",
+ "0.10800000"
+ ],
+ [
+ "6467.00",
+ "0.46721045"
+ ],
+ [
+ "6466.00",
+ "0.36768635"
+ ],
+ [
+ "6465.88",
+ "14.00000000"
+ ],
+ [
+ "6465.67",
+ "0.01500000"
+ ],
+ [
+ "6464.87",
+ "0.00326327"
+ ],
+ [
+ "6464.64",
+ "0.00949628"
+ ],
+ [
+ "6464.10",
+ "0.10800000"
+ ],
+ [
+ "6461.42",
+ "12.55000000"
+ ],
+ [
+ "6460.00",
+ "0.97000000"
+ ],
+ [
+ "6459.15",
+ "0.33000000"
+ ],
+ [
+ "6458.96",
+ "0.07763634"
+ ],
+ [
+ "6458.28",
+ "0.11500000"
+ ],
+ [
+ "6456.00",
+ "2.50000000"
+ ],
+ [
+ "6455.00",
+ "0.11115036"
+ ],
+ [
+ "6452.49",
+ "0.00077600"
+ ],
+ [
+ "6451.60",
+ "0.15000000"
+ ],
+ [
+ "6451.00",
+ "1.49021568"
+ ],
+ [
+ "6450.83",
+ "0.28300000"
+ ],
+ [
+ "6450.01",
+ "0.25783370"
+ ],
+ [
+ "6450.00",
+ "14.11318936"
+ ],
+ [
+ "6448.00",
+ "0.10000000"
+ ],
+ [
+ "6447.00",
+ "0.12200000"
+ ],
+ [
+ "6446.00",
+ "0.25000000"
+ ],
+ [
+ "6445.32",
+ "0.05322311"
+ ],
+ [
+ "6445.31",
+ "12.55000000"
+ ],
+ [
+ "6444.00",
+ "1.00000000"
+ ],
+ [
+ "6441.00",
+ "0.19500000"
+ ],
+ [
+ "6440.00",
+ "2.61228649"
+ ],
+ [
+ "6430.50",
+ "0.02770391"
+ ],
+ [
+ "6430.00",
+ "0.22000000"
+ ],
+ [
+ "6429.95",
+ "0.12896713"
+ ],
+ [
+ "6429.23",
+ "12.55000000"
+ ],
+ [
+ "6425.60",
+ "0.10000000"
+ ],
+ [
+ "6425.19",
+ "0.06423467"
+ ],
+ [
+ "6425.00",
+ "1.00000000"
+ ],
+ [
+ "6422.00",
+ "0.08400000"
+ ],
+ [
+ "6421.55",
+ "0.00380000"
+ ],
+ [
+ "6420.75",
+ "0.03114901"
+ ],
+ [
+ "6420.00",
+ "51.82000000"
+ ],
+ [
+ "6418.00",
+ "0.04310000"
+ ],
+ [
+ "6415.00",
+ "0.10000000"
+ ],
+ [
+ "6414.00",
+ "0.05130000"
+ ],
+ [
+ "6413.20",
+ "12.55000000"
+ ],
+ [
+ "6412.00",
+ "2.09492093"
+ ],
+ [
+ "6410.53",
+ "0.01118635"
+ ],
+ [
+ "6410.48",
+ "0.26956665"
+ ],
+ [
+ "6410.00",
+ "2.33212000"
+ ],
+ [
+ "6408.71",
+ "0.00150000"
+ ],
+ [
+ "6408.21",
+ "0.24517611"
+ ],
+ [
+ "6408.00",
+ "1.06200000"
+ ],
+ [
+ "6407.04",
+ "0.01000000"
+ ],
+ [
+ "6407.00",
+ "0.13000000"
+ ],
+ [
+ "6406.86",
+ "0.00397698"
+ ],
+ [
+ "6405.00",
+ "3.33432630"
+ ],
+ [
+ "6403.00",
+ "0.52000000"
+ ],
+ [
+ "6402.00",
+ "0.66600000"
+ ],
+ [
+ "6401.00",
+ "3.00177393"
+ ],
+ [
+ "6400.00",
+ "71.27892500"
+ ],
+ [
+ "6397.21",
+ "12.55000000"
+ ],
+ [
+ "6397.00",
+ "0.05000000"
+ ],
+ [
+ "6395.00",
+ "1.63425956"
+ ],
+ [
+ "6392.00",
+ "0.47931790"
+ ],
+ [
+ "6390.00",
+ "0.30000000"
+ ],
+ [
+ "6388.86",
+ "1.70000000"
+ ],
+ [
+ "6388.44",
+ "0.75000000"
+ ],
+ [
+ "6388.13",
+ "0.01800000"
+ ],
+ [
+ "6387.00",
+ "0.05000000"
+ ],
+ [
+ "6385.00",
+ "1.03797494"
+ ],
+ [
+ "6384.00",
+ "0.67000000"
+ ],
+ [
+ "6383.97",
+ "0.04436580"
+ ],
+ [
+ "6383.00",
+ "0.15000000"
+ ],
+ [
+ "6382.00",
+ "1.24370000"
+ ],
+ [
+ "6381.25",
+ "12.55000000"
+ ],
+ [
+ "6380.00",
+ "0.79760659"
+ ],
+ [
+ "6377.83",
+ "0.02174328"
+ ],
+ [
+ "6376.41",
+ "0.00145065"
+ ],
+ [
+ "6376.12",
+ "0.01387076"
+ ],
+ [
+ "6375.00",
+ "17.00211450"
+ ],
+ [
+ "6374.10",
+ "0.10000000"
+ ],
+ [
+ "6372.00",
+ "0.03083961"
+ ],
+ [
+ "6371.22",
+ "1.00000000"
+ ],
+ [
+ "6371.12",
+ "0.03500000"
+ ],
+ [
+ "6370.00",
+ "1.57881868"
+ ],
+ [
+ "6369.69",
+ "0.64074389"
+ ],
+ [
+ "6369.00",
+ "0.44200000"
+ ],
+ [
+ "6367.97",
+ "0.00500000"
+ ],
+ [
+ "6367.00",
+ "0.10000000"
+ ],
+ [
+ "6366.37",
+ "0.01000000"
+ ],
+ [
+ "6366.00",
+ "0.15000000"
+ ],
+ [
+ "6365.34",
+ "12.55000000"
+ ],
+ [
+ "6365.00",
+ "0.25000000"
+ ],
+ [
+ "6363.63",
+ "0.00964858"
+ ],
+ [
+ "6363.00",
+ "1.23000000"
+ ],
+ [
+ "6360.00",
+ "1.39712578"
+ ],
+ [
+ "6358.00",
+ "0.15129434"
+ ],
+ [
+ "6357.00",
+ "1.95664621"
+ ],
+ [
+ "6356.00",
+ "0.08500000"
+ ],
+ [
+ "6355.62",
+ "0.24237925"
+ ],
+ [
+ "6355.00",
+ "1.54426947"
+ ],
+ [
+ "6352.49",
+ "0.00078800"
+ ],
+ [
+ "6352.20",
+ "4.00000000"
+ ],
+ [
+ "6351.06",
+ "0.13170000"
+ ],
+ [
+ "6351.00",
+ "1.57400000"
+ ],
+ [
+ "6350.64",
+ "0.30582429"
+ ],
+ [
+ "6350.00",
+ "12.95094758"
+ ],
+ [
+ "6349.47",
+ "12.55000000"
+ ],
+ [
+ "6347.37",
+ "0.01086235"
+ ],
+ [
+ "6347.00",
+ "0.29000000"
+ ],
+ [
+ "6345.43",
+ "0.07345522"
+ ],
+ [
+ "6345.00",
+ "10.00000000"
+ ],
+ [
+ "6341.50",
+ "0.01588267"
+ ],
+ [
+ "6341.00",
+ "0.15000000"
+ ],
+ [
+ "6340.00",
+ "0.32000000"
+ ],
+ [
+ "6338.88",
+ "0.00088659"
+ ],
+ [
+ "6336.84",
+ "0.00164729"
+ ],
+ [
+ "6336.00",
+ "0.17630208"
+ ],
+ [
+ "6333.63",
+ "12.55000000"
+ ],
+ [
+ "6333.33",
+ "0.50524563"
+ ],
+ [
+ "6333.00",
+ "1.80179851"
+ ],
+ [
+ "6331.00",
+ "0.01747117"
+ ],
+ [
+ "6330.00",
+ "0.55561057"
+ ],
+ [
+ "6327.00",
+ "8.64210526"
+ ],
+ [
+ "6325.00",
+ "4.07500000"
+ ],
+ [
+ "6324.00",
+ "0.02561986"
+ ],
+ [
+ "6322.81",
+ "0.01043760"
+ ],
+ [
+ "6321.00",
+ "1.30200000"
+ ],
+ [
+ "6320.33",
+ "0.25011985"
+ ],
+ [
+ "6320.00",
+ "0.55250000"
+ ],
+ [
+ "6318.00",
+ "0.03300000"
+ ],
+ [
+ "6317.84",
+ "12.55000000"
+ ],
+ [
+ "6317.00",
+ "32.58584055"
+ ],
+ [
+ "6315.00",
+ "0.89099129"
+ ],
+ [
+ "6313.00",
+ "0.04800000"
+ ],
+ [
+ "6312.21",
+ "1.48093838"
+ ],
+ [
+ "6312.00",
+ "30.55000000"
+ ],
+ [
+ "6311.89",
+ "0.00316862"
+ ],
+ [
+ "6311.86",
+ "0.00370000"
+ ],
+ [
+ "6311.00",
+ "1.03151323"
+ ],
+ [
+ "6310.48",
+ "0.31788571"
+ ],
+ [
+ "6310.00",
+ "3.54005535"
+ ],
+ [
+ "6308.00",
+ "1.00000000"
+ ],
+ [
+ "6307.00",
+ "30.00000000"
+ ],
+ [
+ "6306.60",
+ "1.00000000"
+ ],
+ [
+ "6305.00",
+ "31.00000000"
+ ],
+ [
+ "6304.87",
+ "1.00000000"
+ ],
+ [
+ "6304.00",
+ "3.56000000"
+ ],
+ [
+ "6303.49",
+ "0.00938000"
+ ],
+ [
+ "6303.23",
+ "0.10000000"
+ ],
+ [
+ "6302.08",
+ "12.55000000"
+ ],
+ [
+ "6302.00",
+ "30.00000000"
+ ],
+ [
+ "6301.30",
+ "0.47367686"
+ ],
+ [
+ "6301.20",
+ "0.03173999"
+ ],
+ [
+ "6301.00",
+ "2.37400000"
+ ],
+ [
+ "6300.00",
+ "13.12691745"
+ ],
+ [
+ "6299.00",
+ "1.02000000"
+ ],
+ [
+ "6294.77",
+ "0.64373917"
+ ],
+ [
+ "6292.00",
+ "1.00000000"
+ ],
+ [
+ "6290.00",
+ "6.02008187"
+ ],
+ [
+ "6289.00",
+ "0.50000000"
+ ],
+ [
+ "6288.88",
+ "14.76148376"
+ ],
+ [
+ "6288.01",
+ "5.00000000"
+ ],
+ [
+ "6287.00",
+ "30.00000000"
+ ],
+ [
+ "6286.37",
+ "12.55000000"
+ ],
+ [
+ "6285.46",
+ "1.39800884"
+ ],
+ [
+ "6283.95",
+ "0.10445366"
+ ],
+ [
+ "6282.00",
+ "35.44505728"
+ ],
+ [
+ "6280.00",
+ "9.68383120"
+ ],
+ [
+ "6279.00",
+ "0.10200000"
+ ],
+ [
+ "6278.59",
+ "0.08500000"
+ ],
+ [
+ "6278.00",
+ "1.70000000"
+ ],
+ [
+ "6277.89",
+ "0.01205151"
+ ],
+ [
+ "6277.00",
+ "30.10000000"
+ ],
+ [
+ "6276.00",
+ "0.17000000"
+ ],
+ [
+ "6275.00",
+ "1.14557610"
+ ],
+ [
+ "6272.00",
+ "30.00000000"
+ ],
+ [
+ "6270.69",
+ "12.55000000"
+ ],
+ [
+ "6270.15",
+ "0.00147364"
+ ],
+ [
+ "6270.00",
+ "1.13400000"
+ ],
+ [
+ "6269.04",
+ "0.00127292"
+ ],
+ [
+ "6267.00",
+ "30.10200000"
+ ],
+ [
+ "6266.00",
+ "0.82011410"
+ ],
+ [
+ "6264.34",
+ "1.40272068"
+ ],
+ [
+ "6262.20",
+ "3.24554310"
+ ],
+ [
+ "6262.00",
+ "30.00000000"
+ ],
+ [
+ "6261.00",
+ "4.20591279"
+ ],
+ [
+ "6260.00",
+ "1.54739297"
+ ],
+ [
+ "6259.00",
+ "0.06800000"
+ ],
+ [
+ "6258.90",
+ "0.12174463"
+ ],
+ [
+ "6257.00",
+ "30.03067340"
+ ],
+ [
+ "6255.05",
+ "12.55000000"
+ ],
+ [
+ "6255.00",
+ "0.79505595"
+ ],
+ [
+ "6254.00",
+ "0.01000000"
+ ],
+ [
+ "6253.00",
+ "0.01163922"
+ ],
+ [
+ "6252.00",
+ "30.00000000"
+ ],
+ [
+ "6251.00",
+ "0.28978083"
+ ],
+ [
+ "6250.01",
+ "0.00083680"
+ ],
+ [
+ "6250.00",
+ "18.22345537"
+ ],
+ [
+ "6247.00",
+ "30.51000000"
+ ],
+ [
+ "6245.00",
+ "0.34000000"
+ ],
+ [
+ "6244.74",
+ "0.00200000"
+ ],
+ [
+ "6243.30",
+ "1.40744839"
+ ],
+ [
+ "6242.50",
+ "0.71905808"
+ ],
+ [
+ "6242.00",
+ "30.00000000"
+ ],
+ [
+ "6241.10",
+ "0.09000000"
+ ],
+ [
+ "6240.00",
+ "19.65967387"
+ ],
+ [
+ "6239.45",
+ "12.55000000"
+ ],
+ [
+ "6238.00",
+ "5.03657422"
+ ],
+ [
+ "6237.13",
+ "0.01500000"
+ ],
+ [
+ "6237.00",
+ "30.00000000"
+ ],
+ [
+ "6236.00",
+ "1.98500000"
+ ],
+ [
+ "6235.00",
+ "1.00000000"
+ ],
+ [
+ "6234.00",
+ "2.58832771"
+ ],
+ [
+ "6233.33",
+ "0.01524067"
+ ],
+ [
+ "6233.00",
+ "0.60367800"
+ ],
+ [
+ "6232.00",
+ "30.00000000"
+ ],
+ [
+ "6230.15",
+ "0.00420000"
+ ],
+ [
+ "6230.00",
+ "1.19381058"
+ ],
+ [
+ "6227.55",
+ "0.01000000"
+ ],
+ [
+ "6227.00",
+ "30.15230000"
+ ],
+ [
+ "6225.00",
+ "2.35499437"
+ ],
+ [
+ "6223.90",
+ "12.55000000"
+ ],
+ [
+ "6223.00",
+ "0.23493724"
+ ],
+ [
+ "6222.33",
+ "1.41219204"
+ ],
+ [
+ "6222.22",
+ "0.00330000"
+ ],
+ [
+ "6222.00",
+ "32.45000000"
+ ],
+ [
+ "6221.97",
+ "0.91010002"
+ ],
+ [
+ "6221.00",
+ "0.13299469"
+ ],
+ [
+ "6220.00",
+ "5.72000000"
+ ],
+ [
+ "6218.00",
+ "5.94753297"
+ ],
+ [
+ "6217.00",
+ "30.00000000"
+ ],
+ [
+ "6216.10",
+ "0.12000000"
+ ],
+ [
+ "6216.00",
+ "0.38000000"
+ ],
+ [
+ "6215.09",
+ "0.00659362"
+ ],
+ [
+ "6215.00",
+ "4.37711946"
+ ],
+ [
+ "6213.11",
+ "0.03220000"
+ ],
+ [
+ "6213.00",
+ "0.91842427"
+ ],
+ [
+ "6212.00",
+ "33.83305988"
+ ],
+ [
+ "6211.06",
+ "0.13470000"
+ ],
+ [
+ "6211.00",
+ "7.09289444"
+ ],
+ [
+ "6210.00",
+ "1.35167157"
+ ],
+ [
+ "6209.66",
+ "0.07678681"
+ ],
+ [
+ "6209.00",
+ "10.00000000"
+ ],
+ [
+ "6208.37",
+ "12.55000000"
+ ],
+ [
+ "6208.00",
+ "1.00000000"
+ ],
+ [
+ "6207.00",
+ "0.10000000"
+ ],
+ [
+ "6205.00",
+ "1.00000000"
+ ],
+ [
+ "6204.14",
+ "0.05315161"
+ ],
+ [
+ "6203.00",
+ "1.91393680"
+ ],
+ [
+ "6201.43",
+ "1.41695168"
+ ],
+ [
+ "6201.01",
+ "0.25000000"
+ ],
+ [
+ "6201.00",
+ "0.63000000"
+ ],
+ [
+ "6200.01",
+ "20.00000000"
+ ],
+ [
+ "6200.00",
+ "67.97817627"
+ ],
+ [
+ "6199.22",
+ "0.02000000"
+ ],
+ [
+ "6199.00",
+ "1.20000000"
+ ],
+ [
+ "6197.00",
+ "3.89000000"
+ ],
+ [
+ "6195.00",
+ "0.02000000"
+ ],
+ [
+ "6192.89",
+ "12.55000000"
+ ],
+ [
+ "6192.85",
+ "0.86825000"
+ ],
+ [
+ "6191.55",
+ "0.00403776"
+ ],
+ [
+ "6190.00",
+ "10.00000000"
+ ],
+ [
+ "6189.00",
+ "0.05200000"
+ ],
+ [
+ "6188.01",
+ "10.00000000"
+ ],
+ [
+ "6186.00",
+ "1.00000000"
+ ],
+ [
+ "6185.00",
+ "6.88346557"
+ ],
+ [
+ "6184.00",
+ "0.04919598"
+ ],
+ [
+ "6181.10",
+ "0.03770445"
+ ],
+ [
+ "6181.00",
+ "0.10000000"
+ ],
+ [
+ "6180.60",
+ "1.42172736"
+ ],
+ [
+ "6180.10",
+ "0.04045242"
+ ],
+ [
+ "6180.00",
+ "1.32000000"
+ ],
+ [
+ "6178.00",
+ "0.20270475"
+ ],
+ [
+ "6177.45",
+ "12.55000000"
+ ],
+ [
+ "6177.00",
+ "3.91293183"
+ ],
+ [
+ "6176.00",
+ "1.00000000"
+ ],
+ [
+ "6175.00",
+ "2.39627141"
+ ],
+ [
+ "6171.66",
+ "0.50000000"
+ ],
+ [
+ "6170.00",
+ "0.10000000"
+ ],
+ [
+ "6169.69",
+ "0.62127756"
+ ],
+ [
+ "6169.00",
+ "0.19800000"
+ ],
+ [
+ "6168.00",
+ "0.07600000"
+ ],
+ [
+ "6162.04",
+ "12.55000000"
+ ],
+ [
+ "6160.00",
+ "0.55028139"
+ ],
+ [
+ "6159.83",
+ "1.42651913"
+ ],
+ [
+ "6159.14",
+ "0.00200000"
+ ],
+ [
+ "6159.00",
+ "0.19000000"
+ ],
+ [
+ "6157.89",
+ "0.01188037"
+ ],
+ [
+ "6157.00",
+ "0.04012018"
+ ],
+ [
+ "6156.00",
+ "5.62737981"
+ ],
+ [
+ "6154.25",
+ "0.00231596"
+ ],
+ [
+ "6153.00",
+ "0.34000000"
+ ],
+ [
+ "6152.49",
+ "0.00081400"
+ ],
+ [
+ "6152.04",
+ "0.00900000"
+ ],
+ [
+ "6152.00",
+ "0.05000000"
+ ],
+ [
+ "6151.00",
+ "1.60471630"
+ ],
+ [
+ "6150.00",
+ "13.48869891"
+ ],
+ [
+ "6149.97",
+ "0.02000000"
+ ],
+ [
+ "6146.68",
+ "12.55000000"
+ ],
+ [
+ "6145.26",
+ "0.01295394"
+ ],
+ [
+ "6144.00",
+ "0.07600000"
+ ],
+ [
+ "6141.00",
+ "5.82751180"
+ ],
+ [
+ "6140.80",
+ "0.50000000"
+ ],
+ [
+ "6140.00",
+ "0.42000000"
+ ],
+ [
+ "6139.14",
+ "1.43132706"
+ ],
+ [
+ "6137.91",
+ "0.49500000"
+ ],
+ [
+ "6136.00",
+ "0.55800000"
+ ],
+ [
+ "6135.00",
+ "0.17000000"
+ ],
+ [
+ "6134.00",
+ "0.00100000"
+ ],
+ [
+ "6133.00",
+ "0.02296714"
+ ],
+ [
+ "6132.00",
+ "1.00000000"
+ ],
+ [
+ "6131.35",
+ "12.55000000"
+ ],
+ [
+ "6131.05",
+ "0.30000000"
+ ],
+ [
+ "6130.00",
+ "0.13700000"
+ ],
+ [
+ "6128.93",
+ "0.12500000"
+ ],
+ [
+ "6128.00",
+ "0.00131853"
+ ],
+ [
+ "6127.00",
+ "0.05700000"
+ ],
+ [
+ "6126.58",
+ "0.03000000"
+ ],
+ [
+ "6125.00",
+ "3.41792000"
+ ],
+ [
+ "6123.00",
+ "2.32269638"
+ ],
+ [
+ "6122.31",
+ "0.02510704"
+ ],
+ [
+ "6122.22",
+ "20.00000000"
+ ],
+ [
+ "6122.00",
+ "0.17157014"
+ ],
+ [
+ "6121.00",
+ "0.26409001"
+ ],
+ [
+ "6120.00",
+ "13.29320862"
+ ],
+ [
+ "6119.60",
+ "0.37500000"
+ ],
+ [
+ "6118.52",
+ "1.43615118"
+ ],
+ [
+ "6118.24",
+ "0.02000000"
+ ],
+ [
+ "6117.00",
+ "0.67338195"
+ ],
+ [
+ "6116.06",
+ "12.55000000"
+ ],
+ [
+ "6116.00",
+ "1.00000000"
+ ],
+ [
+ "6115.00",
+ "1.01232215"
+ ],
+ [
+ "6112.83",
+ "0.15000000"
+ ],
+ [
+ "6112.00",
+ "5.50437981"
+ ],
+ [
+ "6111.00",
+ "12.35169923"
+ ],
+ [
+ "6110.53",
+ "0.00185185"
+ ],
+ [
+ "6110.09",
+ "0.50000000"
+ ],
+ [
+ "6110.00",
+ "4.87497201"
+ ],
+ [
+ "6107.80",
+ "0.36651331"
+ ],
+ [
+ "6106.58",
+ "0.10000000"
+ ],
+ [
+ "6105.00",
+ "1.32437920"
+ ],
+ [
+ "6103.04",
+ "0.00200000"
+ ],
+ [
+ "6102.58",
+ "0.01800000"
+ ],
+ [
+ "6101.01",
+ "0.25000000"
+ ],
+ [
+ "6101.00",
+ "0.32781511"
+ ],
+ [
+ "6100.81",
+ "12.55000000"
+ ],
+ [
+ "6100.51",
+ "0.69946775"
+ ],
+ [
+ "6100.32",
+ "1.00000000"
+ ],
+ [
+ "6100.10",
+ "2.00000000"
+ ],
+ [
+ "6100.00",
+ "70.10057565"
+ ],
+ [
+ "6099.60",
+ "0.11400000"
+ ],
+ [
+ "6098.00",
+ "0.15000000"
+ ],
+ [
+ "6097.97",
+ "1.44099157"
+ ],
+ [
+ "6097.60",
+ "0.15000000"
+ ],
+ [
+ "6097.00",
+ "0.03000000"
+ ],
+ [
+ "6095.60",
+ "0.03000000"
+ ],
+ [
+ "6095.00",
+ "0.01000000"
+ ],
+ [
+ "6093.77",
+ "0.00500000"
+ ],
+ [
+ "6093.00",
+ "0.17000000"
+ ],
+ [
+ "6092.83",
+ "0.21500000"
+ ],
+ [
+ "6092.12",
+ "0.01000000"
+ ],
+ [
+ "6092.02",
+ "0.05000000"
+ ],
+ [
+ "6092.00",
+ "1.00000000"
+ ],
+ [
+ "6091.00",
+ "0.02000000"
+ ],
+ [
+ "6090.05",
+ "0.07000000"
+ ],
+ [
+ "6088.11",
+ "0.03308000"
+ ],
+ [
+ "6088.02",
+ "0.04500000"
+ ],
+ [
+ "6088.01",
+ "10.00000000"
+ ],
+ [
+ "6086.58",
+ "0.02000000"
+ ],
+ [
+ "6086.00",
+ "1.00000000"
+ ],
+ [
+ "6085.59",
+ "12.55000000"
+ ],
+ [
+ "6085.00",
+ "0.03900000"
+ ],
+ [
+ "6084.60",
+ "0.04338823"
+ ],
+ [
+ "6083.00",
+ "2.40522192"
+ ],
+ [
+ "6081.13",
+ "0.00100000"
+ ],
+ [
+ "6081.00",
+ "0.05430000"
+ ],
+ [
+ "6080.00",
+ "3.74750822"
+ ],
+ [
+ "6079.53",
+ "0.50000000"
+ ],
+ [
+ "6079.02",
+ "12.00000000"
+ ],
+ [
+ "6079.00",
+ "4.00400000"
+ ],
+ [
+ "6078.00",
+ "0.15000000"
+ ],
+ [
+ "6077.49",
+ "1.44584828"
+ ],
+ [
+ "6077.00",
+ "0.65000000"
+ ],
+ [
+ "6075.93",
+ "0.01500000"
+ ],
+ [
+ "6075.00",
+ "1.20000000"
+ ],
+ [
+ "6073.97",
+ "0.00291658"
+ ],
+ [
+ "6073.34",
+ "0.00300000"
+ ],
+ [
+ "6070.42",
+ "12.55000000"
+ ],
+ [
+ "6068.00",
+ "0.13200000"
+ ],
+ [
+ "6067.00",
+ "0.05000000"
+ ],
+ [
+ "6066.66",
+ "0.00400000"
+ ],
+ [
+ "6066.00",
+ "1.51000000"
+ ],
+ [
+ "6060.00",
+ "0.90083102"
+ ],
+ [
+ "6058.96",
+ "5.03027664"
+ ],
+ [
+ "6058.75",
+ "0.00200000"
+ ],
+ [
+ "6057.07",
+ "1.45072135"
+ ],
+ [
+ "6056.42",
+ "0.25317597"
+ ],
+ [
+ "6055.28",
+ "12.55000000"
+ ],
+ [
+ "6055.00",
+ "0.16571263"
+ ],
+ [
+ "6053.62",
+ "0.01000000"
+ ],
+ [
+ "6053.00",
+ "0.14440000"
+ ],
+ [
+ "6052.49",
+ "0.00082700"
+ ],
+ [
+ "6050.00",
+ "12.33311406"
+ ],
+ [
+ "6048.12",
+ "0.00500000"
+ ],
+ [
+ "6046.00",
+ "0.00430000"
+ ],
+ [
+ "6044.00",
+ "0.30000000"
+ ],
+ [
+ "6040.18",
+ "12.55000000"
+ ],
+ [
+ "6040.00",
+ "0.32000000"
+ ],
+ [
+ "6039.37",
+ "0.00411069"
+ ],
+ [
+ "6037.84",
+ "0.00132166"
+ ],
+ [
+ "6036.72",
+ "1.45561084"
+ ],
+ [
+ "6036.00",
+ "0.30400000"
+ ],
+ [
+ "6035.00",
+ "1.10025683"
+ ],
+ [
+ "6034.00",
+ "4.39000000"
+ ],
+ [
+ "6033.00",
+ "0.31981766"
+ ],
+ [
+ "6032.20",
+ "0.13000000"
+ ],
+ [
+ "6030.00",
+ "0.04883084"
+ ],
+ [
+ "6029.00",
+ "0.07940000"
+ ],
+ [
+ "6028.00",
+ "0.50000000"
+ ],
+ [
+ "6026.80",
+ "0.50000000"
+ ],
+ [
+ "6026.00",
+ "0.26400000"
+ ],
+ [
+ "6025.11",
+ "12.55000000"
+ ],
+ [
+ "6025.00",
+ "2.01000000"
+ ],
+ [
+ "6024.98",
+ "0.11687175"
+ ],
+ [
+ "6024.00",
+ "0.11400000"
+ ],
+ [
+ "6023.00",
+ "5.97028225"
+ ],
+ [
+ "6022.00",
+ "2.02827798"
+ ],
+ [
+ "6021.00",
+ "1.10530800"
+ ],
+ [
+ "6020.00",
+ "0.65655814"
+ ],
+ [
+ "6018.02",
+ "0.11000000"
+ ],
+ [
+ "6016.45",
+ "1.46051682"
+ ],
+ [
+ "6015.00",
+ "1.00000000"
+ ],
+ [
+ "6013.82",
+ "0.00140248"
+ ],
+ [
+ "6013.13",
+ "1.00000000"
+ ],
+ [
+ "6013.03",
+ "1.00000000"
+ ],
+ [
+ "6013.00",
+ "0.70000000"
+ ],
+ [
+ "6012.63",
+ "0.01389619"
+ ],
+ [
+ "6012.44",
+ "4.00000000"
+ ],
+ [
+ "6012.00",
+ "0.08320000"
+ ],
+ [
+ "6011.11",
+ "0.10340519"
+ ],
+ [
+ "6011.10",
+ "0.00500000"
+ ],
+ [
+ "6011.06",
+ "0.13920000"
+ ],
+ [
+ "6011.00",
+ "3.13316330"
+ ],
+ [
+ "6010.66",
+ "0.00840000"
+ ],
+ [
+ "6010.09",
+ "12.55000000"
+ ],
+ [
+ "6010.00",
+ "6.57955241"
+ ],
+ [
+ "6007.00",
+ "0.25891460"
+ ],
+ [
+ "6006.07",
+ "0.01000000"
+ ],
+ [
+ "6006.00",
+ "5.66958653"
+ ],
+ [
+ "6005.00",
+ "1.15000000"
+ ],
+ [
+ "6004.05",
+ "0.50000000"
+ ],
+ [
+ "6003.28",
+ "0.01499999"
+ ],
+ [
+ "6002.00",
+ "0.20000000"
+ ],
+ [
+ "6001.09",
+ "0.25811707"
+ ],
+ [
+ "6001.01",
+ "0.25000000"
+ ],
+ [
+ "6001.00",
+ "2.13687651"
+ ],
+ [
+ "6000.85",
+ "0.03000000"
+ ],
+ [
+ "6000.82",
+ "0.01500000"
+ ],
+ [
+ "6000.25",
+ "0.04522395"
+ ],
+ [
+ "6000.00",
+ "53.50397761"
+ ],
+ [
+ "5999.47",
+ "1.66843363"
+ ],
+ [
+ "5999.00",
+ "0.10500000"
+ ],
+ [
+ "5998.84",
+ "1.00000667"
+ ],
+ [
+ "5998.00",
+ "0.00400000"
+ ],
+ [
+ "5996.66",
+ "0.50000000"
+ ],
+ [
+ "5996.24",
+ "1.46543933"
+ ],
+ [
+ "5995.10",
+ "12.55000000"
+ ],
+ [
+ "5995.00",
+ "0.01200000"
+ ],
+ [
+ "5994.00",
+ "5.04878205"
+ ],
+ [
+ "5993.58",
+ "0.04200000"
+ ],
+ [
+ "5993.19",
+ "0.04172744"
+ ],
+ [
+ "5992.00",
+ "0.00300000"
+ ],
+ [
+ "5990.46",
+ "0.00203824"
+ ],
+ [
+ "5990.00",
+ "0.53000000"
+ ],
+ [
+ "5989.00",
+ "0.17700000"
+ ],
+ [
+ "5988.01",
+ "10.00000000"
+ ],
+ [
+ "5987.00",
+ "0.02000000"
+ ],
+ [
+ "5986.00",
+ "1.00000000"
+ ],
+ [
+ "5985.00",
+ "0.10580910"
+ ],
+ [
+ "5984.00",
+ "0.03204400"
+ ],
+ [
+ "5983.00",
+ "0.06000000"
+ ],
+ [
+ "5980.15",
+ "12.55000000"
+ ],
+ [
+ "5980.00",
+ "10.67313259"
+ ],
+ [
+ "5979.00",
+ "3.90000000"
+ ],
+ [
+ "5978.00",
+ "6.32277183"
+ ],
+ [
+ "5976.10",
+ "1.47037843"
+ ],
+ [
+ "5972.88",
+ "2.00000000"
+ ],
+ [
+ "5972.81",
+ "0.03902015"
+ ],
+ [
+ "5972.44",
+ "0.25000000"
+ ],
+ [
+ "5972.00",
+ "0.10000000"
+ ],
+ [
+ "5970.13",
+ "0.00500000"
+ ],
+ [
+ "5970.00",
+ "0.57000000"
+ ],
+ [
+ "5969.00",
+ "0.19740000"
+ ],
+ [
+ "5968.42",
+ "0.01296297"
+ ],
+ [
+ "5968.00",
+ "0.38000000"
+ ],
+ [
+ "5966.67",
+ "0.50000000"
+ ],
+ [
+ "5966.60",
+ "0.50540000"
+ ],
+ [
+ "5966.00",
+ "0.25860000"
+ ],
+ [
+ "5965.24",
+ "12.57800000"
+ ],
+ [
+ "5964.00",
+ "0.30000000"
+ ],
+ [
+ "5963.00",
+ "2.00591658"
+ ],
+ [
+ "5962.96",
+ "17.00000000"
+ ],
+ [
+ "5962.00",
+ "0.15000000"
+ ],
+ [
+ "5961.01",
+ "3.68142867"
+ ],
+ [
+ "5960.00",
+ "18.40560318"
+ ],
+ [
+ "5959.83",
+ "0.21400000"
+ ],
+ [
+ "5959.00",
+ "0.00600000"
+ ],
+ [
+ "5956.02",
+ "1.47533418"
+ ],
+ [
+ "5956.00",
+ "0.06000000"
+ ],
+ [
+ "5955.00",
+ "0.16790925"
+ ],
+ [
+ "5953.58",
+ "0.14000000"
+ ],
+ [
+ "5953.00",
+ "0.00383504"
+ ],
+ [
+ "5952.55",
+ "0.00500000"
+ ],
+ [
+ "5952.49",
+ "0.00084100"
+ ],
+ [
+ "5951.00",
+ "0.30242500"
+ ],
+ [
+ "5950.36",
+ "12.55000000"
+ ],
+ [
+ "5950.00",
+ "10.32756975"
+ ],
+ [
+ "5949.97",
+ "0.02000000"
+ ],
+ [
+ "5947.37",
+ "0.00220000"
+ ],
+ [
+ "5947.00",
+ "0.55420000"
+ ],
+ [
+ "5945.58",
+ "0.02520000"
+ ],
+ [
+ "5940.00",
+ "0.32000000"
+ ],
+ [
+ "5936.83",
+ "0.50000000"
+ ],
+ [
+ "5936.49",
+ "0.00500000"
+ ],
+ [
+ "5936.01",
+ "1.48030663"
+ ],
+ [
+ "5936.00",
+ "0.23000000"
+ ],
+ [
+ "5935.52",
+ "12.55000000"
+ ],
+ [
+ "5935.00",
+ "0.08400000"
+ ],
+ [
+ "5934.00",
+ "0.00500000"
+ ],
+ [
+ "5932.90",
+ "0.00111813"
+ ],
+ [
+ "5930.00",
+ "0.40000000"
+ ],
+ [
+ "5928.00",
+ "1.00000000"
+ ],
+ [
+ "5927.29",
+ "0.01000000"
+ ],
+ [
+ "5927.00",
+ "0.23000000"
+ ],
+ [
+ "5926.60",
+ "0.15800000"
+ ],
+ [
+ "5926.00",
+ "0.21000000"
+ ],
+ [
+ "5925.00",
+ "1.71000000"
+ ],
+ [
+ "5924.00",
+ "0.04200000"
+ ],
+ [
+ "5923.23",
+ "3.58179405"
+ ],
+ [
+ "5923.00",
+ "0.12600000"
+ ],
+ [
+ "5920.72",
+ "12.55000000"
+ ],
+ [
+ "5920.60",
+ "0.19800000"
+ ],
+ [
+ "5920.00",
+ "0.48190000"
+ ],
+ [
+ "5919.83",
+ "0.27260000"
+ ],
+ [
+ "5919.12",
+ "0.01400000"
+ ],
+ [
+ "5919.02",
+ "0.05800000"
+ ],
+ [
+ "5919.00",
+ "0.05100000"
+ ],
+ [
+ "5918.60",
+ "0.04200000"
+ ],
+ [
+ "5917.05",
+ "0.09800000"
+ ],
+ [
+ "5916.07",
+ "1.48529584"
+ ],
+ [
+ "5916.00",
+ "0.75679090"
+ ],
+ [
+ "5915.02",
+ "0.06120000"
+ ],
+ [
+ "5914.00",
+ "2.00000000"
+ ],
+ [
+ "5913.58",
+ "0.02800000"
+ ],
+ [
+ "5911.10",
+ "0.00500000"
+ ],
+ [
+ "5911.00",
+ "0.08400000"
+ ],
+ [
+ "5910.00",
+ "0.50103000"
+ ],
+ [
+ "5907.14",
+ "0.50000000"
+ ],
+ [
+ "5905.96",
+ "12.55000000"
+ ],
+ [
+ "5905.00",
+ "1.00000000"
+ ],
+ [
+ "5903.00",
+ "0.61200000"
+ ],
+ [
+ "5902.93",
+ "0.02100000"
+ ],
+ [
+ "5902.02",
+ "0.10000000"
+ ],
+ [
+ "5901.00",
+ "0.00500000"
+ ],
+ [
+ "5900.00",
+ "5.44288609"
+ ],
+ [
+ "5899.00",
+ "20.96111544"
+ ],
+ [
+ "5896.29",
+ "0.01000000"
+ ],
+ [
+ "5896.20",
+ "1.49030186"
+ ],
+ [
+ "5894.00",
+ "0.06300000"
+ ],
+ [
+ "5892.00",
+ "0.92400712"
+ ],
+ [
+ "5891.61",
+ "4.52083217"
+ ],
+ [
+ "5891.53",
+ "0.60753319"
+ ],
+ [
+ "5891.23",
+ "12.55000000"
+ ],
+ [
+ "5890.00",
+ "0.40000000"
+ ],
+ [
+ "5888.00",
+ "2.91939707"
+ ],
+ [
+ "5887.28",
+ "1.63737000"
+ ],
+ [
+ "5886.88",
+ "0.50000000"
+ ],
+ [
+ "5886.00",
+ "1.11044342"
+ ],
+ [
+ "5884.21",
+ "0.00207215"
+ ],
+ [
+ "5883.00",
+ "0.02000000"
+ ],
+ [
+ "5882.00",
+ "0.08400000"
+ ],
+ [
+ "5880.00",
+ "0.46488095"
+ ],
+ [
+ "5879.97",
+ "0.05000000"
+ ],
+ [
+ "5879.50",
+ "7.00000000"
+ ],
+ [
+ "5879.00",
+ "1.00000000"
+ ],
+ [
+ "5878.00",
+ "0.20000000"
+ ],
+ [
+ "5877.60",
+ "0.01830000"
+ ],
+ [
+ "5877.10",
+ "0.10800000"
+ ],
+ [
+ "5876.94",
+ "0.00500000"
+ ],
+ [
+ "5876.54",
+ "12.55000000"
+ ],
+ [
+ "5876.40",
+ "1.49532476"
+ ],
+ [
+ "5876.00",
+ "0.04200000"
+ ],
+ [
+ "5875.00",
+ "0.50000000"
+ ],
+ [
+ "5873.00",
+ "0.09604631"
+ ],
+ [
+ "5872.95",
+ "0.00914611"
+ ],
+ [
+ "5872.88",
+ "3.00000000"
+ ],
+ [
+ "5872.00",
+ "0.30000000"
+ ],
+ [
+ "5870.00",
+ "0.47030000"
+ ],
+ [
+ "5866.00",
+ "0.25000000"
+ ],
+ [
+ "5865.57",
+ "0.00510000"
+ ],
+ [
+ "5862.00",
+ "0.07800000"
+ ],
+ [
+ "5861.88",
+ "12.55000000"
+ ],
+ [
+ "5861.00",
+ "0.04013650"
+ ],
+ [
+ "5860.85",
+ "0.01000000"
+ ],
+ [
+ "5860.58",
+ "0.05400000"
+ ],
+ [
+ "5860.00",
+ "0.65621672"
+ ],
+ [
+ "5858.00",
+ "1.00000000"
+ ],
+ [
+ "5856.66",
+ "1.50036459"
+ ],
+ [
+ "5855.00",
+ "1.34005038"
+ ],
+ [
+ "5852.00",
+ "0.21594000"
+ ],
+ [
+ "5851.06",
+ "0.14300000"
+ ],
+ [
+ "5851.00",
+ "0.05000000"
+ ],
+ [
+ "5850.00",
+ "10.85557607"
+ ],
+ [
+ "5848.21",
+ "0.50000000"
+ ],
+ [
+ "5847.26",
+ "12.55000000"
+ ],
+ [
+ "5847.00",
+ "0.05000000"
+ ],
+ [
+ "5845.39",
+ "0.69232591"
+ ],
+ [
+ "5844.90",
+ "0.01000000"
+ ],
+ [
+ "5844.00",
+ "0.38576830"
+ ],
+ [
+ "5842.71",
+ "0.00500000"
+ ],
+ [
+ "5840.00",
+ "0.32000000"
+ ],
+ [
+ "5837.00",
+ "0.19000000"
+ ],
+ [
+ "5836.98",
+ "1.50542140"
+ ],
+ [
+ "5835.00",
+ "0.14000000"
+ ],
+ [
+ "5833.33",
+ "0.40000000"
+ ],
+ [
+ "5832.81",
+ "15.00000000"
+ ],
+ [
+ "5832.80",
+ "0.42000000"
+ ],
+ [
+ "5832.68",
+ "12.55000000"
+ ],
+ [
+ "5831.03",
+ "0.08500000"
+ ],
+ [
+ "5830.00",
+ "0.40000000"
+ ],
+ [
+ "5828.42",
+ "0.01499999"
+ ],
+ [
+ "5827.00",
+ "0.01000000"
+ ],
+ [
+ "5825.00",
+ "2.25000000"
+ ],
+ [
+ "5824.52",
+ "0.01000000"
+ ],
+ [
+ "5824.02",
+ "0.10000000"
+ ],
+ [
+ "5823.00",
+ "0.12000000"
+ ],
+ [
+ "5822.00",
+ "1.01710000"
+ ],
+ [
+ "5820.00",
+ "8.62482852"
+ ],
+ [
+ "5818.14",
+ "12.55000000"
+ ],
+ [
+ "5818.00",
+ "0.05200000"
+ ],
+ [
+ "5817.38",
+ "1.51049526"
+ ],
+ [
+ "5815.57",
+ "0.00520000"
+ ],
+ [
+ "5815.00",
+ "0.20000000"
+ ],
+ [
+ "5813.97",
+ "0.01020793"
+ ],
+ [
+ "5813.60",
+ "0.63580000"
+ ],
+ [
+ "5813.18",
+ "0.50000000"
+ ],
+ [
+ "5813.03",
+ "2.00000000"
+ ],
+ [
+ "5812.24",
+ "0.03600000"
+ ],
+ [
+ "5812.10",
+ "0.14000000"
+ ],
+ [
+ "5811.00",
+ "0.34000000"
+ ],
+ [
+ "5810.00",
+ "3.30758044"
+ ],
+ [
+ "5806.83",
+ "0.27800000"
+ ],
+ [
+ "5805.56",
+ "0.00655182"
+ ],
+ [
+ "5805.10",
+ "0.60000000"
+ ],
+ [
+ "5805.00",
+ "1.24711628"
+ ],
+ [
+ "5804.00",
+ "0.10000000"
+ ],
+ [
+ "5803.63",
+ "12.55000000"
+ ],
+ [
+ "5801.01",
+ "0.25000000"
+ ],
+ [
+ "5801.00",
+ "2.53000000"
+ ],
+ [
+ "5800.58",
+ "0.18000000"
+ ],
+ [
+ "5800.07",
+ "1.22379730"
+ ],
+ [
+ "5800.00",
+ "63.76015897"
+ ],
+ [
+ "5797.84",
+ "1.51558622"
+ ],
+ [
+ "5796.00",
+ "0.08360000"
+ ],
+ [
+ "5793.00",
+ "0.42200000"
+ ],
+ [
+ "5790.00",
+ "0.92584100"
+ ],
+ [
+ "5789.16",
+ "12.55000000"
+ ],
+ [
+ "5788.77",
+ "0.03700000"
+ ],
+ [
+ "5788.58",
+ "0.03240000"
+ ],
+ [
+ "5786.67",
+ "0.01248078"
+ ],
+ [
+ "5784.11",
+ "0.50000000"
+ ],
+ [
+ "5783.13",
+ "0.07297907"
+ ],
+ [
+ "5781.00",
+ "0.12600000"
+ ],
+ [
+ "5780.00",
+ "1.13343080"
+ ],
+ [
+ "5779.00",
+ "0.02000000"
+ ],
+ [
+ "5778.95",
+ "0.01411656"
+ ],
+ [
+ "5778.36",
+ "1.52069433"
+ ],
+ [
+ "5778.00",
+ "0.25000000"
+ ],
+ [
+ "5777.00",
+ "0.20000000"
+ ],
+ [
+ "5775.00",
+ "1.26295276"
+ ],
+ [
+ "5774.72",
+ "12.55000000"
+ ],
+ [
+ "5770.00",
+ "1.50000000"
+ ],
+ [
+ "5768.88",
+ "0.25000000"
+ ],
+ [
+ "5768.00",
+ "0.54000000"
+ ],
+ [
+ "5767.00",
+ "0.00699323"
+ ],
+ [
+ "5766.00",
+ "0.11500000"
+ ],
+ [
+ "5765.00",
+ "0.20000000"
+ ],
+ [
+ "5762.83",
+ "0.01000000"
+ ],
+ [
+ "5761.00",
+ "0.85534091"
+ ],
+ [
+ "5760.32",
+ "12.55000000"
+ ],
+ [
+ "5760.00",
+ "0.82000000"
+ ],
+ [
+ "5758.95",
+ "1.52581966"
+ ],
+ [
+ "5757.33",
+ "0.01028000"
+ ],
+ [
+ "5757.00",
+ "7.94800000"
+ ],
+ [
+ "5756.00",
+ "0.22051601"
+ ],
+ [
+ "5755.18",
+ "0.50000000"
+ ],
+ [
+ "5755.00",
+ "0.37414769"
+ ],
+ [
+ "5754.00",
+ "2.92357489"
+ ],
+ [
+ "5753.60",
+ "0.20200000"
+ ],
+ [
+ "5752.00",
+ "0.27000000"
+ ],
+ [
+ "5751.00",
+ "0.05400000"
+ ],
+ [
+ "5750.94",
+ "0.01000000"
+ ],
+ [
+ "5750.00",
+ "22.97311571"
+ ],
+ [
+ "5749.00",
+ "0.00671855"
+ ],
+ [
+ "5746.83",
+ "0.33020000"
+ ],
+ [
+ "5746.12",
+ "0.01800000"
+ ],
+ [
+ "5746.02",
+ "0.06600000"
+ ],
+ [
+ "5745.95",
+ "12.55000000"
+ ],
+ [
+ "5744.05",
+ "0.12600000"
+ ],
+ [
+ "5743.60",
+ "0.24600000"
+ ],
+ [
+ "5742.02",
+ "0.07740000"
+ ],
+ [
+ "5741.60",
+ "0.05400000"
+ ],
+ [
+ "5740.58",
+ "0.03600000"
+ ],
+ [
+ "5740.00",
+ "0.32000000"
+ ],
+ [
+ "5739.61",
+ "1.53096227"
+ ],
+ [
+ "5737.70",
+ "10.00000000"
+ ],
+ [
+ "5735.51",
+ "0.00510000"
+ ],
+ [
+ "5735.00",
+ "0.55000000"
+ ],
+ [
+ "5733.00",
+ "0.28280000"
+ ],
+ [
+ "5731.62",
+ "12.55000000"
+ ],
+ [
+ "5731.00",
+ "0.34000000"
+ ],
+ [
+ "5730.00",
+ "2.51455497"
+ ],
+ [
+ "5729.97",
+ "0.05000000"
+ ],
+ [
+ "5729.93",
+ "0.02700000"
+ ],
+ [
+ "5729.00",
+ "0.03000000"
+ ],
+ [
+ "5727.58",
+ "0.06600000"
+ ],
+ [
+ "5726.40",
+ "0.50000000"
+ ],
+ [
+ "5725.00",
+ "2.00000000"
+ ],
+ [
+ "5723.00",
+ "0.06800000"
+ ],
+ [
+ "5720.00",
+ "0.32000000"
+ ],
+ [
+ "5719.19",
+ "0.00200000"
+ ],
+ [
+ "5717.33",
+ "12.55000000"
+ ],
+ [
+ "5717.00",
+ "0.05300000"
+ ],
+ [
+ "5715.25",
+ "0.08159041"
+ ],
+ [
+ "5715.00",
+ "0.25000000"
+ ],
+ [
+ "5714.40",
+ "0.44220018"
+ ],
+ [
+ "5714.00",
+ "0.60660000"
+ ],
+ [
+ "5711.06",
+ "0.14853459"
+ ],
+ [
+ "5710.00",
+ "0.40106000"
+ ],
+ [
+ "5707.00",
+ "0.03469423"
+ ],
+ [
+ "5705.63",
+ "0.25000000"
+ ],
+ [
+ "5703.07",
+ "12.55000000"
+ ],
+ [
+ "5703.00",
+ "0.26200000"
+ ],
+ [
+ "5702.00",
+ "0.09200000"
+ ],
+ [
+ "5700.40",
+ "0.50000000"
+ ],
+ [
+ "5700.00",
+ "7.73687919"
+ ],
+ [
+ "5699.57",
+ "0.00611888"
+ ],
+ [
+ "5699.00",
+ "0.00430000"
+ ],
+ [
+ "5697.76",
+ "0.50000000"
+ ],
+ [
+ "5694.35",
+ "0.00500000"
+ ],
+ [
+ "5694.00",
+ "0.25000000"
+ ],
+ [
+ "5693.00",
+ "0.23000000"
+ ],
+ [
+ "5692.00",
+ "0.10400000"
+ ],
+ [
+ "5691.00",
+ "0.42000000"
+ ],
+ [
+ "5690.00",
+ "0.53800000"
+ ],
+ [
+ "5689.89",
+ "0.01862000"
+ ],
+ [
+ "5689.30",
+ "0.15756771"
+ ],
+ [
+ "5689.00",
+ "2.90552470"
+ ],
+ [
+ "5688.85",
+ "12.55000000"
+ ],
+ [
+ "5685.00",
+ "2.32934388"
+ ],
+ [
+ "5684.00",
+ "0.02120381"
+ ],
+ [
+ "5682.95",
+ "0.05380548"
+ ],
+ [
+ "5682.00",
+ "1.40190513"
+ ],
+ [
+ "5681.10",
+ "1.00500000"
+ ],
+ [
+ "5680.00",
+ "5.25748063"
+ ],
+ [
+ "5678.00",
+ "0.09200000"
+ ],
+ [
+ "5677.38",
+ "0.16174724"
+ ],
+ [
+ "5675.00",
+ "0.02000000"
+ ],
+ [
+ "5674.66",
+ "12.55000000"
+ ],
+ [
+ "5672.57",
+ "0.00510000"
+ ],
+ [
+ "5671.00",
+ "0.05000000"
+ ],
+ [
+ "5670.00",
+ "1.06600000"
+ ],
+ [
+ "5669.27",
+ "0.50000000"
+ ],
+ [
+ "5667.00",
+ "5.20000000"
+ ],
+ [
+ "5666.66",
+ "23.43811155"
+ ],
+ [
+ "5664.31",
+ "0.84781098"
+ ],
+ [
+ "5661.00",
+ "0.06900000"
+ ],
+ [
+ "5660.60",
+ "0.76620000"
+ ],
+ [
+ "5660.51",
+ "12.55000000"
+ ],
+ [
+ "5660.00",
+ "0.32000000"
+ ],
+ [
+ "5659.24",
+ "0.04400000"
+ ],
+ [
+ "5658.66",
+ "0.01499999"
+ ],
+ [
+ "5657.89",
+ "0.00231008"
+ ],
+ [
+ "5657.00",
+ "0.12297861"
+ ],
+ [
+ "5656.00",
+ "0.08422029"
+ ],
+ [
+ "5655.00",
+ "0.00500000"
+ ],
+ [
+ "5654.77",
+ "0.10000000"
+ ],
+ [
+ "5653.86",
+ "0.22197200"
+ ],
+ [
+ "5653.83",
+ "0.34200000"
+ ],
+ [
+ "5653.00",
+ "0.12500000"
+ ],
+ [
+ "5652.49",
+ "0.00088600"
+ ],
+ [
+ "5650.00",
+ "38.81197522"
+ ],
+ [
+ "5649.00",
+ "0.09200000"
+ ],
+ [
+ "5647.58",
+ "0.22000000"
+ ],
+ [
+ "5646.40",
+ "12.55000000"
+ ],
+ [
+ "5641.00",
+ "1.00000000"
+ ],
+ [
+ "5640.92",
+ "0.50000000"
+ ],
+ [
+ "5640.00",
+ "0.74800000"
+ ],
+ [
+ "5639.00",
+ "0.34000000"
+ ],
+ [
+ "5637.74",
+ "0.01000000"
+ ],
+ [
+ "5636.88",
+ "0.10000000"
+ ],
+ [
+ "5634.77",
+ "0.10000000"
+ ],
+ [
+ "5633.56",
+ "0.00200000"
+ ],
+ [
+ "5632.32",
+ "12.55000000"
+ ],
+ [
+ "5632.00",
+ "0.13602095"
+ ],
+ [
+ "5631.66",
+ "5.08075638"
+ ],
+ [
+ "5631.58",
+ "0.03960000"
+ ],
+ [
+ "5631.00",
+ "1.00000000"
+ ],
+ [
+ "5630.00",
+ "1.67196447"
+ ],
+ [
+ "5627.68",
+ "0.09999369"
+ ],
+ [
+ "5626.36",
+ "18.65000000"
+ ],
+ [
+ "5625.00",
+ "1.10000000"
+ ],
+ [
+ "5623.86",
+ "3.12404400"
+ ],
+ [
+ "5622.00",
+ "0.04000000"
+ ],
+ [
+ "5621.52",
+ "0.00510000"
+ ],
+ [
+ "5621.00",
+ "13.57922523"
+ ],
+ [
+ "5620.00",
+ "7.63335765"
+ ],
+ [
+ "5619.00",
+ "0.05100000"
+ ],
+ [
+ "5618.27",
+ "12.55000000"
+ ],
+ [
+ "5617.00",
+ "4.06747819"
+ ],
+ [
+ "5616.13",
+ "0.25000000"
+ ],
+ [
+ "5616.00",
+ "0.05400000"
+ ],
+ [
+ "5615.01",
+ "0.08900000"
+ ],
+ [
+ "5614.77",
+ "0.10000000"
+ ],
+ [
+ "5614.00",
+ "0.01000000"
+ ],
+ [
+ "5613.00",
+ "0.10000000"
+ ],
+ [
+ "5612.71",
+ "0.50000000"
+ ],
+ [
+ "5612.00",
+ "1.03560000"
+ ],
+ [
+ "5610.00",
+ "21.48083895"
+ ],
+ [
+ "5606.00",
+ "0.01790000"
+ ],
+ [
+ "5604.26",
+ "12.55000000"
+ ],
+ [
+ "5602.00",
+ "0.14800000"
+ ],
+ [
+ "5601.08",
+ "0.02526477"
+ ],
+ [
+ "5601.00",
+ "0.63000000"
+ ],
+ [
+ "5600.52",
+ "0.50000000"
+ ],
+ [
+ "5600.01",
+ "0.00700000"
+ ],
+ [
+ "5600.00",
+ "15.93889103"
+ ],
+ [
+ "5594.77",
+ "0.10000000"
+ ],
+ [
+ "5594.58",
+ "0.07800000"
+ ],
+ [
+ "5591.65",
+ "0.01000000"
+ ],
+ [
+ "5590.28",
+ "12.55000000"
+ ],
+ [
+ "5590.00",
+ "0.40000000"
+ ],
+ [
+ "5589.47",
+ "0.01534842"
+ ],
+ [
+ "5589.00",
+ "0.08600000"
+ ],
+ [
+ "5587.44",
+ "0.00500000"
+ ],
+ [
+ "5587.00",
+ "0.05280000"
+ ],
+ [
+ "5584.64",
+ "0.50000000"
+ ],
+ [
+ "5583.83",
+ "0.02772218"
+ ],
+ [
+ "5582.95",
+ "0.08397997"
+ ],
+ [
+ "5580.60",
+ "0.24600000"
+ ],
+ [
+ "5580.00",
+ "0.32000000"
+ ],
+ [
+ "5579.00",
+ "33.07607815"
+ ],
+ [
+ "5578.00",
+ "0.06600000"
+ ],
+ [
+ "5577.00",
+ "74.09169176"
+ ],
+ [
+ "5576.34",
+ "12.55000000"
+ ],
+ [
+ "5575.39",
+ "74.11308805"
+ ],
+ [
+ "5573.83",
+ "0.38780000"
+ ],
+ [
+ "5573.12",
+ "0.02200000"
+ ],
+ [
+ "5573.02",
+ "0.07400000"
+ ],
+ [
+ "5573.00",
+ "60.53466355"
+ ],
+ [
+ "5572.00",
+ "71.00000000"
+ ],
+ [
+ "5571.05",
+ "0.15400000"
+ ],
+ [
+ "5571.00",
+ "71.44000000"
+ ],
+ [
+ "5570.57",
+ "0.00510000"
+ ],
+ [
+ "5570.00",
+ "0.40000000"
+ ],
+ [
+ "5569.02",
+ "0.09360000"
+ ],
+ [
+ "5567.58",
+ "0.04400000"
+ ],
+ [
+ "5566.60",
+ "0.29400000"
+ ],
+ [
+ "5566.03",
+ "2.00000000"
+ ],
+ [
+ "5564.60",
+ "0.06600000"
+ ],
+ [
+ "5563.00",
+ "0.08780000"
+ ],
+ [
+ "5562.44",
+ "0.10538055"
+ ],
+ [
+ "5561.45",
+ "0.10011597"
+ ],
+ [
+ "5561.00",
+ "1.00000000"
+ ],
+ [
+ "5560.00",
+ "0.73300000"
+ ],
+ [
+ "5558.99",
+ "0.02142115"
+ ],
+ [
+ "5557.00",
+ "0.01000000"
+ ],
+ [
+ "5556.93",
+ "0.03300000"
+ ],
+ [
+ "5556.71",
+ "0.50000000"
+ ],
+ [
+ "5556.00",
+ "0.29200000"
+ ],
+ [
+ "5555.55",
+ "0.25047205"
+ ],
+ [
+ "5555.30",
+ "0.50000000"
+ ],
+ [
+ "5555.00",
+ "3.64573366"
+ ],
+ [
+ "5553.00",
+ "0.40000000"
+ ],
+ [
+ "5552.49",
+ "0.00090200"
+ ],
+ [
+ "5551.11",
+ "0.40301850"
+ ],
+ [
+ "5551.06",
+ "0.16657000"
+ ],
+ [
+ "5551.00",
+ "74.63708160"
+ ],
+ [
+ "5550.00",
+ "2.96581803"
+ ],
+ [
+ "5549.00",
+ "0.00500000"
+ ],
+ [
+ "5548.57",
+ "12.55000000"
+ ],
+ [
+ "5547.00",
+ "0.44000000"
+ ],
+ [
+ "5544.00",
+ "4.97645202"
+ ],
+ [
+ "5540.00",
+ "0.20000000"
+ ],
+ [
+ "5539.39",
+ "17.95031763"
+ ],
+ [
+ "5538.00",
+ "0.13800000"
+ ],
+ [
+ "5535.00",
+ "0.58000000"
+ ],
+ [
+ "5534.73",
+ "12.55000000"
+ ],
+ [
+ "5533.00",
+ "0.12930000"
+ ],
+ [
+ "5532.89",
+ "0.00092899"
+ ],
+ [
+ "5532.11",
+ "39.91610434"
+ ],
+ [
+ "5532.00",
+ "0.12328000"
+ ],
+ [
+ "5531.30",
+ "0.00510000"
+ ],
+ [
+ "5530.00",
+ "0.01205786"
+ ],
+ [
+ "5528.09",
+ "0.50000000"
+ ],
+ [
+ "5528.00",
+ "0.17200000"
+ ],
+ [
+ "5526.34",
+ "0.50000000"
+ ],
+ [
+ "5524.00",
+ "0.48600000"
+ ],
+ [
+ "5523.00",
+ "0.07500000"
+ ],
+ [
+ "5520.93",
+ "12.55000000"
+ ],
+ [
+ "5520.00",
+ "1.34334057"
+ ],
+ [
+ "5517.00",
+ "0.07600000"
+ ],
+ [
+ "5515.00",
+ "1.86055485"
+ ],
+ [
+ "5510.00",
+ "0.26504000"
+ ],
+ [
+ "5507.60",
+ "0.89660000"
+ ],
+ [
+ "5507.16",
+ "12.55000000"
+ ],
+ [
+ "5506.24",
+ "0.05200000"
+ ],
+ [
+ "5505.00",
+ "2.33264214"
+ ],
+ [
+ "5501.00",
+ "0.27000000"
+ ],
+ [
+ "5500.83",
+ "0.40600000"
+ ],
+ [
+ "5500.00",
+ "61.66532567"
+ ],
+ [
+ "5499.99",
+ "0.03650000"
+ ],
+ [
+ "5498.70",
+ "0.50000000"
+ ],
+ [
+ "5498.00",
+ "0.38000000"
+ ],
+ [
+ "5494.58",
+ "0.26000000"
+ ],
+ [
+ "5493.85",
+ "0.01499999"
+ ],
+ [
+ "5493.43",
+ "12.55000000"
+ ],
+ [
+ "5490.00",
+ "0.07600000"
+ ],
+ [
+ "5483.27",
+ "0.00100000"
+ ],
+ [
+ "5482.51",
+ "0.00520000"
+ ],
+ [
+ "5481.00",
+ "0.65900000"
+ ],
+ [
+ "5479.73",
+ "12.55000000"
+ ],
+ [
+ "5478.00",
+ "7.00000000"
+ ],
+ [
+ "5475.00",
+ "0.50000000"
+ ],
+ [
+ "5474.58",
+ "0.04680000"
+ ],
+ [
+ "5471.20",
+ "0.50000000"
+ ],
+ [
+ "5471.00",
+ "0.87653720"
+ ],
+ [
+ "5470.00",
+ "0.38331353"
+ ],
+ [
+ "5469.05",
+ "0.10180652"
+ ],
+ [
+ "5469.00",
+ "0.10000000"
+ ],
+ [
+ "5467.00",
+ "0.02000000"
+ ],
+ [
+ "5466.12",
+ "0.00500000"
+ ],
+ [
+ "5466.06",
+ "12.55000000"
+ ],
+ [
+ "5466.00",
+ "0.17096597"
+ ],
+ [
+ "5465.73",
+ "0.01606922"
+ ],
+ [
+ "5462.00",
+ "0.01100000"
+ ],
+ [
+ "5461.58",
+ "0.09000000"
+ ],
+ [
+ "5461.00",
+ "0.27000000"
+ ],
+ [
+ "5457.00",
+ "0.16000000"
+ ],
+ [
+ "5453.00",
+ "0.01000000"
+ ],
+ [
+ "5452.97",
+ "0.14526395"
+ ],
+ [
+ "5452.43",
+ "12.55000000"
+ ],
+ [
+ "5451.09",
+ "0.06809509"
+ ],
+ [
+ "5451.00",
+ "1.00000000"
+ ],
+ [
+ "5450.00",
+ "7.94880035"
+ ],
+ [
+ "5446.00",
+ "0.21640000"
+ ],
+ [
+ "5444.44",
+ "10.00000000"
+ ],
+ [
+ "5442.90",
+ "0.00385107"
+ ],
+ [
+ "5440.67",
+ "0.50000000"
+ ],
+ [
+ "5440.00",
+ "0.36613800"
+ ],
+ [
+ "5439.00",
+ "0.07466446"
+ ],
+ [
+ "5438.83",
+ "12.55000000"
+ ],
+ [
+ "5437.00",
+ "0.72000000"
+ ],
+ [
+ "5435.30",
+ "1.04983441"
+ ],
+ [
+ "5431.58",
+ "0.00256783"
+ ],
+ [
+ "5430.54",
+ "0.00510000"
+ ],
+ [
+ "5430.17",
+ "0.25376063"
+ ],
+ [
+ "5430.00",
+ "2.71866114"
+ ],
+ [
+ "5428.00",
+ "0.07500000"
+ ],
+ [
+ "5425.27",
+ "12.55000000"
+ ],
+ [
+ "5425.00",
+ "1.10000000"
+ ],
+ [
+ "5419.25",
+ "0.14762190"
+ ],
+ [
+ "5417.00",
+ "1.64500000"
+ ],
+ [
+ "5416.62",
+ "0.01000000"
+ ],
+ [
+ "5414.00",
+ "0.05600000"
+ ],
+ [
+ "5413.46",
+ "0.50000000"
+ ],
+ [
+ "5413.33",
+ "0.01498360"
+ ],
+ [
+ "5411.74",
+ "12.55000000"
+ ],
+ [
+ "5411.06",
+ "0.17088000"
+ ],
+ [
+ "5410.00",
+ "0.37854068"
+ ],
+ [
+ "5407.99",
+ "0.06688130"
+ ],
+ [
+ "5407.60",
+ "0.29000000"
+ ],
+ [
+ "5407.00",
+ "0.01000000"
+ ],
+ [
+ "5406.00",
+ "2.82462865"
+ ],
+ [
+ "5405.00",
+ "0.31997039"
+ ],
+ [
+ "5404.54",
+ "0.50000000"
+ ],
+ [
+ "5404.27",
+ "0.23077509"
+ ],
+ [
+ "5404.00",
+ "0.06000000"
+ ],
+ [
+ "5402.10",
+ "0.17615556"
+ ],
+ [
+ "5401.00",
+ "0.27755600"
+ ],
+ [
+ "5400.83",
+ "0.44540000"
+ ],
+ [
+ "5400.12",
+ "0.02600000"
+ ],
+ [
+ "5400.02",
+ "0.08200000"
+ ],
+ [
+ "5400.00",
+ "19.41840245"
+ ],
+ [
+ "5398.24",
+ "12.55000000"
+ ],
+ [
+ "5398.05",
+ "0.18200000"
+ ],
+ [
+ "5396.02",
+ "0.10980000"
+ ],
+ [
+ "5394.58",
+ "0.05200000"
+ ],
+ [
+ "5389.60",
+ "0.34200000"
+ ],
+ [
+ "5389.00",
+ "0.00716830"
+ ],
+ [
+ "5387.60",
+ "0.07800000"
+ ],
+ [
+ "5386.39",
+ "0.50000000"
+ ],
+ [
+ "5384.78",
+ "12.55000000"
+ ],
+ [
+ "5383.93",
+ "0.03900000"
+ ],
+ [
+ "5383.14",
+ "0.01000000"
+ ],
+ [
+ "5383.00",
+ "0.08400000"
+ ],
+ [
+ "5380.00",
+ "2.00000000"
+ ],
+ [
+ "5372.00",
+ "0.19045041"
+ ],
+ [
+ "5371.35",
+ "12.55000000"
+ ],
+ [
+ "5370.74",
+ "2.00000000"
+ ],
+ [
+ "5370.00",
+ "0.03106703"
+ ],
+ [
+ "5369.00",
+ "0.15600000"
+ ],
+ [
+ "5366.00",
+ "3.02708535"
+ ],
+ [
+ "5363.00",
+ "0.01000000"
+ ],
+ [
+ "5362.07",
+ "0.00520000"
+ ],
+ [
+ "5360.10",
+ "0.03000000"
+ ],
+ [
+ "5359.45",
+ "0.50000000"
+ ],
+ [
+ "5358.13",
+ "0.09688135"
+ ],
+ [
+ "5357.96",
+ "12.55000000"
+ ],
+ [
+ "5354.60",
+ "1.02700000"
+ ],
+ [
+ "5354.00",
+ "0.05700000"
+ ],
+ [
+ "5353.24",
+ "0.06000000"
+ ],
+ [
+ "5351.11",
+ "0.00423589"
+ ],
+ [
+ "5350.00",
+ "1.50148039"
+ ],
+ [
+ "5348.68",
+ "0.50000000"
+ ],
+ [
+ "5347.83",
+ "0.47000000"
+ ],
+ [
+ "5347.63",
+ "0.25000000"
+ ],
+ [
+ "5344.60",
+ "12.55000000"
+ ],
+ [
+ "5341.58",
+ "0.30000000"
+ ],
+ [
+ "5340.48",
+ "0.00521114"
+ ],
+ [
+ "5333.83",
+ "0.01499999"
+ ],
+ [
+ "5333.00",
+ "0.40000000"
+ ],
+ [
+ "5332.90",
+ "18.64535618"
+ ],
+ [
+ "5332.65",
+ "0.50000000"
+ ],
+ [
+ "5331.27",
+ "12.55000000"
+ ],
+ [
+ "5330.00",
+ "0.09200000"
+ ],
+ [
+ "5328.72",
+ "0.00100000"
+ ],
+ [
+ "5328.58",
+ "0.10200000"
+ ],
+ [
+ "5327.00",
+ "0.36000000"
+ ],
+ [
+ "5318.00",
+ "0.03000000"
+ ],
+ [
+ "5317.97",
+ "12.55000000"
+ ],
+ [
+ "5317.71",
+ "1.00000000"
+ ],
+ [
+ "5317.58",
+ "0.05400000"
+ ],
+ [
+ "5316.18",
+ "0.00125654"
+ ],
+ [
+ "5316.00",
+ "0.09400000"
+ ],
+ [
+ "5313.00",
+ "0.05700000"
+ ],
+ [
+ "5311.22",
+ "0.00310000"
+ ],
+ [
+ "5311.00",
+ "0.17336147"
+ ],
+ [
+ "5310.00",
+ "0.10537878"
+ ],
+ [
+ "5308.13",
+ "0.01878329"
+ ],
+ [
+ "5307.00",
+ "0.16000000"
+ ],
+ [
+ "5305.98",
+ "0.50000000"
+ ],
+ [
+ "5304.71",
+ "12.55000000"
+ ],
+ [
+ "5304.00",
+ "0.25000000"
+ ],
+ [
+ "5302.00",
+ "0.62000000"
+ ],
+ [
+ "5301.90",
+ "2.00000000"
+ ],
+ [
+ "5301.00",
+ "0.57621958"
+ ],
+ [
+ "5300.84",
+ "0.56711000"
+ ],
+ [
+ "5300.00",
+ "11.84921536"
+ ],
+ [
+ "5298.00",
+ "0.46000000"
+ ],
+ [
+ "5295.00",
+ "0.33000000"
+ ],
+ [
+ "5294.32",
+ "2.00000000"
+ ],
+ [
+ "5291.48",
+ "12.55000000"
+ ],
+ [
+ "5291.00",
+ "0.53400000"
+ ],
+ [
+ "5290.00",
+ "0.08100000"
+ ],
+ [
+ "5284.00",
+ "0.08400000"
+ ],
+ [
+ "5281.10",
+ "0.00540000"
+ ],
+ [
+ "5279.45",
+ "0.50000000"
+ ],
+ [
+ "5278.29",
+ "12.55000000"
+ ],
+ [
+ "5277.80",
+ "0.65028799"
+ ],
+ [
+ "5277.78",
+ "0.00811930"
+ ],
+ [
+ "5277.00",
+ "0.03340000"
+ ],
+ [
+ "5275.00",
+ "0.50000000"
+ ],
+ [
+ "5274.00",
+ "0.23000000"
+ ],
+ [
+ "5269.99",
+ "0.50000000"
+ ],
+ [
+ "5267.00",
+ "0.06120000"
+ ],
+ [
+ "5265.13",
+ "12.55000000"
+ ],
+ [
+ "5265.00",
+ "1.00000000"
+ ],
+ [
+ "5260.00",
+ "2.00000000"
+ ],
+ [
+ "5259.97",
+ "0.05000000"
+ ],
+ [
+ "5259.00",
+ "0.01000000"
+ ],
+ [
+ "5258.13",
+ "0.25000000"
+ ],
+ [
+ "5258.00",
+ "0.00500000"
+ ],
+ [
+ "5257.99",
+ "8.16988050"
+ ],
+ [
+ "5257.00",
+ "0.08400000"
+ ],
+ [
+ "5255.56",
+ "0.00697672"
+ ],
+ [
+ "5253.05",
+ "0.50000000"
+ ],
+ [
+ "5253.00",
+ "0.51000000"
+ ],
+ [
+ "5252.00",
+ "12.55000000"
+ ],
+ [
+ "5251.02",
+ "0.09500000"
+ ],
+ [
+ "5250.00",
+ "11.04865238"
+ ],
+ [
+ "5248.80",
+ "0.00123886"
+ ],
+ [
+ "5248.00",
+ "0.54000000"
+ ],
+ [
+ "5247.39",
+ "5.00000000"
+ ],
+ [
+ "5247.10",
+ "0.63388348"
+ ],
+ [
+ "5238.90",
+ "12.55000000"
+ ],
+ [
+ "5237.46",
+ "0.00376518"
+ ],
+ [
+ "5237.00",
+ "0.32600000"
+ ],
+ [
+ "5236.00",
+ "0.02928000"
+ ],
+ [
+ "5234.60",
+ "0.33400000"
+ ],
+ [
+ "5234.00",
+ "1.99898739"
+ ],
+ [
+ "5233.00",
+ "2.36039365"
+ ],
+ [
+ "5232.00",
+ "0.09000000"
+ ],
+ [
+ "5230.72",
+ "0.24000000"
+ ],
+ [
+ "5230.00",
+ "0.35000000"
+ ],
+ [
+ "5228.00",
+ "0.29000000"
+ ],
+ [
+ "5227.83",
+ "0.50300000"
+ ],
+ [
+ "5227.12",
+ "0.03000000"
+ ],
+ [
+ "5227.02",
+ "0.09000000"
+ ],
+ [
+ "5226.78",
+ "0.50000000"
+ ],
+ [
+ "5225.83",
+ "12.55000000"
+ ],
+ [
+ "5225.05",
+ "0.21000000"
+ ],
+ [
+ "5225.00",
+ "1.11639808"
+ ],
+ [
+ "5224.00",
+ "0.16200000"
+ ],
+ [
+ "5223.02",
+ "0.12600000"
+ ],
+ [
+ "5221.58",
+ "0.06000000"
+ ],
+ [
+ "5219.00",
+ "7.50000000"
+ ],
+ [
+ "5218.08",
+ "0.05000000"
+ ],
+ [
+ "5217.00",
+ "4.85561433"
+ ],
+ [
+ "5216.00",
+ "1.63489264"
+ ],
+ [
+ "5215.05",
+ "1.00000000"
+ ],
+ [
+ "5215.00",
+ "0.00430000"
+ ],
+ [
+ "5213.60",
+ "0.01000000"
+ ],
+ [
+ "5212.80",
+ "12.55000000"
+ ],
+ [
+ "5212.60",
+ "0.39000000"
+ ],
+ [
+ "5212.00",
+ "0.16653924"
+ ],
+ [
+ "5211.06",
+ "0.17745000"
+ ],
+ [
+ "5211.00",
+ "1.50000000"
+ ],
+ [
+ "5210.93",
+ "0.04500000"
+ ],
+ [
+ "5210.60",
+ "0.09000000"
+ ],
+ [
+ "5210.00",
+ "0.56906939"
+ ],
+ [
+ "5205.26",
+ "0.00284800"
+ ],
+ [
+ "5204.00",
+ "0.23400000"
+ ],
+ [
+ "5201.60",
+ "1.15740000"
+ ],
+ [
+ "5201.20",
+ "0.20000000"
+ ],
+ [
+ "5201.00",
+ "7.80000000"
+ ],
+ [
+ "5200.64",
+ "0.50000000"
+ ],
+ [
+ "5200.24",
+ "0.06800000"
+ ],
+ [
+ "5200.02",
+ "0.34294291"
+ ],
+ [
+ "5200.00",
+ "23.00758654"
+ ],
+ [
+ "5199.80",
+ "12.55000000"
+ ],
+ [
+ "5199.77",
+ "0.02500000"
+ ],
+ [
+ "5195.58",
+ "0.11400000"
+ ],
+ [
+ "5195.00",
+ "0.08100000"
+ ],
+ [
+ "5194.83",
+ "0.53400000"
+ ],
+ [
+ "5193.59",
+ "5.50000000"
+ ],
+ [
+ "5191.32",
+ "0.00540000"
+ ],
+ [
+ "5188.68",
+ "0.50000000"
+ ],
+ [
+ "5188.58",
+ "0.34000000"
+ ],
+ [
+ "5186.84",
+ "12.55000000"
+ ],
+ [
+ "5186.00",
+ "0.13446779"
+ ],
+ [
+ "5183.00",
+ "0.88421956"
+ ],
+ [
+ "5180.00",
+ "0.70352702"
+ ],
+ [
+ "5175.00",
+ "101.00000000"
+ ],
+ [
+ "5174.63",
+ "0.50000000"
+ ],
+ [
+ "5173.90",
+ "12.55000000"
+ ],
+ [
+ "5173.00",
+ "0.42000000"
+ ],
+ [
+ "5169.41",
+ "0.00500000"
+ ],
+ [
+ "5168.00",
+ "0.03000000"
+ ],
+ [
+ "5161.00",
+ "12.55000000"
+ ],
+ [
+ "5160.58",
+ "0.06120000"
+ ],
+ [
+ "5160.00",
+ "0.11000000"
+ ],
+ [
+ "5155.00",
+ "0.01000000"
+ ],
+ [
+ "5152.49",
+ "0.00097200"
+ ],
+ [
+ "5150.00",
+ "0.20553788"
+ ],
+ [
+ "5148.75",
+ "0.50000000"
+ ],
+ [
+ "5148.13",
+ "12.55000000"
+ ],
+ [
+ "5145.70",
+ "0.00100000"
+ ],
+ [
+ "5144.00",
+ "0.37394634"
+ ],
+ [
+ "5140.13",
+ "0.00500000"
+ ],
+ [
+ "5138.88",
+ "0.00097388"
+ ],
+ [
+ "5136.00",
+ "0.16400000"
+ ],
+ [
+ "5135.29",
+ "12.55000000"
+ ],
+ [
+ "5133.00",
+ "17.10845945"
+ ],
+ [
+ "5132.64",
+ "0.10000000"
+ ],
+ [
+ "5126.26",
+ "0.00500000"
+ ],
+ [
+ "5123.00",
+ "0.56467527"
+ ],
+ [
+ "5122.48",
+ "12.55000000"
+ ],
+ [
+ "5121.00",
+ "0.06120000"
+ ],
+ [
+ "5120.00",
+ "0.10000000"
+ ],
+ [
+ "5117.00",
+ "0.05900000"
+ ],
+ [
+ "5111.00",
+ "15.00000000"
+ ],
+ [
+ "5110.00",
+ "0.00117000"
+ ],
+ [
+ "5109.71",
+ "12.55000000"
+ ],
+ [
+ "5102.99",
+ "0.80000000"
+ ],
+ [
+ "5102.64",
+ "0.00500000"
+ ],
+ [
+ "5102.22",
+ "0.00653312"
+ ],
+ [
+ "5101.00",
+ "0.47119976"
+ ],
+ [
+ "5100.99",
+ "0.00600000"
+ ],
+ [
+ "5100.00",
+ "18.83028457"
+ ],
+ [
+ "5097.38",
+ "0.50000000"
+ ],
+ [
+ "5097.00",
+ "0.09620000"
+ ],
+ [
+ "5096.97",
+ "11.53037747"
+ ],
+ [
+ "5094.00",
+ "0.23000000"
+ ],
+ [
+ "5093.89",
+ "0.00750354"
+ ],
+ [
+ "5085.01",
+ "0.05000000"
+ ],
+ [
+ "5084.26",
+ "12.55000000"
+ ],
+ [
+ "5083.00",
+ "0.58390000"
+ ],
+ [
+ "5081.17",
+ "2.60000000"
+ ],
+ [
+ "5081.00",
+ "0.45000000"
+ ],
+ [
+ "5079.13",
+ "0.25000000"
+ ],
+ [
+ "5072.00",
+ "0.03021983"
+ ],
+ [
+ "5071.89",
+ "0.50000000"
+ ],
+ [
+ "5071.58",
+ "11.20518578"
+ ],
+ [
+ "5071.00",
+ "0.20000000"
+ ],
+ [
+ "5067.00",
+ "0.14500000"
+ ],
+ [
+ "5066.00",
+ "0.70000000"
+ ],
+ [
+ "5064.00",
+ "0.16200000"
+ ],
+ [
+ "5063.00",
+ "0.00430000"
+ ],
+ [
+ "5062.58",
+ "0.12600000"
+ ],
+ [
+ "5062.08",
+ "0.02000000"
+ ],
+ [
+ "5062.00",
+ "0.18800000"
+ ],
+ [
+ "5061.60",
+ "0.37800000"
+ ],
+ [
+ "5061.00",
+ "2.77000000"
+ ],
+ [
+ "5060.00",
+ "0.51000000"
+ ],
+ [
+ "5059.00",
+ "0.10200000"
+ ],
+ [
+ "5058.93",
+ "12.55000000"
+ ],
+ [
+ "5058.00",
+ "0.10233392"
+ ],
+ [
+ "5057.95",
+ "0.00338471"
+ ],
+ [
+ "5057.00",
+ "0.09700000"
+ ],
+ [
+ "5054.83",
+ "0.56060000"
+ ],
+ [
+ "5054.12",
+ "0.03400000"
+ ],
+ [
+ "5054.02",
+ "0.09800000"
+ ],
+ [
+ "5053.00",
+ "0.21000000"
+ ],
+ [
+ "5052.45",
+ "0.40049085"
+ ],
+ [
+ "5052.05",
+ "0.23800000"
+ ],
+ [
+ "5052.00",
+ "0.16200000"
+ ],
+ [
+ "5051.00",
+ "0.10200000"
+ ],
+ [
+ "5050.02",
+ "0.14220000"
+ ],
+ [
+ "5050.00",
+ "1.76094100"
+ ],
+ [
+ "5048.60",
+ "1.28780000"
+ ],
+ [
+ "5048.58",
+ "0.06800000"
+ ],
+ [
+ "5047.24",
+ "0.07600000"
+ ],
+ [
+ "5047.10",
+ "0.12000000"
+ ],
+ [
+ "5046.53",
+ "0.50000000"
+ ],
+ [
+ "5046.31",
+ "4.97236327"
+ ],
+ [
+ "5044.02",
+ "0.00100000"
+ ],
+ [
+ "5043.00",
+ "0.10200000"
+ ],
+ [
+ "5041.83",
+ "0.59800000"
+ ],
+ [
+ "5041.59",
+ "0.01000000"
+ ],
+ [
+ "5040.00",
+ "0.01785714"
+ ],
+ [
+ "5037.93",
+ "0.05100000"
+ ],
+ [
+ "5037.00",
+ "0.07800000"
+ ],
+ [
+ "5035.60",
+ "0.43800000"
+ ],
+ [
+ "5035.58",
+ "0.38000000"
+ ],
+ [
+ "5034.44",
+ "0.00500000"
+ ],
+ [
+ "5034.00",
+ "0.06540000"
+ ],
+ [
+ "5033.77",
+ "0.06300000"
+ ],
+ [
+ "5033.73",
+ "12.55000000"
+ ],
+ [
+ "5033.60",
+ "0.10200000"
+ ],
+ [
+ "5032.61",
+ "0.00540000"
+ ],
+ [
+ "5032.22",
+ "0.00500000"
+ ],
+ [
+ "5031.00",
+ "0.15000000"
+ ],
+ [
+ "5030.00",
+ "2.06500000"
+ ],
+ [
+ "5029.00",
+ "0.04966792"
+ ],
+ [
+ "5025.00",
+ "0.50000000"
+ ],
+ [
+ "5024.00",
+ "0.09200000"
+ ],
+ [
+ "5022.14",
+ "0.26263704"
+ ],
+ [
+ "5021.29",
+ "0.50000000"
+ ],
+ [
+ "5021.18",
+ "12.55000000"
+ ],
+ [
+ "5020.16",
+ "1.20000000"
+ ],
+ [
+ "5020.00",
+ "5.05000000"
+ ],
+ [
+ "5019.22",
+ "0.60614597"
+ ],
+ [
+ "5019.00",
+ "1.00000000"
+ ],
+ [
+ "5016.00",
+ "0.06000000"
+ ],
+ [
+ "5015.00",
+ "10.62200000"
+ ],
+ [
+ "5013.00",
+ "0.01000000"
+ ],
+ [
+ "5012.00",
+ "0.10000000"
+ ],
+ [
+ "5011.77",
+ "0.01000000"
+ ],
+ [
+ "5011.11",
+ "0.00864746"
+ ],
+ [
+ "5011.06",
+ "0.18452000"
+ ],
+ [
+ "5011.00",
+ "2.00000000"
+ ],
+ [
+ "5010.00",
+ "5.45120000"
+ ],
+ [
+ "5008.65",
+ "12.55000000"
+ ],
+ [
+ "5008.00",
+ "0.13864590"
+ ],
+ [
+ "5006.35",
+ "0.00199147"
+ ],
+ [
+ "5005.06",
+ "0.01000000"
+ ],
+ [
+ "5005.00",
+ "2.45000000"
+ ],
+ [
+ "5004.27",
+ "0.50000000"
+ ],
+ [
+ "5004.00",
+ "0.35800000"
+ ],
+ [
+ "5003.58",
+ "0.06840000"
+ ],
+ [
+ "5001.09",
+ "0.33000000"
+ ],
+ [
+ "5001.01",
+ "4.38808160"
+ ],
+ [
+ "5001.00",
+ "0.25000000"
+ ],
+ [
+ "5000.50",
+ "0.01006170"
+ ],
+ [
+ "5000.00",
+ "69.24427202"
+ ],
+ [
+ "4999.00",
+ "0.11935000"
+ ],
+ [
+ "4996.28",
+ "0.16601017"
+ ],
+ [
+ "4996.18",
+ "0.50000000"
+ ],
+ [
+ "4996.16",
+ "12.55000000"
+ ],
+ [
+ "4996.12",
+ "0.33229786"
+ ],
+ [
+ "4995.00",
+ "0.31000000"
+ ],
+ [
+ "4993.00",
+ "0.20000000"
+ ],
+ [
+ "4991.00",
+ "0.17400000"
+ ],
+ [
+ "4990.90",
+ "1.40000000"
+ ],
+ [
+ "4989.97",
+ "0.10000000"
+ ],
+ [
+ "4989.63",
+ "0.25000000"
+ ],
+ [
+ "4988.00",
+ "0.03000000"
+ ],
+ [
+ "4985.56",
+ "0.50000000"
+ ],
+ [
+ "4985.00",
+ "47.01262186"
+ ],
+ [
+ "4983.71",
+ "12.55000000"
+ ],
+ [
+ "4982.00",
+ "0.20100000"
+ ],
+ [
+ "4978.95",
+ "0.00315363"
+ ],
+ [
+ "4971.28",
+ "12.55000000"
+ ],
+ [
+ "4971.19",
+ "0.50000000"
+ ],
+ [
+ "4971.00",
+ "0.24800000"
+ ],
+ [
+ "4962.01",
+ "0.20000000"
+ ],
+ [
+ "4962.00",
+ "0.08700000"
+ ],
+ [
+ "4958.88",
+ "12.55000000"
+ ],
+ [
+ "4953.00",
+ "0.01338441"
+ ],
+ [
+ "4952.49",
+ "0.00101100"
+ ],
+ [
+ "4951.00",
+ "0.00110000"
+ ],
+ [
+ "4950.12",
+ "0.00202020"
+ ],
+ [
+ "4950.00",
+ "31.73881818"
+ ],
+ [
+ "4949.81",
+ "0.11191742"
+ ],
+ [
+ "4947.00",
+ "0.01000000"
+ ],
+ [
+ "4946.51",
+ "12.55000000"
+ ],
+ [
+ "4946.33",
+ "0.50000000"
+ ],
+ [
+ "4940.00",
+ "0.86000000"
+ ],
+ [
+ "4934.18",
+ "12.55000000"
+ ],
+ [
+ "4932.08",
+ "0.00510000"
+ ],
+ [
+ "4930.00",
+ "1.00000000"
+ ],
+ [
+ "4929.58",
+ "0.13800000"
+ ],
+ [
+ "4924.00",
+ "0.03000000"
+ ],
+ [
+ "4921.87",
+ "12.55000000"
+ ],
+ [
+ "4921.59",
+ "0.50000000"
+ ],
+ [
+ "4920.00",
+ "0.50000000"
+ ],
+ [
+ "4919.00",
+ "0.34845293"
+ ],
+ [
+ "4916.00",
+ "0.00430000"
+ ],
+ [
+ "4912.28",
+ "1.00000000"
+ ],
+ [
+ "4911.00",
+ "1.02500000"
+ ],
+ [
+ "4910.00",
+ "50.00123000"
+ ],
+ [
+ "4909.60",
+ "12.55000000"
+ ],
+ [
+ "4909.00",
+ "0.04959250"
+ ],
+ [
+ "4907.00",
+ "0.01003260"
+ ],
+ [
+ "4903.00",
+ "0.17200000"
+ ],
+ [
+ "4900.13",
+ "0.25000000"
+ ],
+ [
+ "4900.00",
+ "2.45251428"
+ ],
+ [
+ "4897.36",
+ "12.55000000"
+ ],
+ [
+ "4896.98",
+ "0.50000000"
+ ],
+ [
+ "4895.60",
+ "1.41820000"
+ ],
+ [
+ "4894.24",
+ "0.08400000"
+ ],
+ [
+ "4892.80",
+ "0.00540000"
+ ],
+ [
+ "4890.00",
+ "10.00000000"
+ ],
+ [
+ "4889.00",
+ "1.25000000"
+ ],
+ [
+ "4888.88",
+ "0.05000000"
+ ],
+ [
+ "4888.83",
+ "0.66200000"
+ ],
+ [
+ "4888.77",
+ "0.12300000"
+ ],
+ [
+ "4888.60",
+ "0.23200000"
+ ],
+ [
+ "4888.00",
+ "1.06540000"
+ ],
+ [
+ "4887.78",
+ "0.00909296"
+ ],
+ [
+ "4887.00",
+ "0.57000000"
+ ],
+ [
+ "4886.00",
+ "0.11400000"
+ ],
+ [
+ "4885.14",
+ "12.55000000"
+ ],
+ [
+ "4884.00",
+ "0.02500000"
+ ],
+ [
+ "4882.58",
+ "0.42000000"
+ ],
+ [
+ "4882.00",
+ "0.15000000"
+ ],
+ [
+ "4881.83",
+ "0.61820000"
+ ],
+ [
+ "4881.12",
+ "0.03800000"
+ ],
+ [
+ "4881.02",
+ "0.10600000"
+ ],
+ [
+ "4881.00",
+ "1.00000000"
+ ],
+ [
+ "4879.05",
+ "0.26600000"
+ ],
+ [
+ "4877.02",
+ "0.15840000"
+ ],
+ [
+ "4877.00",
+ "3.68306540"
+ ],
+ [
+ "4875.58",
+ "0.07600000"
+ ],
+ [
+ "4872.96",
+ "12.55000000"
+ ],
+ [
+ "4872.49",
+ "0.50000000"
+ ],
+ [
+ "4870.00",
+ "0.20000000"
+ ],
+ [
+ "4869.97",
+ "0.10000000"
+ ],
+ [
+ "4868.00",
+ "0.00500000"
+ ],
+ [
+ "4867.77",
+ "0.06380000"
+ ],
+ [
+ "4864.00",
+ "0.19040000"
+ ],
+ [
+ "4862.00",
+ "0.05400000"
+ ],
+ [
+ "4860.81",
+ "12.55000000"
+ ],
+ [
+ "4860.21",
+ "0.05000000"
+ ],
+ [
+ "4860.00",
+ "1.75000000"
+ ],
+ [
+ "4858.60",
+ "0.48600000"
+ ],
+ [
+ "4856.60",
+ "0.11400000"
+ ],
+ [
+ "4856.04",
+ "0.01504106"
+ ],
+ [
+ "4855.00",
+ "0.01000000"
+ ],
+ [
+ "4853.33",
+ "0.00906597"
+ ],
+ [
+ "4853.00",
+ "0.01000000"
+ ],
+ [
+ "4851.06",
+ "0.19061000"
+ ],
+ [
+ "4851.00",
+ "0.88148643"
+ ],
+ [
+ "4850.52",
+ "0.00150000"
+ ],
+ [
+ "4850.00",
+ "2.04879382"
+ ],
+ [
+ "4848.69",
+ "12.55000000"
+ ],
+ [
+ "4847.37",
+ "0.50000000"
+ ],
+ [
+ "4846.58",
+ "0.07560000"
+ ],
+ [
+ "4843.00",
+ "0.01000000"
+ ],
+ [
+ "4842.18",
+ "0.00550000"
+ ],
+ [
+ "4840.00",
+ "0.20000000"
+ ],
+ [
+ "4839.00",
+ "0.00500000"
+ ],
+ [
+ "4836.60",
+ "12.55000000"
+ ],
+ [
+ "4829.00",
+ "0.19600000"
+ ],
+ [
+ "4827.00",
+ "0.03835353"
+ ],
+ [
+ "4826.00",
+ "0.08000000"
+ ],
+ [
+ "4824.53",
+ "12.55000000"
+ ],
+ [
+ "4824.00",
+ "0.09300000"
+ ],
+ [
+ "4823.00",
+ "0.54681097"
+ ],
+ [
+ "4821.00",
+ "0.17400000"
+ ],
+ [
+ "4820.30",
+ "0.50000000"
+ ],
+ [
+ "4820.00",
+ "1.20000000"
+ ],
+ [
+ "4818.00",
+ "0.56787775"
+ ],
+ [
+ "4815.66",
+ "0.50000000"
+ ],
+ [
+ "4815.00",
+ "0.08609968"
+ ],
+ [
+ "4812.50",
+ "12.55000000"
+ ],
+ [
+ "4812.03",
+ "0.10400000"
+ ],
+ [
+ "4812.00",
+ "0.00700000"
+ ],
+ [
+ "4811.00",
+ "1.00000000"
+ ],
+ [
+ "4810.63",
+ "0.25000000"
+ ],
+ [
+ "4810.00",
+ "0.00125000"
+ ],
+ [
+ "4809.00",
+ "0.09200000"
+ ],
+ [
+ "4807.00",
+ "0.00500000"
+ ],
+ [
+ "4802.86",
+ "0.01000000"
+ ],
+ [
+ "4802.00",
+ "0.05482999"
+ ],
+ [
+ "4801.16",
+ "0.48843196"
+ ],
+ [
+ "4801.00",
+ "2.26960000"
+ ],
+ [
+ "4800.84",
+ "0.00600000"
+ ],
+ [
+ "4800.50",
+ "12.55000000"
+ ],
+ [
+ "4800.00",
+ "10.10240638"
+ ],
+ [
+ "4797.00",
+ "0.01000000"
+ ],
+ [
+ "4796.58",
+ "0.15000000"
+ ],
+ [
+ "4792.14",
+ "0.00510000"
+ ],
+ [
+ "4791.00",
+ "0.10000000"
+ ],
+ [
+ "4790.06",
+ "0.50000000"
+ ],
+ [
+ "4788.53",
+ "12.55000000"
+ ],
+ [
+ "4788.00",
+ "0.01000000"
+ ],
+ [
+ "4784.25",
+ "0.00360140"
+ ],
+ [
+ "4783.06",
+ "0.27371436"
+ ],
+ [
+ "4782.00",
+ "0.62000000"
+ ],
+ [
+ "4781.00",
+ "0.00209161"
+ ],
+ [
+ "4780.00",
+ "17.17782426"
+ ],
+ [
+ "4779.00",
+ "8.00209249"
+ ],
+ [
+ "4777.00",
+ "0.08267323"
+ ],
+ [
+ "4776.59",
+ "1812.55000000"
+ ],
+ [
+ "4775.12",
+ "0.03000000"
+ ],
+ [
+ "4773.00",
+ "0.00430000"
+ ],
+ [
+ "4771.00",
+ "0.44400000"
+ ],
+ [
+ "4770.00",
+ "0.11000000"
+ ],
+ [
+ "4768.00",
+ "0.00500000"
+ ],
+ [
+ "4766.67",
+ "0.01048948"
+ ],
+ [
+ "4766.00",
+ "1.00000000"
+ ],
+ [
+ "4764.68",
+ "12.55000000"
+ ],
+ [
+ "4763.00",
+ "50.00000000"
+ ],
+ [
+ "4762.00",
+ "0.33000000"
+ ],
+ [
+ "4760.00",
+ "0.06200000"
+ ],
+ [
+ "4758.00",
+ "0.18600000"
+ ],
+ [
+ "4757.77",
+ "0.03830000"
+ ],
+ [
+ "4755.00",
+ "5.00000000"
+ ],
+ [
+ "4752.80",
+ "7.81502992"
+ ],
+ [
+ "4752.63",
+ "0.00348837"
+ ],
+ [
+ "4752.00",
+ "0.54000000"
+ ],
+ [
+ "4750.00",
+ "4.15774561"
+ ],
+ [
+ "4747.00",
+ "0.01000000"
+ ],
+ [
+ "4742.98",
+ "0.03180598"
+ ],
+ [
+ "4742.60",
+ "1.08860000"
+ ],
+ [
+ "4741.24",
+ "0.09200000"
+ ],
+ [
+ "4740.94",
+ "12.55000000"
+ ],
+ [
+ "4739.00",
+ "0.01000000"
+ ],
+ [
+ "4738.00",
+ "0.26200000"
+ ],
+ [
+ "4735.83",
+ "0.72600000"
+ ],
+ [
+ "4729.58",
+ "0.46000000"
+ ],
+ [
+ "4729.12",
+ "12.55000000"
+ ],
+ [
+ "4729.00",
+ "0.01000000"
+ ],
+ [
+ "4728.00",
+ "0.27000000"
+ ],
+ [
+ "4724.32",
+ "0.01000000"
+ ],
+ [
+ "4721.00",
+ "0.25000000"
+ ],
+ [
+ "4720.02",
+ "0.00510000"
+ ],
+ [
+ "4720.00",
+ "0.13656568"
+ ],
+ [
+ "4717.33",
+ "12.55000000"
+ ],
+ [
+ "4717.00",
+ "0.20668751"
+ ],
+ [
+ "4715.60",
+ "0.25600000"
+ ],
+ [
+ "4714.00",
+ "0.63000000"
+ ],
+ [
+ "4713.00",
+ "0.12600000"
+ ],
+ [
+ "4711.06",
+ "0.19628000"
+ ],
+ [
+ "4710.00",
+ "7.00127000"
+ ],
+ [
+ "4709.00",
+ "0.06600000"
+ ],
+ [
+ "4708.83",
+ "0.67580000"
+ ],
+ [
+ "4708.12",
+ "0.04200000"
+ ],
+ [
+ "4708.02",
+ "0.11400000"
+ ],
+ [
+ "4707.00",
+ "8.54000000"
+ ],
+ [
+ "4706.05",
+ "0.29400000"
+ ],
+ [
+ "4706.00",
+ "0.50000000"
+ ],
+ [
+ "4705.56",
+ "12.55000000"
+ ],
+ [
+ "4704.02",
+ "0.11160000"
+ ],
+ [
+ "4702.58",
+ "0.08400000"
+ ],
+ [
+ "4701.00",
+ "0.45000000"
+ ],
+ [
+ "4700.00",
+ "1.15307041"
+ ],
+ [
+ "4698.75",
+ "0.25000000"
+ ],
+ [
+ "4692.00",
+ "0.03000000"
+ ],
+ [
+ "4691.00",
+ "0.45200000"
+ ],
+ [
+ "4690.00",
+ "1.00000000"
+ ],
+ [
+ "4689.58",
+ "0.08280000"
+ ],
+ [
+ "4688.00",
+ "0.00500000"
+ ],
+ [
+ "4687.00",
+ "0.03000000"
+ ],
+ [
+ "4686.00",
+ "0.50000000"
+ ],
+ [
+ "4681.67",
+ "0.01082233"
+ ],
+ [
+ "4681.60",
+ "0.53400000"
+ ],
+ [
+ "4679.60",
+ "0.12600000"
+ ],
+ [
+ "4677.00",
+ "0.20000000"
+ ],
+ [
+ "4676.00",
+ "0.20000000"
+ ],
+ [
+ "4671.07",
+ "0.03000000"
+ ],
+ [
+ "4671.00",
+ "0.25000000"
+ ],
+ [
+ "4670.00",
+ "8.68000000"
+ ],
+ [
+ "4667.84",
+ "0.04978806"
+ ],
+ [
+ "4666.00",
+ "1.00000000"
+ ],
+ [
+ "4663.58",
+ "0.16200000"
+ ],
+ [
+ "4660.61",
+ "0.20000000"
+ ],
+ [
+ "4660.00",
+ "0.25000000"
+ ],
+ [
+ "4658.21",
+ "0.01379285"
+ ],
+ [
+ "4655.00",
+ "0.06960000"
+ ],
+ [
+ "4653.00",
+ "0.01000000"
+ ],
+ [
+ "4651.00",
+ "0.25000000"
+ ],
+ [
+ "4648.00",
+ "0.00500000"
+ ],
+ [
+ "4641.10",
+ "0.00510000"
+ ],
+ [
+ "4635.00",
+ "0.01000000"
+ ],
+ [
+ "4634.00",
+ "0.00430000"
+ ],
+ [
+ "4631.00",
+ "46.19163735"
+ ],
+ [
+ "4629.00",
+ "0.02500000"
+ ],
+ [
+ "4625.81",
+ "0.01000000"
+ ],
+ [
+ "4625.00",
+ "0.18992648"
+ ],
+ [
+ "4621.00",
+ "0.22702445"
+ ],
+ [
+ "4620.00",
+ "0.20000000"
+ ],
+ [
+ "4619.00",
+ "0.03000000"
+ ],
+ [
+ "4618.00",
+ "0.06600000"
+ ],
+ [
+ "4616.00",
+ "0.00500000"
+ ],
+ [
+ "4610.00",
+ "10.00130000"
+ ],
+ [
+ "4609.25",
+ "0.25000000"
+ ],
+ [
+ "4608.28",
+ "1.00000000"
+ ],
+ [
+ "4608.08",
+ "2.00000000"
+ ],
+ [
+ "4604.65",
+ "0.01083036"
+ ],
+ [
+ "4604.44",
+ "0.01187264"
+ ],
+ [
+ "4603.00",
+ "0.00500000"
+ ],
+ [
+ "4601.00",
+ "0.20000000"
+ ],
+ [
+ "4600.00",
+ "6.84454565"
+ ],
+ [
+ "4599.33",
+ "0.10000000"
+ ],
+ [
+ "4597.88",
+ "0.50000000"
+ ],
+ [
+ "4596.00",
+ "0.20400000"
+ ],
+ [
+ "4591.00",
+ "0.09900000"
+ ],
+ [
+ "4589.60",
+ "1.17900000"
+ ],
+ [
+ "4588.24",
+ "0.10000000"
+ ],
+ [
+ "4588.00",
+ "0.00500000"
+ ],
+ [
+ "4585.00",
+ "0.10800000"
+ ],
+ [
+ "4582.83",
+ "0.79000000"
+ ],
+ [
+ "4581.21",
+ "0.10000000"
+ ],
+ [
+ "4576.58",
+ "0.50000000"
+ ],
+ [
+ "4575.81",
+ "0.50000000"
+ ],
+ [
+ "4575.00",
+ "0.34000000"
+ ],
+ [
+ "4573.70",
+ "0.18462732"
+ ],
+ [
+ "4570.23",
+ "0.01499999"
+ ],
+ [
+ "4568.00",
+ "0.07380000"
+ ],
+ [
+ "4567.00",
+ "0.34001094"
+ ],
+ [
+ "4566.00",
+ "1.13680000"
+ ],
+ [
+ "4563.00",
+ "0.25412667"
+ ],
+ [
+ "4561.00",
+ "1.35000000"
+ ],
+ [
+ "4558.00",
+ "8.79036946"
+ ],
+ [
+ "4556.00",
+ "0.07800000"
+ ],
+ [
+ "4555.00",
+ "0.33000000"
+ ],
+ [
+ "4553.00",
+ "0.00728653"
+ ],
+ [
+ "4552.00",
+ "0.01631371"
+ ],
+ [
+ "4551.06",
+ "0.20331527"
+ ],
+ [
+ "4551.00",
+ "0.50120000"
+ ],
+ [
+ "4550.00",
+ "5.07037464"
+ ],
+ [
+ "4545.00",
+ "0.04400000"
+ ],
+ [
+ "4542.60",
+ "0.28000000"
+ ],
+ [
+ "4541.00",
+ "0.69000000"
+ ],
+ [
+ "4540.00",
+ "0.13800000"
+ ],
+ [
+ "4539.00",
+ "0.03000000"
+ ],
+ [
+ "4538.00",
+ "0.42200000"
+ ],
+ [
+ "4535.83",
+ "0.73340000"
+ ],
+ [
+ "4535.12",
+ "0.04600000"
+ ],
+ [
+ "4535.02",
+ "0.12200000"
+ ],
+ [
+ "4533.05",
+ "0.32200000"
+ ],
+ [
+ "4532.58",
+ "0.09000000"
+ ],
+ [
+ "4531.10",
+ "0.00480000"
+ ],
+ [
+ "4531.02",
+ "0.12180000"
+ ],
+ [
+ "4531.00",
+ "1.01000000"
+ ],
+ [
+ "4530.58",
+ "0.17400000"
+ ],
+ [
+ "4529.58",
+ "0.09200000"
+ ],
+ [
+ "4529.00",
+ "0.35000000"
+ ],
+ [
+ "4527.00",
+ "0.40000000"
+ ],
+ [
+ "4526.32",
+ "0.00385658"
+ ],
+ [
+ "4526.00",
+ "1.25000000"
+ ],
+ [
+ "4525.00",
+ "0.19800000"
+ ],
+ [
+ "4524.86",
+ "0.25000000"
+ ],
+ [
+ "4524.00",
+ "1.00000000"
+ ],
+ [
+ "4522.22",
+ "0.01253073"
+ ],
+ [
+ "4521.00",
+ "0.95000000"
+ ],
+ [
+ "4520.00",
+ "6.50000000"
+ ],
+ [
+ "4518.00",
+ "0.11400000"
+ ],
+ [
+ "4512.00",
+ "6.00000000"
+ ],
+ [
+ "4510.00",
+ "0.00136000"
+ ],
+ [
+ "4508.34",
+ "0.27969496"
+ ],
+ [
+ "4505.00",
+ "4.47500000"
+ ],
+ [
+ "4504.60",
+ "0.58200000"
+ ],
+ [
+ "4504.31",
+ "0.01107162"
+ ],
+ [
+ "4503.00",
+ "2.14948922"
+ ],
+ [
+ "4502.60",
+ "0.13800000"
+ ],
+ [
+ "4501.09",
+ "0.24950178"
+ ],
+ [
+ "4501.00",
+ "1.35000000"
+ ],
+ [
+ "4500.00",
+ "25.73536387"
+ ],
+ [
+ "4499.46",
+ "0.50000000"
+ ],
+ [
+ "4499.00",
+ "0.00430000"
+ ],
+ [
+ "4498.00",
+ "0.00500000"
+ ],
+ [
+ "4494.47",
+ "0.20000000"
+ ],
+ [
+ "4494.00",
+ "0.02500000"
+ ],
+ [
+ "4490.00",
+ "0.63800000"
+ ],
+ [
+ "4486.00",
+ "1.25000000"
+ ],
+ [
+ "4483.00",
+ "0.50000000"
+ ],
+ [
+ "4480.00",
+ "0.50000000"
+ ],
+ [
+ "4478.00",
+ "1.75000000"
+ ],
+ [
+ "4477.19",
+ "0.01000000"
+ ],
+ [
+ "4475.56",
+ "0.01271098"
+ ],
+ [
+ "4474.47",
+ "0.20000000"
+ ],
+ [
+ "4474.05",
+ "0.45000000"
+ ],
+ [
+ "4471.04",
+ "2.35159000"
+ ],
+ [
+ "4470.00",
+ "0.61840492"
+ ],
+ [
+ "4469.97",
+ "0.20000000"
+ ],
+ [
+ "4469.55",
+ "0.00931600"
+ ],
+ [
+ "4466.00",
+ "1.75000000"
+ ],
+ [
+ "4465.86",
+ "0.06374584"
+ ],
+ [
+ "4465.00",
+ "0.07800000"
+ ],
+ [
+ "4461.00",
+ "2.10354565"
+ ],
+ [
+ "4460.00",
+ "0.50000000"
+ ],
+ [
+ "4454.47",
+ "0.20000000"
+ ],
+ [
+ "4454.00",
+ "0.57000000"
+ ],
+ [
+ "4450.00",
+ "15.30000000"
+ ],
+ [
+ "4448.00",
+ "0.05000000"
+ ],
+ [
+ "4444.00",
+ "6.60000000"
+ ],
+ [
+ "4440.35",
+ "0.05198915"
+ ],
+ [
+ "4437.12",
+ "0.01499999"
+ ],
+ [
+ "4437.00",
+ "0.18800000"
+ ],
+ [
+ "4436.60",
+ "1.26940000"
+ ],
+ [
+ "4435.95",
+ "3.00000000"
+ ],
+ [
+ "4435.24",
+ "0.10800000"
+ ],
+ [
+ "4434.47",
+ "0.20000000"
+ ],
+ [
+ "4430.64",
+ "0.02257010"
+ ],
+ [
+ "4429.87",
+ "0.01125767"
+ ],
+ [
+ "4429.83",
+ "0.85400000"
+ ],
+ [
+ "4427.00",
+ "0.01000000"
+ ],
+ [
+ "4425.00",
+ "0.75000000"
+ ],
+ [
+ "4423.58",
+ "0.54000000"
+ ],
+ [
+ "4422.10",
+ "0.00510000"
+ ],
+ [
+ "4422.00",
+ "0.07380000"
+ ],
+ [
+ "4420.30",
+ "1.50000000"
+ ],
+ [
+ "4418.28",
+ "2.00000000"
+ ],
+ [
+ "4415.00",
+ "0.12840030"
+ ],
+ [
+ "4414.47",
+ "0.20000000"
+ ],
+ [
+ "4414.00",
+ "0.06000000"
+ ],
+ [
+ "4413.00",
+ "1.28700000"
+ ],
+ [
+ "4411.00",
+ "1.00000000"
+ ],
+ [
+ "4410.00",
+ "0.25136000"
+ ],
+ [
+ "4406.12",
+ "1.62336704"
+ ],
+ [
+ "4401.00",
+ "100.20000000"
+ ],
+ [
+ "4400.00",
+ "16.90887333"
+ ],
+ [
+ "4398.00",
+ "0.10880000"
+ ],
+ [
+ "4397.58",
+ "0.18600000"
+ ],
+ [
+ "4394.47",
+ "0.20000000"
+ ],
+ [
+ "4383.00",
+ "0.10000000"
+ ],
+ [
+ "4375.58",
+ "0.09720000"
+ ],
+ [
+ "4374.47",
+ "0.20000000"
+ ],
+ [
+ "4369.60",
+ "0.30400000"
+ ],
+ [
+ "4368.00",
+ "0.25430000"
+ ],
+ [
+ "4367.00",
+ "0.15000000"
+ ],
+ [
+ "4366.00",
+ "1.00000000"
+ ],
+ [
+ "4363.00",
+ "0.21200000"
+ ],
+ [
+ "4362.83",
+ "0.54100000"
+ ],
+ [
+ "4362.12",
+ "0.05000000"
+ ],
+ [
+ "4362.02",
+ "0.13000000"
+ ],
+ [
+ "4361.01",
+ "1.05400000"
+ ],
+ [
+ "4360.05",
+ "0.35000000"
+ ],
+ [
+ "4358.02",
+ "0.13200000"
+ ],
+ [
+ "4358.00",
+ "0.10500000"
+ ],
+ [
+ "4356.58",
+ "0.10000000"
+ ],
+ [
+ "4356.00",
+ "0.25000000"
+ ],
+ [
+ "4355.56",
+ "0.01499994"
+ ],
+ [
+ "4354.47",
+ "0.20000000"
+ ],
+ [
+ "4352.00",
+ "0.11600000"
+ ],
+ [
+ "4350.00",
+ "9.68389775"
+ ],
+ [
+ "4336.00",
+ "0.50000000"
+ ],
+ [
+ "4335.00",
+ "0.07800000"
+ ],
+ [
+ "4334.47",
+ "0.20000000"
+ ],
+ [
+ "4332.00",
+ "0.33000000"
+ ],
+ [
+ "4331.00",
+ "1.00000000"
+ ],
+ [
+ "4327.60",
+ "0.63000000"
+ ],
+ [
+ "4326.00",
+ "0.50000000"
+ ],
+ [
+ "4325.60",
+ "0.15000000"
+ ],
+ [
+ "4325.00",
+ "0.11600000"
+ ],
+ [
+ "4323.83",
+ "0.50000000"
+ ],
+ [
+ "4323.00",
+ "0.10900000"
+ ],
+ [
+ "4321.00",
+ "0.50000000"
+ ],
+ [
+ "4320.00",
+ "0.12000000"
+ ],
+ [
+ "4315.00",
+ "0.20000000"
+ ],
+ [
+ "4314.47",
+ "0.20000000"
+ ],
+ [
+ "4310.00",
+ "2.01340000"
+ ],
+ [
+ "4308.23",
+ "0.32531457"
+ ],
+ [
+ "4307.88",
+ "0.01499999"
+ ],
+ [
+ "4306.60",
+ "0.00510000"
+ ],
+ [
+ "4305.00",
+ "0.45400000"
+ ],
+ [
+ "4301.00",
+ "3.28848848"
+ ],
+ [
+ "4300.00",
+ "38.68397171"
+ ],
+ [
+ "4299.98",
+ "0.58517714"
+ ],
+ [
+ "4296.00",
+ "0.37000000"
+ ],
+ [
+ "4294.47",
+ "0.20000000"
+ ],
+ [
+ "4292.00",
+ "0.21000000"
+ ],
+ [
+ "4289.89",
+ "0.03290000"
+ ],
+ [
+ "4289.27",
+ "0.02778643"
+ ],
+ [
+ "4287.00",
+ "8.20000000"
+ ],
+ [
+ "4283.60",
+ "1.35980000"
+ ],
+ [
+ "4282.24",
+ "0.11600000"
+ ],
+ [
+ "4280.00",
+ "0.02500000"
+ ],
+ [
+ "4278.00",
+ "0.00500000"
+ ],
+ [
+ "4277.78",
+ "0.01480517"
+ ],
+ [
+ "4277.00",
+ "11.39828851"
+ ],
+ [
+ "4276.83",
+ "0.91800000"
+ ],
+ [
+ "4274.47",
+ "0.20000000"
+ ],
+ [
+ "4272.00",
+ "0.29000000"
+ ],
+ [
+ "4270.58",
+ "0.58000000"
+ ],
+ [
+ "4269.44",
+ "0.01478209"
+ ],
+ [
+ "4267.00",
+ "0.48664635"
+ ],
+ [
+ "4266.20",
+ "50.01000000"
+ ],
+ [
+ "4266.18",
+ "2.00000000"
+ ],
+ [
+ "4266.00",
+ "1.07000000"
+ ],
+ [
+ "4264.58",
+ "0.19800000"
+ ],
+ [
+ "4260.00",
+ "0.14200000"
+ ],
+ [
+ "4259.97",
+ "0.20000000"
+ ],
+ [
+ "4255.89",
+ "3.50000000"
+ ],
+ [
+ "4254.86",
+ "0.30835327"
+ ],
+ [
+ "4254.47",
+ "0.20000000"
+ ],
+ [
+ "4252.59",
+ "14.92872343"
+ ],
+ [
+ "4252.00",
+ "0.01307855"
+ ],
+ [
+ "4251.39",
+ "0.01000000"
+ ],
+ [
+ "4250.00",
+ "5.06752941"
+ ],
+ [
+ "4241.00",
+ "0.00430000"
+ ],
+ [
+ "4238.88",
+ "2.00000000"
+ ],
+ [
+ "4234.47",
+ "0.20000000"
+ ],
+ [
+ "4228.00",
+ "0.10000000"
+ ],
+ [
+ "4226.60",
+ "0.00510000"
+ ],
+ [
+ "4225.00",
+ "0.15000000"
+ ],
+ [
+ "4222.60",
+ "1.00000000"
+ ],
+ [
+ "4222.00",
+ "2.42741828"
+ ],
+ [
+ "4220.00",
+ "0.50000000"
+ ],
+ [
+ "4219.00",
+ "0.01000000"
+ ],
+ [
+ "4218.58",
+ "0.10440000"
+ ],
+ [
+ "4215.00",
+ "3.52102016"
+ ],
+ [
+ "4214.47",
+ "0.20000000"
+ ],
+ [
+ "4213.00",
+ "1.00000000"
+ ],
+ [
+ "4211.00",
+ "0.14000000"
+ ],
+ [
+ "4210.00",
+ "2.28684329"
+ ],
+ [
+ "4206.02",
+ "1.18900000"
+ ],
+ [
+ "4204.00",
+ "0.19600000"
+ ],
+ [
+ "4201.00",
+ "0.20000000"
+ ],
+ [
+ "4200.20",
+ "0.00600000"
+ ],
+ [
+ "4200.00",
+ "13.84658868"
+ ],
+ [
+ "4199.00",
+ "0.23107644"
+ ],
+ [
+ "4196.60",
+ "0.32800000"
+ ],
+ [
+ "4194.47",
+ "0.20000000"
+ ],
+ [
+ "4194.00",
+ "0.16200000"
+ ],
+ [
+ "4189.83",
+ "0.57860000"
+ ],
+ [
+ "4189.12",
+ "0.05400000"
+ ],
+ [
+ "4189.02",
+ "0.13800000"
+ ],
+ [
+ "4189.00",
+ "0.07800000"
+ ],
+ [
+ "4187.05",
+ "0.37800000"
+ ],
+ [
+ "4185.02",
+ "0.14220000"
+ ],
+ [
+ "4183.58",
+ "0.10800000"
+ ],
+ [
+ "4182.41",
+ "0.01499999"
+ ],
+ [
+ "4181.09",
+ "0.01993100"
+ ],
+ [
+ "4179.68",
+ "0.00600000"
+ ],
+ [
+ "4178.00",
+ "0.49701292"
+ ],
+ [
+ "4175.50",
+ "0.00694042"
+ ],
+ [
+ "4174.47",
+ "0.20000000"
+ ],
+ [
+ "4173.00",
+ "0.04000000"
+ ],
+ [
+ "4171.48",
+ "0.02000000"
+ ],
+ [
+ "4166.00",
+ "1.00000000"
+ ],
+ [
+ "4165.00",
+ "0.11300000"
+ ],
+ [
+ "4163.50",
+ "0.20000000"
+ ],
+ [
+ "4160.00",
+ "0.32000000"
+ ],
+ [
+ "4154.47",
+ "0.20000000"
+ ],
+ [
+ "4150.60",
+ "0.67800000"
+ ],
+ [
+ "4150.00",
+ "12.04781927"
+ ],
+ [
+ "4148.60",
+ "0.16200000"
+ ],
+ [
+ "4145.75",
+ "1.79384700"
+ ],
+ [
+ "4141.00",
+ "0.15000000"
+ ],
+ [
+ "4134.47",
+ "0.20000000"
+ ],
+ [
+ "4131.58",
+ "0.21000000"
+ ],
+ [
+ "4130.60",
+ "1.45020000"
+ ],
+ [
+ "4130.00",
+ "0.22000000"
+ ],
+ [
+ "4129.24",
+ "0.12400000"
+ ],
+ [
+ "4129.01",
+ "0.01000000"
+ ],
+ [
+ "4126.41",
+ "1.00000000"
+ ],
+ [
+ "4125.00",
+ "0.11100000"
+ ],
+ [
+ "4123.83",
+ "0.98200000"
+ ],
+ [
+ "4123.40",
+ "1.00000000"
+ ],
+ [
+ "4123.00",
+ "1.00000000"
+ ],
+ [
+ "4120.00",
+ "0.00500000"
+ ],
+ [
+ "4119.00",
+ "0.12400000"
+ ],
+ [
+ "4118.08",
+ "0.10000000"
+ ],
+ [
+ "4117.58",
+ "0.62000000"
+ ],
+ [
+ "4117.00",
+ "0.00430000"
+ ],
+ [
+ "4115.00",
+ "0.01000000"
+ ],
+ [
+ "4114.47",
+ "0.20000000"
+ ],
+ [
+ "4113.00",
+ "0.07384147"
+ ],
+ [
+ "4111.00",
+ "0.60000000"
+ ],
+ [
+ "4110.00",
+ "2.01047000"
+ ],
+ [
+ "4109.45",
+ "0.01950000"
+ ],
+ [
+ "4107.87",
+ "0.53848344"
+ ],
+ [
+ "4106.67",
+ "0.01850644"
+ ],
+ [
+ "4102.00",
+ "3.08220000"
+ ],
+ [
+ "4101.00",
+ "0.10000000"
+ ],
+ [
+ "4100.00",
+ "28.63516938"
+ ],
+ [
+ "4094.47",
+ "0.20000000"
+ ],
+ [
+ "4092.00",
+ "0.12400000"
+ ],
+ [
+ "4091.67",
+ "0.05000000"
+ ],
+ [
+ "4090.00",
+ "10.00000000"
+ ],
+ [
+ "4089.00",
+ "0.35000000"
+ ],
+ [
+ "4088.00",
+ "0.01000000"
+ ],
+ [
+ "4084.17",
+ "0.01000000"
+ ],
+ [
+ "4080.00",
+ "10.10500000"
+ ],
+ [
+ "4078.00",
+ "0.01000000"
+ ],
+ [
+ "4075.00",
+ "2.58661595"
+ ],
+ [
+ "4074.47",
+ "0.20000000"
+ ],
+ [
+ "4072.00",
+ "0.48600000"
+ ],
+ [
+ "4070.00",
+ "10.00000000"
+ ],
+ [
+ "4063.33",
+ "0.01706321"
+ ],
+ [
+ "4063.13",
+ "0.00203036"
+ ],
+ [
+ "4063.00",
+ "0.39000000"
+ ],
+ [
+ "4061.58",
+ "0.11160000"
+ ],
+ [
+ "4060.59",
+ "0.01499999"
+ ],
+ [
+ "4060.00",
+ "10.50000000"
+ ],
+ [
+ "4059.00",
+ "0.22200000"
+ ],
+ [
+ "4055.29",
+ "0.01238575"
+ ],
+ [
+ "4054.47",
+ "0.20000000"
+ ],
+ [
+ "4050.00",
+ "14.46214568"
+ ],
+ [
+ "4043.33",
+ "0.01000000"
+ ],
+ [
+ "4040.00",
+ "10.00000000"
+ ],
+ [
+ "4039.00",
+ "0.30400000"
+ ],
+ [
+ "4037.23",
+ "0.09000000"
+ ],
+ [
+ "4034.47",
+ "0.20000000"
+ ],
+ [
+ "4033.33",
+ "0.01735541"
+ ],
+ [
+ "4033.07",
+ "0.10000000"
+ ],
+ [
+ "4030.00",
+ "10.07593983"
+ ],
+ [
+ "4026.00",
+ "0.00500000"
+ ],
+ [
+ "4024.42",
+ "0.10000000"
+ ],
+ [
+ "4023.60",
+ "0.35200000"
+ ],
+ [
+ "4023.12",
+ "0.00300000"
+ ],
+ [
+ "4021.20",
+ "0.00500000"
+ ],
+ [
+ "4021.00",
+ "0.17400000"
+ ],
+ [
+ "4020.00",
+ "10.00000000"
+ ],
+ [
+ "4016.83",
+ "0.61620000"
+ ],
+ [
+ "4016.12",
+ "0.05800000"
+ ],
+ [
+ "4016.02",
+ "0.14600000"
+ ],
+ [
+ "4014.47",
+ "0.20000000"
+ ],
+ [
+ "4014.05",
+ "0.11600000"
+ ],
+ [
+ "4012.02",
+ "0.15240000"
+ ],
+ [
+ "4011.10",
+ "0.10000000"
+ ],
+ [
+ "4011.00",
+ "0.01000000"
+ ],
+ [
+ "4010.58",
+ "0.11600000"
+ ],
+ [
+ "4010.00",
+ "12.00150000"
+ ],
+ [
+ "4005.45",
+ "0.01000000"
+ ],
+ [
+ "4005.00",
+ "3.00000000"
+ ],
+ [
+ "4004.19",
+ "0.10000000"
+ ],
+ [
+ "4004.00",
+ "0.01000000"
+ ],
+ [
+ "4002.00",
+ "0.40166667"
+ ],
+ [
+ "4001.13",
+ "0.47160927"
+ ],
+ [
+ "4001.11",
+ "0.10000000"
+ ],
+ [
+ "4001.00",
+ "0.62292414"
+ ],
+ [
+ "4000.79",
+ "0.00700000"
+ ],
+ [
+ "4000.08",
+ "0.23314882"
+ ],
+ [
+ "4000.00",
+ "16.31307329"
+ ],
+ [
+ "3999.99",
+ "0.44197360"
+ ],
+ [
+ "3999.00",
+ "1.00000000"
+ ],
+ [
+ "3998.58",
+ "0.22200000"
+ ],
+ [
+ "3997.00",
+ "0.00430000"
+ ],
+ [
+ "3996.17",
+ "0.97000000"
+ ],
+ [
+ "3994.47",
+ "0.20000000"
+ ],
+ [
+ "3994.00",
+ "0.02000000"
+ ],
+ [
+ "3992.51",
+ "1.00000000"
+ ],
+ [
+ "3990.00",
+ "0.15912781"
+ ],
+ [
+ "3988.00",
+ "0.05000000"
+ ],
+ [
+ "3980.00",
+ "0.05000000"
+ ],
+ [
+ "3977.60",
+ "1.54060000"
+ ],
+ [
+ "3976.24",
+ "0.13200000"
+ ],
+ [
+ "3974.47",
+ "0.20000000"
+ ],
+ [
+ "3973.60",
+ "0.72600000"
+ ],
+ [
+ "3971.60",
+ "0.17400000"
+ ],
+ [
+ "3970.83",
+ "0.88100000"
+ ],
+ [
+ "3966.22",
+ "0.00158140"
+ ],
+ [
+ "3965.00",
+ "1.00000000"
+ ],
+ [
+ "3964.58",
+ "0.66000000"
+ ],
+ [
+ "3961.00",
+ "7.00000000"
+ ],
+ [
+ "3960.00",
+ "0.03148674"
+ ],
+ [
+ "3959.97",
+ "0.20000000"
+ ],
+ [
+ "3959.00",
+ "0.01000000"
+ ],
+ [
+ "3956.00",
+ "0.08220000"
+ ],
+ [
+ "3955.00",
+ "0.05200000"
+ ],
+ [
+ "3954.47",
+ "0.20000000"
+ ],
+ [
+ "3953.00",
+ "0.01594408"
+ ],
+ [
+ "3951.00",
+ "0.00500000"
+ ],
+ [
+ "3950.00",
+ "0.04433442"
+ ],
+ [
+ "3946.10",
+ "0.06720902"
+ ],
+ [
+ "3942.32",
+ "0.01499999"
+ ],
+ [
+ "3938.00",
+ "0.02000000"
+ ],
+ [
+ "3934.47",
+ "0.20000000"
+ ],
+ [
+ "3933.05",
+ "0.10000000"
+ ],
+ [
+ "3932.00",
+ "0.11720000"
+ ],
+ [
+ "3929.00",
+ "0.01000000"
+ ],
+ [
+ "3920.00",
+ "1.00000000"
+ ],
+ [
+ "3914.47",
+ "0.20000000"
+ ],
+ [
+ "3913.14",
+ "0.41500000"
+ ],
+ [
+ "3911.28",
+ "0.00500000"
+ ],
+ [
+ "3910.00",
+ "2.04654000"
+ ],
+ [
+ "3907.00",
+ "0.76000000"
+ ],
+ [
+ "3904.58",
+ "0.11880000"
+ ],
+ [
+ "3900.00",
+ "5.17258917"
+ ],
+ [
+ "3897.00",
+ "0.11983106"
+ ],
+ [
+ "3894.73",
+ "0.20000000"
+ ],
+ [
+ "3892.00",
+ "0.11700000"
+ ],
+ [
+ "3891.00",
+ "0.22063222"
+ ],
+ [
+ "3890.00",
+ "0.03205334"
+ ],
+ [
+ "3889.00",
+ "0.06000000"
+ ],
+ [
+ "3888.88",
+ "0.00128888"
+ ],
+ [
+ "3888.00",
+ "0.10000000"
+ ],
+ [
+ "3886.50",
+ "0.20000000"
+ ],
+ [
+ "3886.00",
+ "0.13200000"
+ ],
+ [
+ "3882.00",
+ "0.15000000"
+ ],
+ [
+ "3881.00",
+ "0.00430000"
+ ],
+ [
+ "3879.00",
+ "0.01000000"
+ ],
+ [
+ "3877.00",
+ "0.00500000"
+ ],
+ [
+ "3876.00",
+ "1.00000000"
+ ],
+ [
+ "3874.73",
+ "0.20000000"
+ ],
+ [
+ "3873.00",
+ "0.00500000"
+ ],
+ [
+ "3869.00",
+ "0.08640000"
+ ],
+ [
+ "3865.85",
+ "0.20000000"
+ ],
+ [
+ "3865.58",
+ "0.23400000"
+ ],
+ [
+ "3863.00",
+ "0.14658814"
+ ],
+ [
+ "3862.00",
+ "0.00500000"
+ ],
+ [
+ "3859.00",
+ "0.13200000"
+ ],
+ [
+ "3857.78",
+ "0.02246540"
+ ],
+ [
+ "3857.22",
+ "0.01958810"
+ ],
+ [
+ "3857.00",
+ "0.10000000"
+ ],
+ [
+ "3856.00",
+ "0.00500000"
+ ],
+ [
+ "3854.73",
+ "0.20000000"
+ ],
+ [
+ "3853.00",
+ "0.66105372"
+ ],
+ [
+ "3850.60",
+ "0.37600000"
+ ],
+ [
+ "3850.59",
+ "0.01000000"
+ ],
+ [
+ "3850.00",
+ "1.00809870"
+ ],
+ [
+ "3849.00",
+ "0.01000000"
+ ],
+ [
+ "3848.00",
+ "0.01000000"
+ ],
+ [
+ "3846.00",
+ "0.37000000"
+ ],
+ [
+ "3845.21",
+ "0.10000000"
+ ],
+ [
+ "3843.83",
+ "0.34380000"
+ ],
+ [
+ "3843.12",
+ "0.06200000"
+ ],
+ [
+ "3841.16",
+ "0.00150000"
+ ],
+ [
+ "3841.05",
+ "0.12400000"
+ ],
+ [
+ "3839.02",
+ "0.16260000"
+ ],
+ [
+ "3839.00",
+ "0.53800000"
+ ],
+ [
+ "3838.00",
+ "0.01000000"
+ ],
+ [
+ "3837.58",
+ "0.12400000"
+ ],
+ [
+ "3837.00",
+ "0.11360620"
+ ],
+ [
+ "3835.75",
+ "0.25100000"
+ ],
+ [
+ "3835.00",
+ "7.00000000"
+ ],
+ [
+ "3834.73",
+ "0.20000000"
+ ],
+ [
+ "3832.11",
+ "0.00500000"
+ ],
+ [
+ "3831.41",
+ "0.31826664"
+ ],
+ [
+ "3831.35",
+ "0.10000000"
+ ],
+ [
+ "3830.00",
+ "0.54900000"
+ ],
+ [
+ "3828.00",
+ "0.01000000"
+ ],
+ [
+ "3827.50",
+ "0.01499999"
+ ],
+ [
+ "3826.13",
+ "5.62379000"
+ ],
+ [
+ "3826.00",
+ "0.23400000"
+ ],
+ [
+ "3824.60",
+ "1.63100000"
+ ],
+ [
+ "3824.40",
+ "0.05000000"
+ ],
+ [
+ "3822.00",
+ "0.09617216"
+ ],
+ [
+ "3820.00",
+ "0.03264071"
+ ],
+ [
+ "3819.96",
+ "1.00000000"
+ ],
+ [
+ "3817.83",
+ "0.93500000"
+ ],
+ [
+ "3814.73",
+ "0.20000000"
+ ],
+ [
+ "3813.13",
+ "1.49388000"
+ ],
+ [
+ "3813.00",
+ "0.01000000"
+ ],
+ [
+ "3812.00",
+ "0.00262329"
+ ],
+ [
+ "3811.58",
+ "0.70000000"
+ ],
+ [
+ "3810.00",
+ "2.00157000"
+ ],
+ [
+ "3808.00",
+ "0.00500000"
+ ],
+ [
+ "3806.00",
+ "0.31800000"
+ ],
+ [
+ "3805.00",
+ "1.94978975"
+ ],
+ [
+ "3803.00",
+ "0.01000000"
+ ],
+ [
+ "3802.00",
+ "19.61145186"
+ ],
+ [
+ "3801.55",
+ "0.01115150"
+ ],
+ [
+ "3801.00",
+ "0.82200000"
+ ],
+ [
+ "3800.00",
+ "18.53887962"
+ ],
+ [
+ "3798.00",
+ "0.01000000"
+ ],
+ [
+ "3797.00",
+ "0.01000000"
+ ],
+ [
+ "3794.73",
+ "0.20000000"
+ ],
+ [
+ "3788.89",
+ "0.02023459"
+ ],
+ [
+ "3788.00",
+ "0.75000000"
+ ],
+ [
+ "3787.00",
+ "0.01000000"
+ ],
+ [
+ "3785.68",
+ "0.00600000"
+ ],
+ [
+ "3780.00",
+ "0.01355820"
+ ],
+ [
+ "3776.00",
+ "0.89913612"
+ ],
+ [
+ "3775.00",
+ "10.00000000"
+ ],
+ [
+ "3774.73",
+ "0.20000000"
+ ],
+ [
+ "3773.27",
+ "1.00000000"
+ ],
+ [
+ "3771.00",
+ "1.00000000"
+ ],
+ [
+ "3768.00",
+ "0.00430000"
+ ],
+ [
+ "3757.00",
+ "0.01000000"
+ ],
+ [
+ "3754.94",
+ "0.05745497"
+ ],
+ [
+ "3754.73",
+ "0.20000000"
+ ],
+ [
+ "3754.00",
+ "0.00266383"
+ ],
+ [
+ "3751.00",
+ "0.86120000"
+ ],
+ [
+ "3750.00",
+ "4.93878449"
+ ],
+ [
+ "3748.00",
+ "0.00500000"
+ ],
+ [
+ "3737.00",
+ "0.01000000"
+ ],
+ [
+ "3734.73",
+ "0.20000000"
+ ],
+ [
+ "3733.78",
+ "0.08000000"
+ ],
+ [
+ "3726.00",
+ "0.91700000"
+ ],
+ [
+ "3725.00",
+ "0.02292254"
+ ],
+ [
+ "3724.00",
+ "4.83808094"
+ ],
+ [
+ "3720.00",
+ "0.44123387"
+ ],
+ [
+ "3719.30",
+ "1.50000000"
+ ],
+ [
+ "3717.00",
+ "0.01000000"
+ ],
+ [
+ "3715.00",
+ "10.00000000"
+ ],
+ [
+ "3714.73",
+ "0.20000000"
+ ],
+ [
+ "3710.00",
+ "2.00162000"
+ ],
+ [
+ "3707.00",
+ "0.00500000"
+ ],
+ [
+ "3705.95",
+ "0.05000000"
+ ],
+ [
+ "3701.00",
+ "0.87280000"
+ ],
+ [
+ "3700.00",
+ "6.31582651"
+ ],
+ [
+ "3699.00",
+ "0.01000000"
+ ],
+ [
+ "3696.00",
+ "0.00500000"
+ ],
+ [
+ "3694.73",
+ "0.20000000"
+ ],
+ [
+ "3689.00",
+ "0.00162646"
+ ],
+ [
+ "3688.09",
+ "0.00931932"
+ ],
+ [
+ "3688.00",
+ "0.23500000"
+ ],
+ [
+ "3683.00",
+ "0.32000000"
+ ],
+ [
+ "3680.00",
+ "0.03388247"
+ ],
+ [
+ "3676.00",
+ "0.87880000"
+ ],
+ [
+ "3674.73",
+ "0.20000000"
+ ],
+ [
+ "3668.40",
+ "0.05000000"
+ ],
+ [
+ "3667.00",
+ "0.01000000"
+ ],
+ [
+ "3666.00",
+ "0.00500000"
+ ],
+ [
+ "3665.00",
+ "0.11000000"
+ ],
+ [
+ "3661.00",
+ "0.00140000"
+ ],
+ [
+ "3658.00",
+ "0.00430000"
+ ],
+ [
+ "3654.73",
+ "0.20000000"
+ ],
+ [
+ "3653.53",
+ "0.00844115"
+ ],
+ [
+ "3653.00",
+ "0.11000000"
+ ],
+ [
+ "3651.20",
+ "0.00500000"
+ ],
+ [
+ "3651.11",
+ "0.02239807"
+ ],
+ [
+ "3651.00",
+ "0.88480000"
+ ],
+ [
+ "3650.00",
+ "4.41665469"
+ ],
+ [
+ "3648.00",
+ "5.00000000"
+ ],
+ [
+ "3647.00",
+ "0.05000000"
+ ],
+ [
+ "3639.00",
+ "0.02500000"
+ ],
+ [
+ "3637.00",
+ "0.01000000"
+ ],
+ [
+ "3634.73",
+ "0.20000000"
+ ],
+ [
+ "3626.00",
+ "0.89090000"
+ ],
+ [
+ "3625.68",
+ "1.00000000"
+ ],
+ [
+ "3625.00",
+ "0.20000000"
+ ],
+ [
+ "3616.85",
+ "0.05000000"
+ ],
+ [
+ "3614.73",
+ "0.20000000"
+ ],
+ [
+ "3613.15",
+ "0.01499999"
+ ],
+ [
+ "3611.00",
+ "1.10000000"
+ ],
+ [
+ "3610.04",
+ "0.00220219"
+ ],
+ [
+ "3610.00",
+ "2.00168000"
+ ],
+ [
+ "3609.00",
+ "0.28630091"
+ ],
+ [
+ "3608.89",
+ "0.02697042"
+ ],
+ [
+ "3607.00",
+ "0.01000000"
+ ],
+ [
+ "3606.89",
+ "1.00000000"
+ ],
+ [
+ "3603.00",
+ "0.01000000"
+ ],
+ [
+ "3601.00",
+ "0.89710000"
+ ],
+ [
+ "3600.00",
+ "0.82261648"
+ ],
+ [
+ "3596.00",
+ "0.05000000"
+ ],
+ [
+ "3595.00",
+ "0.01000000"
+ ],
+ [
+ "3594.73",
+ "0.20000000"
+ ],
+ [
+ "3590.00",
+ "0.05000000"
+ ],
+ [
+ "3589.97",
+ "0.10000000"
+ ],
+ [
+ "3588.88",
+ "1.00000000"
+ ],
+ [
+ "3588.00",
+ "0.05000000"
+ ],
+ [
+ "3587.88",
+ "0.10000000"
+ ],
+ [
+ "3581.10",
+ "0.00500000"
+ ],
+ [
+ "3579.54",
+ "0.00339863"
+ ],
+ [
+ "3576.00",
+ "0.90330000"
+ ],
+ [
+ "3575.26",
+ "0.05000000"
+ ],
+ [
+ "3574.73",
+ "0.20000000"
+ ],
+ [
+ "3571.00",
+ "0.13500000"
+ ],
+ [
+ "3570.00",
+ "0.10000000"
+ ],
+ [
+ "3568.44",
+ "0.04966776"
+ ],
+ [
+ "3567.22",
+ "0.20000000"
+ ],
+ [
+ "3563.00",
+ "0.01000000"
+ ],
+ [
+ "3559.00",
+ "0.02500000"
+ ],
+ [
+ "3558.78",
+ "0.02809670"
+ ],
+ [
+ "3558.00",
+ "0.70000000"
+ ],
+ [
+ "3556.23",
+ "2.02467000"
+ ],
+ [
+ "3555.00",
+ "0.02000000"
+ ],
+ [
+ "3554.73",
+ "0.20000000"
+ ],
+ [
+ "3551.00",
+ "0.91400000"
+ ],
+ [
+ "3550.72",
+ "0.01500000"
+ ],
+ [
+ "3550.00",
+ "1.58477183"
+ ],
+ [
+ "3548.00",
+ "0.05000000"
+ ],
+ [
+ "3546.66",
+ "0.00204535"
+ ],
+ [
+ "3545.00",
+ "0.02200000"
+ ],
+ [
+ "3544.44",
+ "0.02351104"
+ ],
+ [
+ "3538.00",
+ "0.01000000"
+ ],
+ [
+ "3537.01",
+ "0.02827000"
+ ],
+ [
+ "3534.73",
+ "0.20000000"
+ ],
+ [
+ "3531.50",
+ "0.01800000"
+ ],
+ [
+ "3531.00",
+ "0.83150382"
+ ],
+ [
+ "3526.00",
+ "0.91610000"
+ ],
+ [
+ "3522.00",
+ "0.50000000"
+ ],
+ [
+ "3520.00",
+ "0.01000000"
+ ],
+ [
+ "3519.00",
+ "0.51000000"
+ ],
+ [
+ "3514.73",
+ "0.20000000"
+ ],
+ [
+ "3511.77",
+ "0.48000000"
+ ],
+ [
+ "3510.00",
+ "4.30373000"
+ ],
+ [
+ "3509.00",
+ "0.02000000"
+ ],
+ [
+ "3507.91",
+ "0.01499999"
+ ],
+ [
+ "3505.50",
+ "0.00500000"
+ ],
+ [
+ "3502.00",
+ "1.50000000"
+ ],
+ [
+ "3501.90",
+ "0.00227020"
+ ],
+ [
+ "3501.00",
+ "0.98270000"
+ ],
+ [
+ "3500.82",
+ "0.00900000"
+ ],
+ [
+ "3500.00",
+ "29.52644856"
+ ],
+ [
+ "3496.00",
+ "0.01000000"
+ ],
+ [
+ "3494.73",
+ "0.20000000"
+ ],
+ [
+ "3494.00",
+ "0.00500000"
+ ],
+ [
+ "3491.00",
+ "0.01000000"
+ ],
+ [
+ "3489.89",
+ "0.08101114"
+ ],
+ [
+ "3488.00",
+ "0.05000000"
+ ],
+ [
+ "3478.00",
+ "0.05000000"
+ ],
+ [
+ "3475.00",
+ "1.10229640"
+ ],
+ [
+ "3474.73",
+ "0.20000000"
+ ],
+ [
+ "3467.79",
+ "0.10000000"
+ ],
+ [
+ "3464.00",
+ "0.01000000"
+ ],
+ [
+ "3459.00",
+ "0.05000000"
+ ],
+ [
+ "3454.73",
+ "0.20000000"
+ ],
+ [
+ "3450.00",
+ "10.00000000"
+ ],
+ [
+ "3448.13",
+ "0.00217509"
+ ],
+ [
+ "3448.00",
+ "0.00930000"
+ ],
+ [
+ "3445.00",
+ "0.02554427"
+ ],
+ [
+ "3444.00",
+ "0.05000000"
+ ],
+ [
+ "3441.00",
+ "0.00400000"
+ ],
+ [
+ "3440.00",
+ "0.40000000"
+ ],
+ [
+ "3434.73",
+ "0.20000000"
+ ],
+ [
+ "3432.00",
+ "0.26927738"
+ ],
+ [
+ "3429.00",
+ "0.05000000"
+ ],
+ [
+ "3420.97",
+ "0.00500000"
+ ],
+ [
+ "3419.00",
+ "0.05000000"
+ ],
+ [
+ "3414.73",
+ "0.20000000"
+ ],
+ [
+ "3414.00",
+ "0.01000000"
+ ],
+ [
+ "3412.85",
+ "0.00219758"
+ ],
+ [
+ "3411.10",
+ "0.00500000"
+ ],
+ [
+ "3411.00",
+ "1.00000000"
+ ],
+ [
+ "3410.00",
+ "2.00178000"
+ ],
+ [
+ "3409.00",
+ "0.05000000"
+ ],
+ [
+ "3405.74",
+ "0.01499999"
+ ],
+ [
+ "3404.00",
+ "0.00700000"
+ ],
+ [
+ "3402.00",
+ "4.00000000"
+ ],
+ [
+ "3401.00",
+ "0.17235999"
+ ],
+ [
+ "3400.00",
+ "4.46965126"
+ ],
+ [
+ "3399.97",
+ "0.30000000"
+ ],
+ [
+ "3399.32",
+ "0.30000000"
+ ],
+ [
+ "3397.79",
+ "3.90264407"
+ ],
+ [
+ "3394.73",
+ "0.20000000"
+ ],
+ [
+ "3389.00",
+ "0.05000000"
+ ],
+ [
+ "3388.00",
+ "0.02000000"
+ ],
+ [
+ "3387.00",
+ "0.01000000"
+ ],
+ [
+ "3386.55",
+ "0.03435977"
+ ],
+ [
+ "3383.00",
+ "0.07356488"
+ ],
+ [
+ "3378.00",
+ "0.01000000"
+ ],
+ [
+ "3374.73",
+ "0.20000000"
+ ],
+ [
+ "3369.00",
+ "0.05000000"
+ ],
+ [
+ "3360.00",
+ "0.78368250"
+ ],
+ [
+ "3354.73",
+ "0.20000000"
+ ],
+ [
+ "3350.00",
+ "1.30000000"
+ ],
+ [
+ "3349.00",
+ "0.05000000"
+ ],
+ [
+ "3348.00",
+ "0.00430000"
+ ],
+ [
+ "3340.00",
+ "0.01500000"
+ ],
+ [
+ "3338.00",
+ "0.02211500"
+ ],
+ [
+ "3337.58",
+ "0.03339419"
+ ],
+ [
+ "3335.00",
+ "0.08553523"
+ ],
+ [
+ "3334.73",
+ "0.20000000"
+ ],
+ [
+ "3333.00",
+ "146.26083108"
+ ],
+ [
+ "3331.11",
+ "0.10000000"
+ ],
+ [
+ "3330.01",
+ "0.09189600"
+ ],
+ [
+ "3329.00",
+ "0.05000000"
+ ],
+ [
+ "3325.00",
+ "0.00300000"
+ ],
+ [
+ "3321.00",
+ "0.00300000"
+ ],
+ [
+ "3320.00",
+ "1.00000000"
+ ],
+ [
+ "3318.00",
+ "0.33579867"
+ ],
+ [
+ "3314.73",
+ "0.20000000"
+ ],
+ [
+ "3312.50",
+ "0.00580000"
+ ],
+ [
+ "3310.00",
+ "2.10181000"
+ ],
+ [
+ "3309.99",
+ "0.27658089"
+ ],
+ [
+ "3309.00",
+ "0.05000000"
+ ],
+ [
+ "3307.95",
+ "0.05199292"
+ ],
+ [
+ "3306.54",
+ "0.01499999"
+ ],
+ [
+ "3306.00",
+ "0.14000000"
+ ],
+ [
+ "3305.00",
+ "0.10021180"
+ ],
+ [
+ "3304.00",
+ "0.40000000"
+ ],
+ [
+ "3303.00",
+ "7.05000000"
+ ],
+ [
+ "3301.00",
+ "0.16777703"
+ ],
+ [
+ "3300.98",
+ "0.00787100"
+ ],
+ [
+ "3300.33",
+ "0.30000000"
+ ],
+ [
+ "3300.05",
+ "3.03268132"
+ ],
+ [
+ "3300.00",
+ "17.26844752"
+ ],
+ [
+ "3298.00",
+ "0.31000000"
+ ],
+ [
+ "3295.00",
+ "2.10000000"
+ ],
+ [
+ "3294.73",
+ "0.20000000"
+ ],
+ [
+ "3291.63",
+ "0.04000000"
+ ],
+ [
+ "3288.00",
+ "0.50000000"
+ ],
+ [
+ "3285.00",
+ "0.01000000"
+ ],
+ [
+ "3283.00",
+ "1.01000000"
+ ],
+ [
+ "3278.00",
+ "0.55000000"
+ ],
+ [
+ "3277.00",
+ "0.27000000"
+ ],
+ [
+ "3275.20",
+ "0.00500000"
+ ],
+ [
+ "3275.00",
+ "0.25000000"
+ ],
+ [
+ "3274.73",
+ "0.20000000"
+ ],
+ [
+ "3270.21",
+ "0.10000000"
+ ],
+ [
+ "3270.00",
+ "1.00000000"
+ ],
+ [
+ "3269.00",
+ "0.25000000"
+ ],
+ [
+ "3268.50",
+ "0.04382513"
+ ],
+ [
+ "3267.00",
+ "0.25000000"
+ ],
+ [
+ "3265.21",
+ "0.10000000"
+ ],
+ [
+ "3262.00",
+ "0.81462311"
+ ],
+ [
+ "3260.21",
+ "0.10000000"
+ ],
+ [
+ "3259.00",
+ "1.00000000"
+ ],
+ [
+ "3258.00",
+ "0.32500000"
+ ],
+ [
+ "3256.13",
+ "0.19316796"
+ ],
+ [
+ "3255.25",
+ "0.01000000"
+ ],
+ [
+ "3255.21",
+ "0.10000000"
+ ],
+ [
+ "3254.73",
+ "0.20000000"
+ ],
+ [
+ "3252.00",
+ "0.06200000"
+ ],
+ [
+ "3251.90",
+ "0.00244472"
+ ],
+ [
+ "3251.21",
+ "1.50000000"
+ ],
+ [
+ "3250.21",
+ "0.10000000"
+ ],
+ [
+ "3250.00",
+ "2.02403230"
+ ],
+ [
+ "3249.00",
+ "0.05000000"
+ ],
+ [
+ "3248.01",
+ "0.05000000"
+ ],
+ [
+ "3248.00",
+ "0.94000000"
+ ],
+ [
+ "3247.00",
+ "0.25000000"
+ ],
+ [
+ "3246.00",
+ "0.25000000"
+ ],
+ [
+ "3245.21",
+ "0.10000000"
+ ],
+ [
+ "3244.00",
+ "0.50000000"
+ ],
+ [
+ "3243.31",
+ "0.05000000"
+ ],
+ [
+ "3243.00",
+ "0.25000000"
+ ],
+ [
+ "3240.45",
+ "0.30782360"
+ ],
+ [
+ "3240.21",
+ "0.10000000"
+ ],
+ [
+ "3240.00",
+ "0.00400000"
+ ],
+ [
+ "3238.00",
+ "0.15000000"
+ ],
+ [
+ "3237.11",
+ "0.00540000"
+ ],
+ [
+ "3237.00",
+ "0.25000000"
+ ],
+ [
+ "3235.21",
+ "0.10000000"
+ ],
+ [
+ "3234.73",
+ "0.20000000"
+ ],
+ [
+ "3234.41",
+ "0.00500000"
+ ],
+ [
+ "3234.00",
+ "0.25000000"
+ ],
+ [
+ "3233.00",
+ "2.00000000"
+ ],
+ [
+ "3232.00",
+ "0.01000000"
+ ],
+ [
+ "3230.21",
+ "0.10000000"
+ ],
+ [
+ "3230.00",
+ "0.14757894"
+ ],
+ [
+ "3229.00",
+ "0.25000000"
+ ],
+ [
+ "3228.00",
+ "0.25000000"
+ ],
+ [
+ "3225.21",
+ "11.61000000"
+ ],
+ [
+ "3225.00",
+ "0.71635659"
+ ],
+ [
+ "3224.84",
+ "0.05300000"
+ ],
+ [
+ "3221.00",
+ "0.01682396"
+ ],
+ [
+ "3220.00",
+ "1.00000000"
+ ],
+ [
+ "3219.48",
+ "12.55000000"
+ ],
+ [
+ "3218.00",
+ "0.50000000"
+ ],
+ [
+ "3215.00",
+ "1.50893856"
+ ],
+ [
+ "3214.73",
+ "0.20000000"
+ ],
+ [
+ "3212.00",
+ "1.25000000"
+ ],
+ [
+ "3211.45",
+ "12.55000000"
+ ],
+ [
+ "3211.00",
+ "0.03000000"
+ ],
+ [
+ "3210.99",
+ "1.00000000"
+ ],
+ [
+ "3210.90",
+ "1.00000000"
+ ],
+ [
+ "3210.00",
+ "2.00160000"
+ ],
+ [
+ "3209.00",
+ "0.25000000"
+ ],
+ [
+ "3205.20",
+ "0.00420000"
+ ],
+ [
+ "3204.01",
+ "0.30000000"
+ ],
+ [
+ "3204.00",
+ "7.00000000"
+ ],
+ [
+ "3203.44",
+ "12.55000000"
+ ],
+ [
+ "3203.00",
+ "31.14676865"
+ ],
+ [
+ "3202.00",
+ "0.25000000"
+ ],
+ [
+ "3200.00",
+ "6.45272187"
+ ],
+ [
+ "3195.45",
+ "12.55000000"
+ ],
+ [
+ "3195.00",
+ "0.25000000"
+ ],
+ [
+ "3194.73",
+ "0.20000000"
+ ],
+ [
+ "3193.78",
+ "0.10000000"
+ ],
+ [
+ "3193.00",
+ "0.08856874"
+ ],
+ [
+ "3188.00",
+ "1.76000000"
+ ],
+ [
+ "3187.90",
+ "0.30000000"
+ ],
+ [
+ "3187.48",
+ "12.55000000"
+ ],
+ [
+ "3186.13",
+ "0.37994700"
+ ],
+ [
+ "3185.00",
+ "0.00500000"
+ ],
+ [
+ "3183.00",
+ "2.00000000"
+ ],
+ [
+ "3182.01",
+ "1.10000000"
+ ],
+ [
+ "3180.61",
+ "0.15918050"
+ ],
+ [
+ "3180.00",
+ "1.02221698"
+ ],
+ [
+ "3179.54",
+ "12.55000000"
+ ],
+ [
+ "3178.00",
+ "0.75000000"
+ ],
+ [
+ "3177.00",
+ "1.00000000"
+ ],
+ [
+ "3176.00",
+ "0.26000000"
+ ],
+ [
+ "3174.73",
+ "0.20000000"
+ ],
+ [
+ "3174.00",
+ "0.25000000"
+ ],
+ [
+ "3171.61",
+ "12.55000000"
+ ],
+ [
+ "3168.00",
+ "1.25000000"
+ ],
+ [
+ "3163.70",
+ "12.55000000"
+ ],
+ [
+ "3163.32",
+ "0.03420000"
+ ],
+ [
+ "3162.77",
+ "1.00000000"
+ ],
+ [
+ "3158.00",
+ "1.01500000"
+ ],
+ [
+ "3155.81",
+ "12.55000000"
+ ],
+ [
+ "3154.73",
+ "0.20000000"
+ ],
+ [
+ "3150.00",
+ "3.49417777"
+ ],
+ [
+ "3147.94",
+ "12.55000000"
+ ],
+ [
+ "3146.00",
+ "0.11000000"
+ ],
+ [
+ "3142.04",
+ "0.00600000"
+ ],
+ [
+ "3142.00",
+ "0.50000000"
+ ],
+ [
+ "3140.09",
+ "12.55000000"
+ ],
+ [
+ "3140.00",
+ "0.10000000"
+ ],
+ [
+ "3138.68",
+ "1.00000000"
+ ],
+ [
+ "3138.00",
+ "1.00000000"
+ ],
+ [
+ "3134.73",
+ "0.20000000"
+ ],
+ [
+ "3133.00",
+ "1.00500000"
+ ],
+ [
+ "3132.26",
+ "12.60000000"
+ ],
+ [
+ "3130.00",
+ "0.10000000"
+ ],
+ [
+ "3128.00",
+ "1.26000000"
+ ],
+ [
+ "3127.00",
+ "0.49024944"
+ ],
+ [
+ "3126.00",
+ "0.00200000"
+ ],
+ [
+ "3124.45",
+ "12.60000000"
+ ],
+ [
+ "3122.55",
+ "0.94963091"
+ ],
+ [
+ "3120.00",
+ "0.10500000"
+ ],
+ [
+ "3118.82",
+ "0.00799341"
+ ],
+ [
+ "3117.00",
+ "0.35000000"
+ ],
+ [
+ "3116.65",
+ "12.55000000"
+ ],
+ [
+ "3114.73",
+ "0.20000000"
+ ],
+ [
+ "3113.13",
+ "0.16510714"
+ ],
+ [
+ "3112.00",
+ "0.36000000"
+ ],
+ [
+ "3111.70",
+ "0.10000000"
+ ],
+ [
+ "3111.00",
+ "0.07000000"
+ ],
+ [
+ "3110.00",
+ "0.10161000"
+ ],
+ [
+ "3109.00",
+ "0.10000000"
+ ],
+ [
+ "3108.88",
+ "12.55000000"
+ ],
+ [
+ "3105.03",
+ "0.33239616"
+ ],
+ [
+ "3105.00",
+ "1.80981323"
+ ],
+ [
+ "3101.13",
+ "12.60000000"
+ ],
+ [
+ "3101.00",
+ "0.50000000"
+ ],
+ [
+ "3100.00",
+ "526.39378391"
+ ],
+ [
+ "3099.00",
+ "3.00000000"
+ ],
+ [
+ "3095.00",
+ "0.80148626"
+ ],
+ [
+ "3094.73",
+ "0.20000000"
+ ],
+ [
+ "3093.40",
+ "12.60000000"
+ ],
+ [
+ "3091.75",
+ "100.20000000"
+ ],
+ [
+ "3090.77",
+ "0.61500000"
+ ],
+ [
+ "3090.30",
+ "0.00300000"
+ ],
+ [
+ "3090.17",
+ "0.00420000"
+ ],
+ [
+ "3090.00",
+ "0.10000000"
+ ],
+ [
+ "3088.00",
+ "2.01619171"
+ ],
+ [
+ "3085.68",
+ "12.60000000"
+ ],
+ [
+ "3084.62",
+ "0.16000000"
+ ],
+ [
+ "3082.84",
+ "0.03000000"
+ ],
+ [
+ "3081.00",
+ "0.01280000"
+ ],
+ [
+ "3080.00",
+ "0.10000000"
+ ],
+ [
+ "3079.98",
+ "1.00000000"
+ ],
+ [
+ "3078.00",
+ "0.00250000"
+ ],
+ [
+ "3077.99",
+ "12.60000000"
+ ],
+ [
+ "3077.00",
+ "0.00300000"
+ ],
+ [
+ "3075.00",
+ "1.92055100"
+ ],
+ [
+ "3074.73",
+ "0.20000000"
+ ],
+ [
+ "3070.31",
+ "12.60000000"
+ ],
+ [
+ "3070.00",
+ "0.10000000"
+ ],
+ [
+ "3069.80",
+ "0.35688966"
+ ],
+ [
+ "3068.00",
+ "0.25000000"
+ ],
+ [
+ "3067.00",
+ "5.00000000"
+ ],
+ [
+ "3065.33",
+ "0.20000000"
+ ],
+ [
+ "3063.13",
+ "0.16780221"
+ ],
+ [
+ "3062.65",
+ "12.60000000"
+ ],
+ [
+ "3061.14",
+ "100.20000000"
+ ],
+ [
+ "3060.00",
+ "0.10000000"
+ ],
+ [
+ "3055.55",
+ "0.09270796"
+ ],
+ [
+ "3055.00",
+ "1.31000000"
+ ],
+ [
+ "3054.73",
+ "0.20000000"
+ ],
+ [
+ "3052.00",
+ "0.27000000"
+ ],
+ [
+ "3051.00",
+ "0.25000000"
+ ],
+ [
+ "3050.00",
+ "3.30000000"
+ ],
+ [
+ "3049.83",
+ "0.02000000"
+ ],
+ [
+ "3049.48",
+ "0.40000000"
+ ],
+ [
+ "3043.00",
+ "0.01000000"
+ ],
+ [
+ "3042.82",
+ "1.63900000"
+ ],
+ [
+ "3042.06",
+ "0.01132785"
+ ],
+ [
+ "3042.00",
+ "0.02000000"
+ ],
+ [
+ "3039.00",
+ "0.25000000"
+ ],
+ [
+ "3038.02",
+ "0.16416943"
+ ],
+ [
+ "3038.00",
+ "0.01645820"
+ ],
+ [
+ "3035.69",
+ "0.15859086"
+ ],
+ [
+ "3034.73",
+ "0.20000000"
+ ],
+ [
+ "3033.28",
+ "0.00182310"
+ ],
+ [
+ "3033.00",
+ "0.25000000"
+ ],
+ [
+ "3032.00",
+ "0.00170000"
+ ],
+ [
+ "3031.20",
+ "0.99918184"
+ ],
+ [
+ "3031.00",
+ "5.00000000"
+ ],
+ [
+ "3030.83",
+ "100.20000000"
+ ],
+ [
+ "3030.00",
+ "1.04814284"
+ ],
+ [
+ "3028.00",
+ "0.00170000"
+ ],
+ [
+ "3026.00",
+ "1.00000000"
+ ],
+ [
+ "3025.00",
+ "0.50000000"
+ ],
+ [
+ "3024.54",
+ "0.63300000"
+ ],
+ [
+ "3022.04",
+ "0.00620000"
+ ],
+ [
+ "3021.22",
+ "22.45000000"
+ ],
+ [
+ "3020.00",
+ "1.10143377"
+ ],
+ [
+ "3017.17",
+ "0.67100000"
+ ],
+ [
+ "3017.00",
+ "0.10200000"
+ ],
+ [
+ "3015.10",
+ "0.17715232"
+ ],
+ [
+ "3014.73",
+ "0.20000000"
+ ],
+ [
+ "3013.13",
+ "0.17058673"
+ ],
+ [
+ "3011.00",
+ "0.02000000"
+ ],
+ [
+ "3010.00",
+ "7.58430957"
+ ],
+ [
+ "3007.00",
+ "0.08200000"
+ ],
+ [
+ "3006.66",
+ "1.00000000"
+ ],
+ [
+ "3006.00",
+ "10.00000000"
+ ],
+ [
+ "3005.50",
+ "0.05766947"
+ ],
+ [
+ "3005.00",
+ "1.75140190"
+ ],
+ [
+ "3003.00",
+ "0.03000000"
+ ],
+ [
+ "3001.30",
+ "0.00170000"
+ ],
+ [
+ "3001.10",
+ "0.02405000"
+ ],
+ [
+ "3001.00",
+ "5.32000000"
+ ],
+ [
+ "3000.82",
+ "100.20000000"
+ ],
+ [
+ "3000.01",
+ "0.73809400"
+ ],
+ [
+ "3000.00",
+ "37.96260157"
+ ],
+ [
+ "2999.99",
+ "1.00000000"
+ ],
+ [
+ "2999.00",
+ "0.00530426"
+ ],
+ [
+ "2994.73",
+ "0.20000000"
+ ],
+ [
+ "2994.00",
+ "0.17282565"
+ ],
+ [
+ "2990.00",
+ "0.40000000"
+ ],
+ [
+ "2988.00",
+ "3.11200000"
+ ],
+ [
+ "2980.00",
+ "1.00500000"
+ ],
+ [
+ "2979.98",
+ "1.00000000"
+ ],
+ [
+ "2977.00",
+ "0.00200000"
+ ],
+ [
+ "2975.00",
+ "1.00000000"
+ ],
+ [
+ "2974.73",
+ "0.20000000"
+ ],
+ [
+ "2973.88",
+ "0.61000000"
+ ],
+ [
+ "2971.11",
+ "100.20000000"
+ ],
+ [
+ "2967.97",
+ "0.10000000"
+ ],
+ [
+ "2966.00",
+ "2.00000000"
+ ],
+ [
+ "2961.00",
+ "0.15000000"
+ ],
+ [
+ "2959.73",
+ "0.65200000"
+ ],
+ [
+ "2955.86",
+ "2.00000000"
+ ],
+ [
+ "2955.55",
+ "0.09021000"
+ ],
+ [
+ "2954.73",
+ "0.20000000"
+ ],
+ [
+ "2951.00",
+ "0.55300000"
+ ],
+ [
+ "2950.00",
+ "1.90190361"
+ ],
+ [
+ "2948.00",
+ "0.01000000"
+ ],
+ [
+ "2946.08",
+ "0.03507798"
+ ],
+ [
+ "2945.00",
+ "1.00000000"
+ ],
+ [
+ "2935.00",
+ "55.00000000"
+ ],
+ [
+ "2934.73",
+ "0.20000000"
+ ],
+ [
+ "2933.00",
+ "0.00200000"
+ ],
+ [
+ "2930.00",
+ "0.00372000"
+ ],
+ [
+ "2926.00",
+ "0.28000000"
+ ],
+ [
+ "2925.00",
+ "2.50000000"
+ ],
+ [
+ "2920.00",
+ "1.00500000"
+ ],
+ [
+ "2916.00",
+ "0.50000000"
+ ],
+ [
+ "2914.73",
+ "0.20000000"
+ ],
+ [
+ "2911.33",
+ "0.00740000"
+ ],
+ [
+ "2910.00",
+ "0.00174000"
+ ],
+ [
+ "2908.24",
+ "0.03429909"
+ ],
+ [
+ "2907.70",
+ "0.12000000"
+ ],
+ [
+ "2901.00",
+ "0.00300000"
+ ],
+ [
+ "2900.00",
+ "4.09613449"
+ ],
+ [
+ "2897.60",
+ "0.00180000"
+ ],
+ [
+ "2896.31",
+ "0.67100000"
+ ],
+ [
+ "2894.73",
+ "0.20000000"
+ ],
+ [
+ "2890.00",
+ "0.01717993"
+ ],
+ [
+ "2888.88",
+ "0.00174115"
+ ],
+ [
+ "2888.00",
+ "0.01731302"
+ ],
+ [
+ "2885.00",
+ "0.13000000"
+ ],
+ [
+ "2882.14",
+ "0.02991474"
+ ],
+ [
+ "2879.98",
+ "1.00000000"
+ ],
+ [
+ "2877.00",
+ "0.00300000"
+ ],
+ [
+ "2875.00",
+ "1.00000000"
+ ],
+ [
+ "2874.73",
+ "0.20000000"
+ ],
+ [
+ "2871.00",
+ "1.10000000"
+ ],
+ [
+ "2868.00",
+ "0.00700000"
+ ],
+ [
+ "2866.00",
+ "0.05833224"
+ ],
+ [
+ "2865.05",
+ "0.26134048"
+ ],
+ [
+ "2863.14",
+ "0.00833224"
+ ],
+ [
+ "2859.82",
+ "0.05000000"
+ ],
+ [
+ "2854.73",
+ "0.20000000"
+ ],
+ [
+ "2850.10",
+ "0.01500000"
+ ],
+ [
+ "2850.00",
+ "9.97968081"
+ ],
+ [
+ "2835.00",
+ "2.00000000"
+ ],
+ [
+ "2834.73",
+ "0.20000000"
+ ],
+ [
+ "2830.00",
+ "0.50000000"
+ ],
+ [
+ "2828.00",
+ "0.01200000"
+ ],
+ [
+ "2826.00",
+ "0.29000000"
+ ],
+ [
+ "2822.00",
+ "0.78560724"
+ ],
+ [
+ "2821.00",
+ "0.45000000"
+ ],
+ [
+ "2819.00",
+ "2.33804540"
+ ],
+ [
+ "2817.00",
+ "0.30816116"
+ ],
+ [
+ "2814.73",
+ "0.20000000"
+ ],
+ [
+ "2812.00",
+ "0.51500000"
+ ],
+ [
+ "2811.70",
+ "0.10000000"
+ ],
+ [
+ "2810.00",
+ "1.07871701"
+ ],
+ [
+ "2806.00",
+ "0.01530000"
+ ],
+ [
+ "2805.06",
+ "0.02000000"
+ ],
+ [
+ "2801.00",
+ "0.00400000"
+ ],
+ [
+ "2800.11",
+ "1.32412655"
+ ],
+ [
+ "2800.10",
+ "0.01500000"
+ ],
+ [
+ "2800.00",
+ "8.14818539"
+ ],
+ [
+ "2794.73",
+ "0.20000000"
+ ],
+ [
+ "2789.00",
+ "1.00000000"
+ ],
+ [
+ "2788.00",
+ "0.01100000"
+ ],
+ [
+ "2782.47",
+ "0.31202169"
+ ],
+ [
+ "2779.98",
+ "1.00000000"
+ ],
+ [
+ "2777.00",
+ "0.00200000"
+ ],
+ [
+ "2774.73",
+ "0.20000000"
+ ],
+ [
+ "2773.52",
+ "1.41500000"
+ ],
+ [
+ "2769.00",
+ "1.10000000"
+ ],
+ [
+ "2766.00",
+ "1.00000000"
+ ],
+ [
+ "2762.49",
+ "2.00000000"
+ ],
+ [
+ "2759.17",
+ "10.14748275"
+ ],
+ [
+ "2755.00",
+ "0.25000000"
+ ],
+ [
+ "2754.73",
+ "0.20000000"
+ ],
+ [
+ "2754.64",
+ "0.01000000"
+ ],
+ [
+ "2750.10",
+ "0.01500000"
+ ],
+ [
+ "2750.00",
+ "1.89720455"
+ ],
+ [
+ "2735.88",
+ "0.01179910"
+ ],
+ [
+ "2735.00",
+ "0.00400000"
+ ],
+ [
+ "2734.73",
+ "0.20000000"
+ ],
+ [
+ "2733.00",
+ "0.00200000"
+ ],
+ [
+ "2726.00",
+ "0.66800000"
+ ],
+ [
+ "2723.07",
+ "1.52000000"
+ ],
+ [
+ "2714.73",
+ "0.20000000"
+ ],
+ [
+ "2711.00",
+ "5.00000000"
+ ],
+ [
+ "2710.80",
+ "0.01100000"
+ ],
+ [
+ "2710.00",
+ "0.00190000"
+ ],
+ [
+ "2705.00",
+ "0.12000000"
+ ],
+ [
+ "2704.01",
+ "0.05000000"
+ ],
+ [
+ "2704.00",
+ "0.50000000"
+ ],
+ [
+ "2701.00",
+ "0.00800000"
+ ],
+ [
+ "2700.10",
+ "0.01500000"
+ ],
+ [
+ "2700.00",
+ "5.92794444"
+ ],
+ [
+ "2694.73",
+ "0.20000000"
+ ],
+ [
+ "2690.70",
+ "0.20000000"
+ ],
+ [
+ "2690.00",
+ "0.10000000"
+ ],
+ [
+ "2688.00",
+ "0.01200000"
+ ],
+ [
+ "2685.54",
+ "0.00380000"
+ ],
+ [
+ "2681.94",
+ "0.00303030"
+ ],
+ [
+ "2680.00",
+ "0.00200000"
+ ],
+ [
+ "2679.98",
+ "1.00000000"
+ ],
+ [
+ "2679.97",
+ "1.00000000"
+ ],
+ [
+ "2677.00",
+ "0.00300000"
+ ],
+ [
+ "2675.00",
+ "0.02796729"
+ ],
+ [
+ "2674.73",
+ "0.20000000"
+ ],
+ [
+ "2671.00",
+ "1.15000000"
+ ],
+ [
+ "2666.00",
+ "0.90000000"
+ ],
+ [
+ "2656.00",
+ "0.38000000"
+ ],
+ [
+ "2655.93",
+ "1.49900000"
+ ],
+ [
+ "2654.73",
+ "0.20000000"
+ ],
+ [
+ "2650.10",
+ "0.01500000"
+ ],
+ [
+ "2650.00",
+ "5.65022641"
+ ],
+ [
+ "2648.27",
+ "0.00467400"
+ ],
+ [
+ "2645.00",
+ "3.10000000"
+ ],
+ [
+ "2643.00",
+ "1.00000000"
+ ],
+ [
+ "2636.00",
+ "0.00500000"
+ ],
+ [
+ "2635.38",
+ "0.00303030"
+ ],
+ [
+ "2635.00",
+ "0.00800000"
+ ],
+ [
+ "2634.73",
+ "0.20000000"
+ ],
+ [
+ "2631.90",
+ "0.61000000"
+ ],
+ [
+ "2630.00",
+ "0.00500000"
+ ],
+ [
+ "2625.50",
+ "0.71102500"
+ ],
+ [
+ "2621.01",
+ "0.08000000"
+ ],
+ [
+ "2614.73",
+ "0.20000000"
+ ],
+ [
+ "2613.88",
+ "0.00953755"
+ ],
+ [
+ "2611.00",
+ "0.00574900"
+ ],
+ [
+ "2610.00",
+ "0.00195000"
+ ],
+ [
+ "2607.00",
+ "100.00000000"
+ ],
+ [
+ "2606.00",
+ "0.32000000"
+ ],
+ [
+ "2604.00",
+ "0.00700000"
+ ],
+ [
+ "2601.00",
+ "0.01300000"
+ ],
+ [
+ "2600.00",
+ "13.64098172"
+ ],
+ [
+ "2599.97",
+ "0.10000000"
+ ],
+ [
+ "2599.60",
+ "0.00200000"
+ ],
+ [
+ "2595.64",
+ "0.11305977"
+ ],
+ [
+ "2594.73",
+ "0.20000000"
+ ],
+ [
+ "2588.00",
+ "0.01900000"
+ ],
+ [
+ "2584.47",
+ "0.35362453"
+ ],
+ [
+ "2581.76",
+ "3.00000000"
+ ],
+ [
+ "2580.00",
+ "0.40000000"
+ ],
+ [
+ "2579.98",
+ "1.00000000"
+ ],
+ [
+ "2577.00",
+ "0.00200000"
+ ],
+ [
+ "2575.00",
+ "1.50000000"
+ ],
+ [
+ "2574.73",
+ "0.20000000"
+ ],
+ [
+ "2573.73",
+ "0.00707100"
+ ],
+ [
+ "2572.27",
+ "0.05000000"
+ ],
+ [
+ "2571.00",
+ "1.20000000"
+ ],
+ [
+ "2568.00",
+ "1.00000000"
+ ],
+ [
+ "2561.13",
+ "0.84300000"
+ ],
+ [
+ "2559.00",
+ "0.02923017"
+ ],
+ [
+ "2557.00",
+ "0.44669534"
+ ],
+ [
+ "2555.00",
+ "1.01000000"
+ ],
+ [
+ "2554.73",
+ "0.20000000"
+ ],
+ [
+ "2554.08",
+ "0.00303030"
+ ],
+ [
+ "2554.00",
+ "0.75000000"
+ ],
+ [
+ "2551.00",
+ "0.73369658"
+ ],
+ [
+ "2550.00",
+ "10.78323529"
+ ],
+ [
+ "2548.00",
+ "0.01200000"
+ ],
+ [
+ "2543.32",
+ "1.58700000"
+ ],
+ [
+ "2541.74",
+ "0.04000000"
+ ],
+ [
+ "2541.00",
+ "3.80000000"
+ ],
+ [
+ "2536.46",
+ "0.00869700"
+ ],
+ [
+ "2534.73",
+ "0.20000000"
+ ],
+ [
+ "2533.53",
+ "1.18116225"
+ ],
+ [
+ "2533.00",
+ "1.00000000"
+ ],
+ [
+ "2532.00",
+ "0.21200000"
+ ],
+ [
+ "2528.00",
+ "1.00000000"
+ ],
+ [
+ "2527.00",
+ "0.77661315"
+ ],
+ [
+ "2525.00",
+ "0.02962871"
+ ],
+ [
+ "2523.00",
+ "0.10000000"
+ ],
+ [
+ "2521.33",
+ "0.01100000"
+ ],
+ [
+ "2521.00",
+ "0.10000000"
+ ],
+ [
+ "2520.00",
+ "2.15099008"
+ ],
+ [
+ "2516.00",
+ "1.00000000"
+ ],
+ [
+ "2514.73",
+ "0.20000000"
+ ],
+ [
+ "2513.00",
+ "1.00000000"
+ ],
+ [
+ "2511.27",
+ "0.00300000"
+ ],
+ [
+ "2511.00",
+ "10.00200000"
+ ],
+ [
+ "2510.00",
+ "0.25200000"
+ ],
+ [
+ "2508.00",
+ "1.00000000"
+ ],
+ [
+ "2506.06",
+ "0.01000000"
+ ],
+ [
+ "2506.00",
+ "0.34000000"
+ ],
+ [
+ "2505.00",
+ "0.00200000"
+ ],
+ [
+ "2501.00",
+ "3.00000000"
+ ],
+ [
+ "2500.00",
+ "5.58857797"
+ ],
+ [
+ "2499.19",
+ "0.01069700"
+ ],
+ [
+ "2494.73",
+ "0.20000000"
+ ],
+ [
+ "2488.00",
+ "0.01300000"
+ ],
+ [
+ "2487.91",
+ "0.00937765"
+ ],
+ [
+ "2485.40",
+ "0.01877418"
+ ],
+ [
+ "2482.91",
+ "0.01876874"
+ ],
+ [
+ "2479.98",
+ "1.00000000"
+ ],
+ [
+ "2478.26",
+ "0.00941416"
+ ],
+ [
+ "2477.00",
+ "0.00300000"
+ ],
+ [
+ "2474.73",
+ "0.20000000"
+ ],
+ [
+ "2472.49",
+ "0.00941819"
+ ],
+ [
+ "2471.00",
+ "1.25000000"
+ ],
+ [
+ "2468.00",
+ "1.00000000"
+ ],
+ [
+ "2461.92",
+ "0.01315700"
+ ],
+ [
+ "2454.73",
+ "0.20000000"
+ ],
+ [
+ "2450.00",
+ "0.53053571"
+ ],
+ [
+ "2435.50",
+ "1.68100000"
+ ],
+ [
+ "2434.73",
+ "0.20000000"
+ ],
+ [
+ "2433.00",
+ "1.24032339"
+ ],
+ [
+ "2428.00",
+ "1.00000000"
+ ],
+ [
+ "2424.65",
+ "0.01618300"
+ ],
+ [
+ "2420.29",
+ "0.10000000"
+ ],
+ [
+ "2414.73",
+ "0.20000000"
+ ],
+ [
+ "2412.10",
+ "0.05389700"
+ ],
+ [
+ "2410.00",
+ "0.00210000"
+ ],
+ [
+ "2407.64",
+ "0.01000000"
+ ],
+ [
+ "2407.00",
+ "100.03110000"
+ ],
+ [
+ "2406.00",
+ "0.36000000"
+ ],
+ [
+ "2405.00",
+ "0.54573826"
+ ],
+ [
+ "2400.00",
+ "3.69216249"
+ ],
+ [
+ "2399.97",
+ "1.00000000"
+ ],
+ [
+ "2394.73",
+ "0.20000000"
+ ],
+ [
+ "2391.00",
+ "1.00000000"
+ ],
+ [
+ "2387.38",
+ "0.01990500"
+ ],
+ [
+ "2384.44",
+ "0.33355253"
+ ],
+ [
+ "2379.98",
+ "1.00000000"
+ ],
+ [
+ "2378.97",
+ "0.00303030"
+ ],
+ [
+ "2377.00",
+ "0.00300000"
+ ],
+ [
+ "2375.00",
+ "0.03150000"
+ ],
+ [
+ "2374.73",
+ "0.20000000"
+ ],
+ [
+ "2372.27",
+ "0.05000000"
+ ],
+ [
+ "2371.00",
+ "1.30000000"
+ ],
+ [
+ "2366.00",
+ "0.02000000"
+ ],
+ [
+ "2360.00",
+ "10.04230000"
+ ],
+ [
+ "2357.20",
+ "0.01000000"
+ ],
+ [
+ "2354.73",
+ "0.20000000"
+ ],
+ [
+ "2350.11",
+ "0.02448300"
+ ],
+ [
+ "2350.00",
+ "0.92000000"
+ ],
+ [
+ "2347.11",
+ "2.00000000"
+ ],
+ [
+ "2345.00",
+ "1.00000000"
+ ],
+ [
+ "2334.73",
+ "0.20000000"
+ ],
+ [
+ "2333.38",
+ "0.10000000"
+ ],
+ [
+ "2333.00",
+ "2.49900000"
+ ],
+ [
+ "2332.24",
+ "1.78000000"
+ ],
+ [
+ "2331.00",
+ "0.25000000"
+ ],
+ [
+ "2326.00",
+ "0.38000000"
+ ],
+ [
+ "2318.36",
+ "4.49962699"
+ ],
+ [
+ "2315.50",
+ "1.55200000"
+ ],
+ [
+ "2314.73",
+ "0.20000000"
+ ],
+ [
+ "2312.84",
+ "0.03011400"
+ ],
+ [
+ "2312.30",
+ "0.00500000"
+ ],
+ [
+ "2310.00",
+ "0.00220000"
+ ],
+ [
+ "2308.00",
+ "40.81392980"
+ ],
+ [
+ "2307.00",
+ "100.00000000"
+ ],
+ [
+ "2303.00",
+ "0.00700000"
+ ],
+ [
+ "2300.00",
+ "1.17954456"
+ ],
+ [
+ "2299.97",
+ "0.30000000"
+ ],
+ [
+ "2294.73",
+ "0.20000000"
+ ],
+ [
+ "2288.00",
+ "1.67506118"
+ ],
+ [
+ "2279.98",
+ "1.00000000"
+ ],
+ [
+ "2277.00",
+ "5.45852876"
+ ],
+ [
+ "2275.57",
+ "0.03704000"
+ ],
+ [
+ "2274.73",
+ "0.20000000"
+ ],
+ [
+ "2271.00",
+ "1.28700000"
+ ],
+ [
+ "2268.94",
+ "0.32335804"
+ ],
+ [
+ "2254.73",
+ "0.20000000"
+ ],
+ [
+ "2251.16",
+ "0.75000000"
+ ],
+ [
+ "2250.00",
+ "0.50000000"
+ ],
+ [
+ "2240.00",
+ "0.02000000"
+ ],
+ [
+ "2239.94",
+ "0.01000000"
+ ],
+ [
+ "2239.00",
+ "0.00500000"
+ ],
+ [
+ "2238.30",
+ "0.04555900"
+ ],
+ [
+ "2234.73",
+ "0.20000000"
+ ],
+ [
+ "2233.36",
+ "1.88500000"
+ ],
+ [
+ "2233.00",
+ "44.71383788"
+ ],
+ [
+ "2232.47",
+ "0.25458348"
+ ],
+ [
+ "2230.70",
+ "0.30000000"
+ ],
+ [
+ "2229.99",
+ "0.07157430"
+ ],
+ [
+ "2226.00",
+ "0.40000000"
+ ],
+ [
+ "2225.00",
+ "0.03362360"
+ ],
+ [
+ "2222.00",
+ "0.99900000"
+ ],
+ [
+ "2221.00",
+ "1.00000000"
+ ],
+ [
+ "2214.73",
+ "0.20000000"
+ ],
+ [
+ "2212.10",
+ "0.05877000"
+ ],
+ [
+ "2210.00",
+ "0.30230000"
+ ],
+ [
+ "2205.06",
+ "0.01000000"
+ ],
+ [
+ "2201.41",
+ "0.05545000"
+ ],
+ [
+ "2200.10",
+ "7.00000000"
+ ],
+ [
+ "2200.00",
+ "9.96343619"
+ ],
+ [
+ "2194.73",
+ "0.20000000"
+ ],
+ [
+ "2188.00",
+ "0.00500000"
+ ],
+ [
+ "2182.00",
+ "15.00000000"
+ ],
+ [
+ "2180.00",
+ "0.66000000"
+ ],
+ [
+ "2179.98",
+ "1.00000000"
+ ],
+ [
+ "2175.00",
+ "1.75481594"
+ ],
+ [
+ "2174.73",
+ "0.20000000"
+ ],
+ [
+ "2172.27",
+ "0.05000000"
+ ],
+ [
+ "2166.73",
+ "1.10489078"
+ ],
+ [
+ "2161.10",
+ "0.10000000"
+ ],
+ [
+ "2160.00",
+ "1.39708648"
+ ],
+ [
+ "2154.73",
+ "0.20000000"
+ ],
+ [
+ "2152.00",
+ "0.40000000"
+ ],
+ [
+ "2150.00",
+ "0.49479651"
+ ],
+ [
+ "2138.67",
+ "1.99600000"
+ ],
+ [
+ "2135.26",
+ "0.01010101"
+ ],
+ [
+ "2134.73",
+ "0.20000000"
+ ],
+ [
+ "2133.00",
+ "0.00900000"
+ ],
+ [
+ "2132.00",
+ "0.01000000"
+ ],
+ [
+ "2130.00",
+ "0.00500000"
+ ],
+ [
+ "2126.58",
+ "1.35100000"
+ ],
+ [
+ "2126.00",
+ "1.00000000"
+ ],
+ [
+ "2120.00",
+ "5.31298584"
+ ],
+ [
+ "2114.73",
+ "0.20000000"
+ ],
+ [
+ "2111.00",
+ "0.99900000"
+ ],
+ [
+ "2110.50",
+ "0.01181237"
+ ],
+ [
+ "2110.00",
+ "0.00240000"
+ ],
+ [
+ "2109.89",
+ "3.00000000"
+ ],
+ [
+ "2109.80",
+ "2.24399469"
+ ],
+ [
+ "2107.00",
+ "100.00000000"
+ ],
+ [
+ "2105.06",
+ "0.01000000"
+ ],
+ [
+ "2105.00",
+ "1.00000000"
+ ],
+ [
+ "2101.00",
+ "1.86000000"
+ ],
+ [
+ "2100.00",
+ "101.51800000"
+ ],
+ [
+ "2094.73",
+ "0.20000000"
+ ],
+ [
+ "2088.00",
+ "0.02500000"
+ ],
+ [
+ "2082.45",
+ "0.11449974"
+ ],
+ [
+ "2079.98",
+ "1.00000000"
+ ],
+ [
+ "2075.00",
+ "0.03605422"
+ ],
+ [
+ "2074.73",
+ "0.20000000"
+ ],
+ [
+ "2072.27",
+ "0.05000000"
+ ],
+ [
+ "2069.00",
+ "0.01934751"
+ ],
+ [
+ "2066.00",
+ "1.00000000"
+ ],
+ [
+ "2064.80",
+ "0.04000000"
+ ],
+ [
+ "2059.11",
+ "0.01000000"
+ ],
+ [
+ "2054.73",
+ "0.20000000"
+ ],
+ [
+ "2052.00",
+ "0.40000000"
+ ],
+ [
+ "2051.17",
+ "2.00000000"
+ ],
+ [
+ "2051.00",
+ "0.25000000"
+ ],
+ [
+ "2050.00",
+ "3.84424390"
+ ],
+ [
+ "2048.00",
+ "2.11300000"
+ ],
+ [
+ "2042.00",
+ "0.08264936"
+ ],
+ [
+ "2037.00",
+ "2.00000000"
+ ],
+ [
+ "2035.00",
+ "0.45000000"
+ ],
+ [
+ "2034.73",
+ "0.20000000"
+ ],
+ [
+ "2032.04",
+ "0.03300000"
+ ],
+ [
+ "2015.00",
+ "1.00000000"
+ ],
+ [
+ "2014.73",
+ "0.20000000"
+ ],
+ [
+ "2013.29",
+ "0.50728394"
+ ],
+ [
+ "2012.10",
+ "0.07000000"
+ ],
+ [
+ "2011.00",
+ "1.00000000"
+ ],
+ [
+ "2010.00",
+ "0.00260000"
+ ],
+ [
+ "2005.05",
+ "0.01000000"
+ ],
+ [
+ "2005.00",
+ "0.36832376"
+ ],
+ [
+ "2004.12",
+ "1.09100000"
+ ],
+ [
+ "2001.36",
+ "0.02769007"
+ ],
+ [
+ "2000.00",
+ "8.49237125"
+ ],
+ [
+ "1999.00",
+ "1.01250900"
+ ],
+ [
+ "1994.73",
+ "0.20000000"
+ ],
+ [
+ "1988.27",
+ "0.05000000"
+ ],
+ [
+ "1988.00",
+ "0.02900000"
+ ],
+ [
+ "1987.00",
+ "0.02000000"
+ ],
+ [
+ "1986.00",
+ "0.00400000"
+ ],
+ [
+ "1985.00",
+ "0.00400000"
+ ],
+ [
+ "1976.00",
+ "1.40000000"
+ ],
+ [
+ "1974.73",
+ "0.20000000"
+ ],
+ [
+ "1974.00",
+ "0.00700000"
+ ],
+ [
+ "1970.00",
+ "5.26381218"
+ ],
+ [
+ "1961.17",
+ "1.12300000"
+ ],
+ [
+ "1960.00",
+ "2.50000000"
+ ],
+ [
+ "1954.73",
+ "0.20000000"
+ ],
+ [
+ "1953.00",
+ "0.01000000"
+ ],
+ [
+ "1951.15",
+ "0.30000000"
+ ],
+ [
+ "1950.00",
+ "0.51900000"
+ ],
+ [
+ "1949.99",
+ "0.10737418"
+ ],
+ [
+ "1936.00",
+ "0.12000000"
+ ],
+ [
+ "1934.73",
+ "0.20000000"
+ ],
+ [
+ "1928.00",
+ "0.50000000"
+ ],
+ [
+ "1925.00",
+ "0.43886364"
+ ],
+ [
+ "1920.00",
+ "0.35000000"
+ ],
+ [
+ "1914.73",
+ "0.20000000"
+ ],
+ [
+ "1910.00",
+ "0.00670000"
+ ],
+ [
+ "1907.02",
+ "0.01758267"
+ ],
+ [
+ "1906.00",
+ "0.45000000"
+ ],
+ [
+ "1905.06",
+ "0.01000000"
+ ],
+ [
+ "1904.33",
+ "0.50442810"
+ ],
+ [
+ "1901.00",
+ "1.00000000"
+ ],
+ [
+ "1900.00",
+ "4.46000000"
+ ],
+ [
+ "1899.97",
+ "0.50000000"
+ ],
+ [
+ "1894.73",
+ "0.20000000"
+ ],
+ [
+ "1890.00",
+ "1.00000000"
+ ],
+ [
+ "1888.00",
+ "0.05000000"
+ ],
+ [
+ "1882.50",
+ "0.05000000"
+ ],
+ [
+ "1881.00",
+ "1.50000000"
+ ],
+ [
+ "1878.02",
+ "2.37000000"
+ ],
+ [
+ "1877.03",
+ "0.50000000"
+ ],
+ [
+ "1875.00",
+ "4.00000000"
+ ],
+ [
+ "1874.73",
+ "0.20000000"
+ ],
+ [
+ "1872.27",
+ "0.05000000"
+ ],
+ [
+ "1865.00",
+ "12.51152278"
+ ],
+ [
+ "1861.00",
+ "0.33000000"
+ ],
+ [
+ "1858.00",
+ "0.01000000"
+ ],
+ [
+ "1854.73",
+ "0.20000000"
+ ],
+ [
+ "1853.80",
+ "0.00500000"
+ ],
+ [
+ "1852.00",
+ "0.01000000"
+ ],
+ [
+ "1850.00",
+ "2.69423919"
+ ],
+ [
+ "1845.00",
+ "0.67691056"
+ ],
+ [
+ "1843.00",
+ "0.30000000"
+ ],
+ [
+ "1835.28",
+ "0.10737418"
+ ],
+ [
+ "1835.00",
+ "0.55247411"
+ ],
+ [
+ "1834.73",
+ "0.20000000"
+ ],
+ [
+ "1830.00",
+ "0.10900000"
+ ],
+ [
+ "1829.00",
+ "0.05467500"
+ ],
+ [
+ "1826.00",
+ "1.45000000"
+ ],
+ [
+ "1825.28",
+ "0.03000000"
+ ],
+ [
+ "1821.10",
+ "0.08126900"
+ ],
+ [
+ "1817.41",
+ "0.51992800"
+ ],
+ [
+ "1814.73",
+ "0.20000000"
+ ],
+ [
+ "1810.00",
+ "0.00280000"
+ ],
+ [
+ "1805.34",
+ "1.00000000"
+ ],
+ [
+ "1805.06",
+ "0.02000000"
+ ],
+ [
+ "1800.00",
+ "10.91353127"
+ ],
+ [
+ "1798.40",
+ "2.50900000"
+ ],
+ [
+ "1794.73",
+ "0.20000000"
+ ],
+ [
+ "1790.00",
+ "5.00000000"
+ ],
+ [
+ "1777.00",
+ "0.99990000"
+ ],
+ [
+ "1775.00",
+ "0.04214789"
+ ],
+ [
+ "1774.73",
+ "0.20000000"
+ ],
+ [
+ "1767.00",
+ "5.00000000"
+ ],
+ [
+ "1755.00",
+ "3.00000000"
+ ],
+ [
+ "1754.73",
+ "0.20000000"
+ ],
+ [
+ "1752.00",
+ "0.45000000"
+ ],
+ [
+ "1750.00",
+ "0.58454286"
+ ],
+ [
+ "1744.61",
+ "0.05000000"
+ ],
+ [
+ "1742.67",
+ "10.00000000"
+ ],
+ [
+ "1729.07",
+ "0.50927716"
+ ],
+ [
+ "1727.32",
+ "0.10737418"
+ ],
+ [
+ "1722.16",
+ "2.65700000"
+ ],
+ [
+ "1712.70",
+ "1.10000000"
+ ],
+ [
+ "1710.00",
+ "0.00300000"
+ ],
+ [
+ "1705.06",
+ "0.03000000"
+ ],
+ [
+ "1700.00",
+ "17.50575440"
+ ],
+ [
+ "1676.00",
+ "0.50000000"
+ ],
+ [
+ "1672.27",
+ "0.05000000"
+ ],
+ [
+ "1666.00",
+ "5.49764732"
+ ],
+ [
+ "1649.14",
+ "2.81400000"
+ ],
+ [
+ "1637.65",
+ "0.01522303"
+ ],
+ [
+ "1626.00",
+ "0.50000000"
+ ],
+ [
+ "1625.72",
+ "0.10737418"
+ ],
+ [
+ "1625.10",
+ "0.08599000"
+ ],
+ [
+ "1625.00",
+ "1.36507721"
+ ],
+ [
+ "1612.00",
+ "5.00000000"
+ ],
+ [
+ "1610.00",
+ "1.00330000"
+ ],
+ [
+ "1609.87",
+ "0.51033726"
+ ],
+ [
+ "1605.06",
+ "0.02000000"
+ ],
+ [
+ "1604.00",
+ "0.01000000"
+ ],
+ [
+ "1603.48",
+ "1.30000000"
+ ],
+ [
+ "1600.00",
+ "15.23334375"
+ ],
+ [
+ "1599.97",
+ "1.00000000"
+ ],
+ [
+ "1599.00",
+ "1.00000000"
+ ],
+ [
+ "1593.00",
+ "0.25000000"
+ ],
+ [
+ "1589.60",
+ "0.00500000"
+ ],
+ [
+ "1589.22",
+ "0.59526686"
+ ],
+ [
+ "1589.00",
+ "0.00600000"
+ ],
+ [
+ "1583.20",
+ "0.10000000"
+ ],
+ [
+ "1579.22",
+ "2.98000000"
+ ],
+ [
+ "1573.39",
+ "0.51298787"
+ ],
+ [
+ "1569.70",
+ "3.08243831"
+ ],
+ [
+ "1563.00",
+ "0.50000000"
+ ],
+ [
+ "1561.10",
+ "0.20926000"
+ ],
+ [
+ "1557.41",
+ "0.25000000"
+ ],
+ [
+ "1552.00",
+ "0.50000000"
+ ],
+ [
+ "1551.70",
+ "1.00000000"
+ ],
+ [
+ "1551.13",
+ "0.15000000"
+ ],
+ [
+ "1550.00",
+ "0.65000000"
+ ],
+ [
+ "1549.46",
+ "4.00000000"
+ ],
+ [
+ "1531.84",
+ "0.51088720"
+ ],
+ [
+ "1530.09",
+ "0.10737418"
+ ],
+ [
+ "1524.00",
+ "0.20132729"
+ ],
+ [
+ "1517.40",
+ "1.13200000"
+ ],
+ [
+ "1512.27",
+ "3.15500000"
+ ],
+ [
+ "1511.00",
+ "0.01000000"
+ ],
+ [
+ "1510.00",
+ "1.45350000"
+ ],
+ [
+ "1506.00",
+ "0.60000000"
+ ],
+ [
+ "1505.06",
+ "0.01000000"
+ ],
+ [
+ "1501.00",
+ "1.59936708"
+ ],
+ [
+ "1500.00",
+ "74.88965241"
+ ],
+ [
+ "1499.00",
+ "1.00000000"
+ ],
+ [
+ "1488.00",
+ "1.00000000"
+ ],
+ [
+ "1476.87",
+ "0.24104882"
+ ],
+ [
+ "1472.27",
+ "0.05000000"
+ ],
+ [
+ "1452.00",
+ "1.29907336"
+ ],
+ [
+ "1451.43",
+ "1.27381272"
+ ],
+ [
+ "1450.00",
+ "50.00000000"
+ ],
+ [
+ "1449.46",
+ "3.00000000"
+ ],
+ [
+ "1448.15",
+ "3.34100000"
+ ],
+ [
+ "1444.00",
+ "130.00000000"
+ ],
+ [
+ "1440.08",
+ "0.10737418"
+ ],
+ [
+ "1437.00",
+ "5.00000000"
+ ],
+ [
+ "1414.00",
+ "0.10839462"
+ ],
+ [
+ "1413.00",
+ "1.21726822"
+ ],
+ [
+ "1410.69",
+ "0.50411280"
+ ],
+ [
+ "1410.00",
+ "0.00380000"
+ ],
+ [
+ "1405.06",
+ "0.01000000"
+ ],
+ [
+ "1400.00",
+ "57.35000000"
+ ],
+ [
+ "1399.97",
+ "0.50000000"
+ ],
+ [
+ "1399.00",
+ "1.00000000"
+ ],
+ [
+ "1389.00",
+ "2.00000000"
+ ],
+ [
+ "1376.00",
+ "1.20000000"
+ ],
+ [
+ "1361.00",
+ "7.93238060"
+ ],
+ [
+ "1358.00",
+ "0.01000000"
+ ],
+ [
+ "1355.37",
+ "0.10737418"
+ ],
+ [
+ "1355.00",
+ "6.59933190"
+ ],
+ [
+ "1350.00",
+ "11.80751111"
+ ],
+ [
+ "1338.75",
+ "2.50000000"
+ ],
+ [
+ "1333.00",
+ "40.26300525"
+ ],
+ [
+ "1332.77",
+ "0.51429600"
+ ],
+ [
+ "1327.96",
+ "7.44200000"
+ ],
+ [
+ "1310.00",
+ "3.00420000"
+ ],
+ [
+ "1305.06",
+ "0.01000000"
+ ],
+ [
+ "1304.77",
+ "0.50000000"
+ ],
+ [
+ "1300.00",
+ "79.41737401"
+ ],
+ [
+ "1299.97",
+ "0.50000000"
+ ],
+ [
+ "1299.80",
+ "0.00500000"
+ ],
+ [
+ "1299.00",
+ "1.00000000"
+ ],
+ [
+ "1275.64",
+ "0.10737418"
+ ],
+ [
+ "1275.00",
+ "2.00000000"
+ ],
+ [
+ "1272.27",
+ "0.05000000"
+ ],
+ [
+ "1265.65",
+ "0.98217882"
+ ],
+ [
+ "1255.00",
+ "1.00000000"
+ ],
+ [
+ "1253.00",
+ "2.50000000"
+ ],
+ [
+ "1250.00",
+ "1.00636000"
+ ],
+ [
+ "1239.94",
+ "0.01000000"
+ ],
+ [
+ "1234.57",
+ "2.00000000"
+ ],
+ [
+ "1230.00",
+ "0.21048871"
+ ],
+ [
+ "1226.00",
+ "2.00000000"
+ ],
+ [
+ "1217.75",
+ "8.34500000"
+ ],
+ [
+ "1217.50",
+ "1.21700000"
+ ],
+ [
+ "1212.99",
+ "0.50449270"
+ ],
+ [
+ "1212.00",
+ "1.00000000"
+ ],
+ [
+ "1210.00",
+ "0.00440000"
+ ],
+ [
+ "1205.06",
+ "0.02000000"
+ ],
+ [
+ "1200.60",
+ "0.10737418"
+ ],
+ [
+ "1200.00",
+ "17.17930832"
+ ],
+ [
+ "1199.97",
+ "1.00000000"
+ ],
+ [
+ "1199.60",
+ "0.01000000"
+ ],
+ [
+ "1199.00",
+ "2.00000000"
+ ],
+ [
+ "1190.00",
+ "1.13259838"
+ ],
+ [
+ "1180.00",
+ "1.00000000"
+ ],
+ [
+ "1165.30",
+ "0.01000000"
+ ],
+ [
+ "1162.00",
+ "1.00000000"
+ ],
+ [
+ "1156.00",
+ "0.66656574"
+ ],
+ [
+ "1153.09",
+ "4.00000000"
+ ],
+ [
+ "1132.45",
+ "1.29100000"
+ ],
+ [
+ "1129.98",
+ "0.10737418"
+ ],
+ [
+ "1120.00",
+ "6.86225000"
+ ],
+ [
+ "1117.12",
+ "1.00000000"
+ ],
+ [
+ "1116.68",
+ "9.35800000"
+ ],
+ [
+ "1110.00",
+ "0.10470000"
+ ],
+ [
+ "1109.50",
+ "0.01000000"
+ ],
+ [
+ "1107.30",
+ "0.31969005"
+ ],
+ [
+ "1105.06",
+ "0.02000000"
+ ],
+ [
+ "1101.00",
+ "1.00000000"
+ ],
+ [
+ "1100.03",
+ "0.50000000"
+ ],
+ [
+ "1100.00",
+ "11.52474545"
+ ],
+ [
+ "1099.00",
+ "1.00000000"
+ ],
+ [
+ "1070.00",
+ "0.40000000"
+ ],
+ [
+ "1065.71",
+ "0.97348200"
+ ],
+ [
+ "1063.51",
+ "0.10737418"
+ ],
+ [
+ "1055.10",
+ "0.01000000"
+ ],
+ [
+ "1055.00",
+ "1.45393364"
+ ],
+ [
+ "1053.00",
+ "0.76000000"
+ ],
+ [
+ "1050.00",
+ "0.02000000"
+ ],
+ [
+ "1037.79",
+ "2.00000000"
+ ],
+ [
+ "1037.50",
+ "0.00864578"
+ ],
+ [
+ "1037.00",
+ "0.01000000"
+ ],
+ [
+ "1030.38",
+ "1.00000000"
+ ],
+ [
+ "1028.70",
+ "0.00859776"
+ ],
+ [
+ "1028.00",
+ "0.31227626"
+ ],
+ [
+ "1024.00",
+ "10.49300000"
+ ],
+ [
+ "1022.71",
+ "1.06374800"
+ ],
+ [
+ "1015.00",
+ "1.60000000"
+ ],
+ [
+ "1011.12",
+ "0.03000000"
+ ],
+ [
+ "1010.00",
+ "1.00500000"
+ ],
+ [
+ "1008.00",
+ "3.00000000"
+ ],
+ [
+ "1006.95",
+ "1.00000000"
+ ],
+ [
+ "1006.00",
+ "3.80000000"
+ ],
+ [
+ "1005.90",
+ "2.00000000"
+ ],
+ [
+ "1005.06",
+ "0.03000000"
+ ],
+ [
+ "1003.45",
+ "0.50000000"
+ ],
+ [
+ "1003.00",
+ "0.80611166"
+ ],
+ [
+ "1002.06",
+ "2.72800000"
+ ],
+ [
+ "1001.11",
+ "0.02000000"
+ ],
+ [
+ "1001.00",
+ "3.00700000"
+ ],
+ [
+ "1000.95",
+ "0.10737418"
+ ],
+ [
+ "1000.11",
+ "0.00513848"
+ ],
+ [
+ "1000.00",
+ "250.19563228"
+ ],
+ [
+ "999.99",
+ "218.06427064"
+ ],
+ [
+ "999.97",
+ "1.00000000"
+ ],
+ [
+ "999.00",
+ "1.00000000"
+ ],
+ [
+ "998.60",
+ "0.01000000"
+ ],
+ [
+ "997.00",
+ "23.75940822"
+ ],
+ [
+ "995.03",
+ "0.50000000"
+ ],
+ [
+ "990.00",
+ "1.00000000"
+ ],
+ [
+ "980.59",
+ "2.80700000"
+ ],
+ [
+ "980.00",
+ "0.05000000"
+ ],
+ [
+ "977.13",
+ "0.03873357"
+ ],
+ [
+ "977.00",
+ "0.34494370"
+ ],
+ [
+ "966.22",
+ "0.03000000"
+ ],
+ [
+ "965.00",
+ "0.30108808"
+ ],
+ [
+ "950.00",
+ "2.00000000"
+ ],
+ [
+ "942.07",
+ "0.10737418"
+ ],
+ [
+ "939.01",
+ "5.92400000"
+ ],
+ [
+ "932.12",
+ "0.03000000"
+ ],
+ [
+ "910.00",
+ "0.00560000"
+ ],
+ [
+ "907.60",
+ "2.50000000"
+ ],
+ [
+ "903.00",
+ "0.24197274"
+ ],
+ [
+ "901.05",
+ "0.01000000"
+ ],
+ [
+ "900.00",
+ "116.22694338"
+ ],
+ [
+ "899.97",
+ "1.00000000"
+ ],
+ [
+ "899.20",
+ "6.27400000"
+ ],
+ [
+ "899.00",
+ "1.00000000"
+ ],
+ [
+ "897.90",
+ "0.00800000"
+ ],
+ [
+ "892.00",
+ "1.11900000"
+ ],
+ [
+ "888.64",
+ "0.99749055"
+ ],
+ [
+ "888.00",
+ "0.25000000"
+ ],
+ [
+ "886.65",
+ "0.10737418"
+ ],
+ [
+ "881.76",
+ "0.20000000"
+ ],
+ [
+ "863.21",
+ "0.17920000"
+ ],
+ [
+ "861.10",
+ "0.59000000"
+ ],
+ [
+ "861.08",
+ "6.64300000"
+ ],
+ [
+ "860.00",
+ "0.05965000"
+ ],
+ [
+ "853.00",
+ "3.50000000"
+ ],
+ [
+ "849.60",
+ "0.00800000"
+ ],
+ [
+ "846.62",
+ "0.00781921"
+ ],
+ [
+ "839.92",
+ "0.01231100"
+ ],
+ [
+ "836.80",
+ "0.01000000"
+ ],
+ [
+ "834.50",
+ "0.10737418"
+ ],
+ [
+ "830.00",
+ "3.00000000"
+ ],
+ [
+ "826.31",
+ "0.01348310"
+ ],
+ [
+ "826.05",
+ "0.01960302"
+ ],
+ [
+ "824.43",
+ "0.01679536"
+ ],
+ [
+ "821.61",
+ "0.00707070"
+ ],
+ [
+ "820.12",
+ "0.01839868"
+ ],
+ [
+ "817.45",
+ "0.01247450"
+ ],
+ [
+ "817.24",
+ "0.01832894"
+ ],
+ [
+ "815.55",
+ "0.01923464"
+ ],
+ [
+ "814.52",
+ "2.00000000"
+ ],
+ [
+ "810.00",
+ "1.00630000"
+ ],
+ [
+ "805.00",
+ "5.49953347"
+ ],
+ [
+ "801.06",
+ "0.02000000"
+ ],
+ [
+ "800.00",
+ "27.32442500"
+ ],
+ [
+ "799.97",
+ "1.00000000"
+ ],
+ [
+ "799.30",
+ "0.00650000"
+ ],
+ [
+ "799.00",
+ "1.00000000"
+ ],
+ [
+ "790.75",
+ "0.01998746"
+ ],
+ [
+ "789.61",
+ "14.79600000"
+ ],
+ [
+ "785.41",
+ "0.10737418"
+ ],
+ [
+ "783.77",
+ "0.00910246"
+ ],
+ [
+ "770.00",
+ "1.54678568"
+ ],
+ [
+ "765.00",
+ "1.00000000"
+ ],
+ [
+ "761.00",
+ "3.00000000"
+ ],
+ [
+ "757.78",
+ "0.00931594"
+ ],
+ [
+ "757.00",
+ "0.76036644"
+ ],
+ [
+ "751.90",
+ "0.00800000"
+ ],
+ [
+ "750.00",
+ "0.01060000"
+ ],
+ [
+ "748.44",
+ "0.00707070"
+ ],
+ [
+ "745.00",
+ "0.00679000"
+ ],
+ [
+ "742.50",
+ "0.99749494"
+ ],
+ [
+ "739.21",
+ "0.10737418"
+ ],
+ [
+ "733.00",
+ "2.00000000"
+ ],
+ [
+ "729.00",
+ "0.08000000"
+ ],
+ [
+ "725.00",
+ "0.50000000"
+ ],
+ [
+ "724.08",
+ "16.59100000"
+ ],
+ [
+ "720.64",
+ "0.01840478"
+ ],
+ [
+ "720.05",
+ "0.01984014"
+ ],
+ [
+ "719.00",
+ "0.03000000"
+ ],
+ [
+ "717.60",
+ "6.00000000"
+ ],
+ [
+ "710.00",
+ "0.00730000"
+ ],
+ [
+ "709.00",
+ "0.02430000"
+ ],
+ [
+ "708.18",
+ "0.01015228"
+ ],
+ [
+ "707.00",
+ "1.44260000"
+ ],
+ [
+ "702.00",
+ "0.05000000"
+ ],
+ [
+ "701.06",
+ "0.02000000"
+ ],
+ [
+ "700.92",
+ "0.00976228"
+ ],
+ [
+ "700.00",
+ "16.05000000"
+ ],
+ [
+ "698.50",
+ "0.01000000"
+ ],
+ [
+ "695.73",
+ "0.10737418"
+ ],
+ [
+ "694.66",
+ "0.01664832"
+ ],
+ [
+ "680.00",
+ "0.03000000"
+ ],
+ [
+ "679.00",
+ "0.10245000"
+ ],
+ [
+ "670.00",
+ "1.00000000"
+ ],
+ [
+ "665.99",
+ "5.03111692"
+ ],
+ [
+ "665.00",
+ "1.50000000"
+ ],
+ [
+ "663.98",
+ "18.60500000"
+ ],
+ [
+ "660.00",
+ "1.35555715"
+ ],
+ [
+ "656.11",
+ "0.10000000"
+ ],
+ [
+ "654.80",
+ "0.10737418"
+ ],
+ [
+ "651.50",
+ "0.28822621"
+ ],
+ [
+ "650.00",
+ "51.00000000"
+ ],
+ [
+ "625.50",
+ "0.23058118"
+ ],
+ [
+ "621.13",
+ "0.33000000"
+ ],
+ [
+ "616.28",
+ "0.10737418"
+ ],
+ [
+ "610.00",
+ "1.00840000"
+ ],
+ [
+ "608.99",
+ "0.26450873"
+ ],
+ [
+ "608.87",
+ "20.86300000"
+ ],
+ [
+ "601.44",
+ "2.68065730"
+ ],
+ [
+ "600.00",
+ "19.69298333"
+ ],
+ [
+ "599.99",
+ "3.00000000"
+ ],
+ [
+ "597.53",
+ "0.16734196"
+ ],
+ [
+ "596.00",
+ "0.05000000"
+ ],
+ [
+ "591.13",
+ "0.33000000"
+ ],
+ [
+ "591.07",
+ "0.23057916"
+ ],
+ [
+ "586.95",
+ "0.29067125"
+ ],
+ [
+ "581.05",
+ "0.02000000"
+ ],
+ [
+ "580.03",
+ "0.10737418"
+ ],
+ [
+ "571.00",
+ "4.00000000"
+ ],
+ [
+ "566.00",
+ "0.30133000"
+ ],
+ [
+ "565.40",
+ "0.23057881"
+ ],
+ [
+ "561.00",
+ "0.10834224"
+ ],
+ [
+ "560.00",
+ "1.24694624"
+ ],
+ [
+ "559.36",
+ "2.00000000"
+ ],
+ [
+ "558.34",
+ "23.39400000"
+ ],
+ [
+ "556.00",
+ "1.00000000"
+ ],
+ [
+ "555.00",
+ "0.05000000"
+ ],
+ [
+ "553.13",
+ "0.84000000"
+ ],
+ [
+ "550.00",
+ "0.63315455"
+ ],
+ [
+ "545.91",
+ "0.10737418"
+ ],
+ [
+ "545.16",
+ "0.12831095"
+ ],
+ [
+ "543.13",
+ "0.85000000"
+ ],
+ [
+ "540.00",
+ "0.01472222"
+ ],
+ [
+ "538.17",
+ "0.27872234"
+ ],
+ [
+ "533.13",
+ "0.87000000"
+ ],
+ [
+ "530.00",
+ "0.01500000"
+ ],
+ [
+ "523.13",
+ "0.88500000"
+ ],
+ [
+ "520.00",
+ "0.01528846"
+ ],
+ [
+ "515.87",
+ "1.00000000"
+ ],
+ [
+ "515.00",
+ "0.01543689"
+ ],
+ [
+ "513.80",
+ "0.10737418"
+ ],
+ [
+ "513.13",
+ "0.90000000"
+ ],
+ [
+ "513.00",
+ "0.05000000"
+ ],
+ [
+ "512.00",
+ "26.23300000"
+ ],
+ [
+ "510.00",
+ "0.02558824"
+ ],
+ [
+ "505.00",
+ "0.01574257"
+ ],
+ [
+ "503.13",
+ "0.92000000"
+ ],
+ [
+ "502.60",
+ "12.30000000"
+ ],
+ [
+ "501.00",
+ "2.00000000"
+ ],
+ [
+ "500.00",
+ "11.03146000"
+ ],
+ [
+ "499.97",
+ "1.00000000"
+ ],
+ [
+ "499.00",
+ "2.00000000"
+ ],
+ [
+ "493.13",
+ "0.94000000"
+ ],
+ [
+ "490.00",
+ "0.80000000"
+ ],
+ [
+ "485.00",
+ "0.28880620"
+ ],
+ [
+ "483.57",
+ "0.10737418"
+ ],
+ [
+ "483.13",
+ "0.96000000"
+ ],
+ [
+ "479.00",
+ "2.00000000"
+ ],
+ [
+ "475.00",
+ "1.01673684"
+ ],
+ [
+ "473.13",
+ "0.97700000"
+ ],
+ [
+ "473.00",
+ "0.99944016"
+ ],
+ [
+ "472.00",
+ "1.00000000"
+ ],
+ [
+ "471.00",
+ "1.00000000"
+ ],
+ [
+ "468.90",
+ "0.02546942"
+ ],
+ [
+ "468.25",
+ "0.02084028"
+ ],
+ [
+ "467.05",
+ "0.05000000"
+ ],
+ [
+ "465.00",
+ "1.50000000"
+ ],
+ [
+ "464.68",
+ "0.04216076"
+ ],
+ [
+ "464.40",
+ "0.04669832"
+ ],
+ [
+ "464.30",
+ "0.02197522"
+ ],
+ [
+ "463.13",
+ "1.00000000"
+ ],
+ [
+ "461.56",
+ "0.01644414"
+ ],
+ [
+ "461.49",
+ "0.01904262"
+ ],
+ [
+ "461.34",
+ "0.05170632"
+ ],
+ [
+ "460.36",
+ "0.04533016"
+ ],
+ [
+ "460.01",
+ "0.08824119"
+ ],
+ [
+ "459.91",
+ "0.04775688"
+ ],
+ [
+ "459.90",
+ "0.01671368"
+ ],
+ [
+ "458.68",
+ "0.03797714"
+ ],
+ [
+ "458.19",
+ "0.05732356"
+ ],
+ [
+ "457.41",
+ "0.04754920"
+ ],
+ [
+ "456.28",
+ "0.25315189"
+ ],
+ [
+ "455.75",
+ "0.04199864"
+ ],
+ [
+ "455.50",
+ "0.50000000"
+ ],
+ [
+ "455.34",
+ "0.04531868"
+ ],
+ [
+ "455.13",
+ "0.10737418"
+ ],
+ [
+ "454.78",
+ "0.04291530"
+ ],
+ [
+ "454.67",
+ "0.05958028"
+ ],
+ [
+ "454.54",
+ "0.11664539"
+ ],
+ [
+ "454.47",
+ "0.03866806"
+ ],
+ [
+ "454.19",
+ "0.04809158"
+ ],
+ [
+ "453.46",
+ "0.04358836"
+ ],
+ [
+ "453.13",
+ "0.22044446"
+ ],
+ [
+ "452.30",
+ "0.05128006"
+ ],
+ [
+ "451.30",
+ "0.01200000"
+ ],
+ [
+ "450.00",
+ "2.11766667"
+ ],
+ [
+ "449.64",
+ "0.03600530"
+ ],
+ [
+ "449.10",
+ "0.01955971"
+ ],
+ [
+ "446.76",
+ "0.02836949"
+ ],
+ [
+ "446.61",
+ "0.03949602"
+ ],
+ [
+ "444.44",
+ "0.15000000"
+ ],
+ [
+ "435.23",
+ "0.04220120"
+ ],
+ [
+ "434.97",
+ "0.02247961"
+ ],
+ [
+ "434.34",
+ "0.09749909"
+ ],
+ [
+ "432.02",
+ "0.99747691"
+ ],
+ [
+ "431.00",
+ "0.22573085"
+ ],
+ [
+ "428.36",
+ "0.10737418"
+ ],
+ [
+ "428.28",
+ "0.26970240"
+ ],
+ [
+ "425.00",
+ "0.05829732"
+ ],
+ [
+ "420.00",
+ "0.05000000"
+ ],
+ [
+ "416.00",
+ "0.92555000"
+ ],
+ [
+ "415.00",
+ "0.01915663"
+ ],
+ [
+ "414.14",
+ "0.10759646"
+ ],
+ [
+ "412.24",
+ "0.02161305"
+ ],
+ [
+ "410.00",
+ "1.01300000"
+ ],
+ [
+ "405.06",
+ "0.10000000"
+ ],
+ [
+ "405.00",
+ "0.10000000"
+ ],
+ [
+ "404.93",
+ "0.02836949"
+ ],
+ [
+ "404.50",
+ "1.00000000"
+ ],
+ [
+ "403.16",
+ "0.10737418"
+ ],
+ [
+ "402.32",
+ "0.38119615"
+ ],
+ [
+ "402.00",
+ "1.12154814"
+ ],
+ [
+ "401.20",
+ "0.01500000"
+ ],
+ [
+ "401.00",
+ "1.00000000"
+ ],
+ [
+ "400.00",
+ "7.44253850"
+ ],
+ [
+ "396.87",
+ "0.99748000"
+ ],
+ [
+ "396.83",
+ "0.02742085"
+ ],
+ [
+ "393.93",
+ "0.12725611"
+ ],
+ [
+ "391.60",
+ "0.20000000"
+ ],
+ [
+ "390.89",
+ "0.01300000"
+ ],
+ [
+ "390.00",
+ "1.00000000"
+ ],
+ [
+ "379.44",
+ "0.10737418"
+ ],
+ [
+ "379.00",
+ "0.05000000"
+ ],
+ [
+ "378.00",
+ "0.05000000"
+ ],
+ [
+ "375.00",
+ "0.02120000"
+ ],
+ [
+ "373.89",
+ "6.00558988"
+ ],
+ [
+ "368.59",
+ "0.03556282"
+ ],
+ [
+ "366.06",
+ "0.04760318"
+ ],
+ [
+ "365.84",
+ "0.02683626"
+ ],
+ [
+ "365.00",
+ "1.50000000"
+ ],
+ [
+ "363.00",
+ "41.00000000"
+ ],
+ [
+ "361.00",
+ "0.27700000"
+ ],
+ [
+ "360.15",
+ "0.12225000"
+ ],
+ [
+ "360.00",
+ "0.50505000"
+ ],
+ [
+ "357.12",
+ "0.10737418"
+ ],
+ [
+ "355.06",
+ "0.10000000"
+ ],
+ [
+ "350.95",
+ "0.03728252"
+ ],
+ [
+ "350.75",
+ "0.01864739"
+ ],
+ [
+ "350.25",
+ "0.18250000"
+ ],
+ [
+ "350.00",
+ "0.52271429"
+ ],
+ [
+ "348.29",
+ "0.06809382"
+ ],
+ [
+ "345.99",
+ "0.05654656"
+ ],
+ [
+ "344.98",
+ "0.03777200"
+ ],
+ [
+ "341.74",
+ "0.33695760"
+ ],
+ [
+ "336.11",
+ "0.10737418"
+ ],
+ [
+ "333.00",
+ "3.00000000"
+ ],
+ [
+ "328.97",
+ "0.09142420"
+ ],
+ [
+ "326.00",
+ "0.74400000"
+ ],
+ [
+ "325.00",
+ "2.00000000"
+ ],
+ [
+ "324.00",
+ "0.05000000"
+ ],
+ [
+ "322.65",
+ "0.02288758"
+ ],
+ [
+ "321.00",
+ "0.29000000"
+ ],
+ [
+ "320.00",
+ "1.50000000"
+ ],
+ [
+ "316.34",
+ "0.10737418"
+ ],
+ [
+ "310.60",
+ "0.01800000"
+ ],
+ [
+ "310.00",
+ "1.20387096"
+ ],
+ [
+ "307.00",
+ "0.03500000"
+ ],
+ [
+ "305.06",
+ "0.10000000"
+ ],
+ [
+ "302.00",
+ "1.00000000"
+ ],
+ [
+ "300.50",
+ "0.33000000"
+ ],
+ [
+ "300.00",
+ "2.68464025"
+ ],
+ [
+ "297.73",
+ "0.10737418"
+ ],
+ [
+ "295.00",
+ "0.33000000"
+ ],
+ [
+ "289.00",
+ "0.05000000"
+ ],
+ [
+ "288.00",
+ "1.00000000"
+ ],
+ [
+ "287.00",
+ "0.25000000"
+ ],
+ [
+ "285.00",
+ "1.00000000"
+ ],
+ [
+ "280.50",
+ "1.25000000"
+ ],
+ [
+ "280.22",
+ "0.10737418"
+ ],
+ [
+ "280.00",
+ "1.40696428"
+ ],
+ [
+ "279.00",
+ "0.03300000"
+ ],
+ [
+ "277.00",
+ "1.00000000"
+ ],
+ [
+ "276.50",
+ "0.02000000"
+ ],
+ [
+ "271.00",
+ "1.30000000"
+ ],
+ [
+ "265.00",
+ "20.00000000"
+ ],
+ [
+ "263.74",
+ "0.10737418"
+ ],
+ [
+ "259.00",
+ "10.00000000"
+ ],
+ [
+ "251.70",
+ "0.10000000"
+ ],
+ [
+ "250.60",
+ "196.10223463"
+ ],
+ [
+ "250.39",
+ "1.00000000"
+ ],
+ [
+ "250.30",
+ "0.02000000"
+ ],
+ [
+ "250.00",
+ "4.30000000"
+ ],
+ [
+ "249.00",
+ "10.00000000"
+ ],
+ [
+ "248.22",
+ "0.10737418"
+ ],
+ [
+ "245.15",
+ "1.05763818"
+ ],
+ [
+ "236.38",
+ "47.39368813"
+ ],
+ [
+ "234.00",
+ "0.20000000"
+ ],
+ [
+ "233.62",
+ "0.10737418"
+ ],
+ [
+ "233.00",
+ "6.42469957"
+ ],
+ [
+ "227.00",
+ "0.93488986"
+ ],
+ [
+ "222.22",
+ "1.00000000"
+ ],
+ [
+ "221.50",
+ "0.91000000"
+ ],
+ [
+ "220.00",
+ "1.30000000"
+ ],
+ [
+ "219.97",
+ "10.00000000"
+ ],
+ [
+ "219.88",
+ "0.10737418"
+ ],
+ [
+ "210.00",
+ "2.35495232"
+ ],
+ [
+ "206.94",
+ "0.10737418"
+ ],
+ [
+ "205.00",
+ "3.00000000"
+ ],
+ [
+ "200.98",
+ "10.02718326"
+ ],
+ [
+ "200.00",
+ "30.48700000"
+ ],
+ [
+ "199.00",
+ "6.73392659"
+ ],
+ [
+ "198.81",
+ "0.10000000"
+ ],
+ [
+ "194.77",
+ "0.10737418"
+ ],
+ [
+ "185.97",
+ "1.00000000"
+ ],
+ [
+ "183.31",
+ "0.10737418"
+ ],
+ [
+ "180.00",
+ "5.00000000"
+ ],
+ [
+ "174.42",
+ "0.99747735"
+ ],
+ [
+ "172.53",
+ "0.10737418"
+ ],
+ [
+ "162.38",
+ "0.10737418"
+ ],
+ [
+ "160.00",
+ "2.00000000"
+ ],
+ [
+ "159.00",
+ "5.71000000"
+ ],
+ [
+ "155.00",
+ "1.00019354"
+ ],
+ [
+ "153.00",
+ "20.00000000"
+ ],
+ [
+ "152.83",
+ "0.10737418"
+ ],
+ [
+ "150.08",
+ "1.00000000"
+ ],
+ [
+ "150.00",
+ "2.00000000"
+ ],
+ [
+ "145.00",
+ "7.00000000"
+ ],
+ [
+ "143.84",
+ "0.10737418"
+ ],
+ [
+ "135.38",
+ "0.10737418"
+ ],
+ [
+ "130.00",
+ "2.00000000"
+ ],
+ [
+ "129.14",
+ "0.99744463"
+ ],
+ [
+ "128.00",
+ "0.50000000"
+ ],
+ [
+ "127.41",
+ "0.10737418"
+ ],
+ [
+ "125.97",
+ "1.00000000"
+ ],
+ [
+ "125.00",
+ "20.00000000"
+ ],
+ [
+ "123.00",
+ "1.20000000"
+ ],
+ [
+ "122.71",
+ "1000.00000000"
+ ],
+ [
+ "122.00",
+ "2.00000000"
+ ],
+ [
+ "119.92",
+ "0.10737418"
+ ],
+ [
+ "112.86",
+ "0.10737418"
+ ],
+ [
+ "111.00",
+ "1.09000000"
+ ],
+ [
+ "110.00",
+ "12.47354545"
+ ],
+ [
+ "108.06",
+ "60.00000000"
+ ],
+ [
+ "106.22",
+ "0.10737418"
+ ],
+ [
+ "102.00",
+ "2.00000000"
+ ],
+ [
+ "101.00",
+ "1.50000000"
+ ],
+ [
+ "100.60",
+ "162.40000000"
+ ],
+ [
+ "100.00",
+ "86.06363339"
+ ],
+ [
+ "99.98",
+ "0.10737418"
+ ],
+ [
+ "99.90",
+ "2.00020000"
+ ],
+ [
+ "95.00",
+ "208.73000000"
+ ],
+ [
+ "91.00",
+ "1.00000000"
+ ],
+ [
+ "90.00",
+ "30.70088888"
+ ],
+ [
+ "82.00",
+ "1.00000000"
+ ],
+ [
+ "72.00",
+ "1.00000000"
+ ],
+ [
+ "69.69",
+ "10.94475534"
+ ],
+ [
+ "67.00",
+ "1.00000000"
+ ],
+ [
+ "65.00",
+ "50.00000000"
+ ],
+ [
+ "62.00",
+ "1.00000000"
+ ],
+ [
+ "60.11",
+ "0.99800365"
+ ],
+ [
+ "58.00",
+ "5.50705991"
+ ],
+ [
+ "56.20",
+ "35.00000000"
+ ],
+ [
+ "52.00",
+ "1.00000000"
+ ],
+ [
+ "50.00",
+ "29.00000000"
+ ],
+ [
+ "46.00",
+ "12.20336956"
+ ],
+ [
+ "42.00",
+ "4.20000000"
+ ],
+ [
+ "41.99",
+ "1.00000000"
+ ],
+ [
+ "40.00",
+ "4.00000000"
+ ],
+ [
+ "37.00",
+ "22.75756757"
+ ],
+ [
+ "36.99",
+ "1.00000000"
+ ],
+ [
+ "32.00",
+ "1.00000000"
+ ],
+ [
+ "31.31",
+ "10.00000000"
+ ],
+ [
+ "28.99",
+ "1.00000000"
+ ],
+ [
+ "28.51",
+ "0.99719396"
+ ],
+ [
+ "25.25",
+ "30.00000000"
+ ],
+ [
+ "24.41",
+ "0.99713232"
+ ],
+ [
+ "23.00",
+ "1.00000000"
+ ],
+ [
+ "22.99",
+ "1.00000000"
+ ],
+ [
+ "22.00",
+ "1.00000000"
+ ],
+ [
+ "21.21",
+ "10.00000000"
+ ],
+ [
+ "20.00",
+ "1.00000000"
+ ],
+ [
+ "18.99",
+ "0.99736703"
+ ],
+ [
+ "17.90",
+ "1.00000000"
+ ],
+ [
+ "17.72",
+ "0.99717833"
+ ],
+ [
+ "15.99",
+ "1.00000000"
+ ],
+ [
+ "15.25",
+ "30.00000000"
+ ],
+ [
+ "15.00",
+ "33.99933333"
+ ],
+ [
+ "14.50",
+ "0.51586206"
+ ],
+ [
+ "14.34",
+ "0.99721059"
+ ],
+ [
+ "13.99",
+ "10.00000000"
+ ],
+ [
+ "13.00",
+ "100.83000000"
+ ],
+ [
+ "12.99",
+ "11.00000000"
+ ],
+ [
+ "12.78",
+ "3.00000000"
+ ],
+ [
+ "12.27",
+ "52.00000000"
+ ],
+ [
+ "12.10",
+ "10.00000000"
+ ],
+ [
+ "12.01",
+ "10.00000000"
+ ],
+ [
+ "12.00",
+ "111.00000000"
+ ],
+ [
+ "11.99",
+ "11.00000000"
+ ],
+ [
+ "11.98",
+ "10.00000000"
+ ],
+ [
+ "11.97",
+ "10.00000000"
+ ],
+ [
+ "11.17",
+ "1.01162788"
+ ],
+ [
+ "11.15",
+ "0.50419039"
+ ],
+ [
+ "11.10",
+ "10.00000000"
+ ],
+ [
+ "11.00",
+ "31.00000000"
+ ],
+ [
+ "10.25",
+ "1.00487805"
+ ],
+ [
+ "10.10",
+ "10.00000000"
+ ],
+ [
+ "10.01",
+ "1820.00000000"
+ ],
+ [
+ "10.00",
+ "150.49249999"
+ ],
+ [
+ "9.99",
+ "50.99994394"
+ ],
+ [
+ "9.50",
+ "0.55684210"
+ ],
+ [
+ "9.45",
+ "1.02874218"
+ ],
+ [
+ "9.00",
+ "22.00000000"
+ ],
+ [
+ "8.26",
+ "0.99636803"
+ ],
+ [
+ "7.68",
+ "0.99000000"
+ ],
+ [
+ "7.00",
+ "1.00000000"
+ ],
+ [
+ "6.65",
+ "1.00000000"
+ ],
+ [
+ "6.00",
+ "101.11999999"
+ ],
+ [
+ "5.99",
+ "57.90074680"
+ ],
+ [
+ "5.62",
+ "400.00000000"
+ ],
+ [
+ "5.05",
+ "25.00000000"
+ ],
+ [
+ "5.00",
+ "7796.27602731"
+ ],
+ [
+ "4.02",
+ "30.00000000"
+ ],
+ [
+ "4.00",
+ "50.00000000"
+ ],
+ [
+ "3.69",
+ "10.00000000"
+ ],
+ [
+ "3.50",
+ "793.48560000"
+ ],
+ [
+ "3.45",
+ "3.00000000"
+ ],
+ [
+ "3.40",
+ "3.00000000"
+ ],
+ [
+ "2.99",
+ "67.71571304"
+ ],
+ [
+ "2.90",
+ "20.00000000"
+ ],
+ [
+ "2.59",
+ "100.00000000"
+ ],
+ [
+ "2.50",
+ "9.00000000"
+ ],
+ [
+ "2.46",
+ "8.10975610"
+ ],
+ [
+ "2.39",
+ "100.00000000"
+ ],
+ [
+ "2.29",
+ "100.00000000"
+ ],
+ [
+ "2.00",
+ "2168.54778750"
+ ],
+ [
+ "1.65",
+ "5000.00000000"
+ ],
+ [
+ "1.50",
+ "100.00000000"
+ ],
+ [
+ "1.20",
+ "10.00000000"
+ ],
+ [
+ "1.13",
+ "50.00000000"
+ ],
+ [
+ "1.10",
+ "4400.00000000"
+ ],
+ [
+ "1.01",
+ "83.00000000"
+ ],
+ [
+ "1.00",
+ "11758.97043643"
+ ],
+ [
+ "0.90",
+ "45.00000000"
+ ],
+ [
+ "0.83",
+ "263.85542168"
+ ],
+ [
+ "0.80",
+ "10.00000000"
+ ],
+ [
+ "0.70",
+ "10.00000000"
+ ],
+ [
+ "0.69",
+ "100.00000000"
+ ],
+ [
+ "0.60",
+ "10.00000000"
+ ],
+ [
+ "0.50",
+ "10.00000000"
+ ],
+ [
+ "0.40",
+ "15.00000000"
+ ],
+ [
+ "0.35",
+ "15.00000000"
+ ],
+ [
+ "0.34",
+ "68.26470588"
+ ],
+ [
+ "0.33",
+ "20.00000000"
+ ],
+ [
+ "0.32",
+ "20.00000000"
+ ],
+ [
+ "0.31",
+ "20.00000000"
+ ],
+ [
+ "0.30",
+ "3020.00000000"
+ ],
+ [
+ "0.29",
+ "120.00000000"
+ ],
+ [
+ "0.28",
+ "20.00000000"
+ ],
+ [
+ "0.27",
+ "20.00000000"
+ ],
+ [
+ "0.26",
+ "20.00000000"
+ ],
+ [
+ "0.25",
+ "40.00000000"
+ ],
+ [
+ "0.24",
+ "25.00000000"
+ ],
+ [
+ "0.23",
+ "25.00000000"
+ ],
+ [
+ "0.22",
+ "25.00000000"
+ ],
+ [
+ "0.21",
+ "25.00000000"
+ ],
+ [
+ "0.20",
+ "4025.00000000"
+ ],
+ [
+ "0.19",
+ "30.00000000"
+ ],
+ [
+ "0.18",
+ "30.00000000"
+ ],
+ [
+ "0.17",
+ "62.15470588"
+ ],
+ [
+ "0.16",
+ "40.00000000"
+ ],
+ [
+ "0.15",
+ "40.00000000"
+ ],
+ [
+ "0.14",
+ "40.00000000"
+ ],
+ [
+ "0.13",
+ "140.00000000"
+ ],
+ [
+ "0.12",
+ "50.00000000"
+ ],
+ [
+ "0.11",
+ "50.00000000"
+ ],
+ [
+ "0.10",
+ "99300.00000000"
+ ],
+ [
+ "0.09",
+ "75.00000000"
+ ],
+ [
+ "0.08",
+ "100.00000000"
+ ],
+ [
+ "0.07",
+ "1000.00000000"
+ ],
+ [
+ "0.06",
+ "250.00000000"
+ ],
+ [
+ "0.05",
+ "11713.60000000"
+ ],
+ [
+ "0.04",
+ "1000.00000000"
+ ],
+ [
+ "0.03",
+ "12500.00000000"
+ ],
+ [
+ "0.02",
+ "71479.00000000"
+ ],
+ [
+ "0.01",
+ "230061.01500000"
+ ]
+ ],
+ "asks": [
+ [
+ "8202.65",
+ "1.49199358"
+ ],
+ [
+ "8204.80",
+ "1.00000000"
+ ],
+ [
+ "8205.66",
+ "5.00000000"
+ ],
+ [
+ "8205.89",
+ "3.04640000"
+ ],
+ [
+ "8206.80",
+ "0.00166065"
+ ],
+ [
+ "8206.94",
+ "2.00000000"
+ ],
+ [
+ "8207.83",
+ "0.02000000"
+ ],
+ [
+ "8207.98",
+ "2.50000000"
+ ],
+ [
+ "8209.95",
+ "10.00000000"
+ ],
+ [
+ "8210.24",
+ "2.50000000"
+ ],
+ [
+ "8210.57",
+ "0.00618343"
+ ],
+ [
+ "8211.04",
+ "8.00000000"
+ ],
+ [
+ "8211.20",
+ "5.00000000"
+ ],
+ [
+ "8211.47",
+ "0.40000000"
+ ],
+ [
+ "8212.20",
+ "5.00000000"
+ ],
+ [
+ "8212.97",
+ "0.10000000"
+ ],
+ [
+ "8214.55",
+ "1.50170000"
+ ],
+ [
+ "8218.77",
+ "3.90000000"
+ ],
+ [
+ "8218.89",
+ "0.63900000"
+ ],
+ [
+ "8219.70",
+ "0.50000000"
+ ],
+ [
+ "8221.84",
+ "1.00000000"
+ ],
+ [
+ "8222.52",
+ "2.30000000"
+ ],
+ [
+ "8225.66",
+ "4.14299111"
+ ],
+ [
+ "8225.67",
+ "4.49000000"
+ ],
+ [
+ "8227.87",
+ "5.00000000"
+ ],
+ [
+ "8228.53",
+ "0.40000000"
+ ],
+ [
+ "8229.34",
+ "4.34000000"
+ ],
+ [
+ "8232.06",
+ "2.43090000"
+ ],
+ [
+ "8233.17",
+ "7.00000000"
+ ],
+ [
+ "8235.41",
+ "2.54988182"
+ ],
+ [
+ "8236.00",
+ "1.46000000"
+ ],
+ [
+ "8236.66",
+ "0.00517293"
+ ],
+ [
+ "8237.30",
+ "0.19891901"
+ ],
+ [
+ "8238.32",
+ "0.10000000"
+ ],
+ [
+ "8238.84",
+ "5.21285300"
+ ],
+ [
+ "8240.75",
+ "13.08137618"
+ ],
+ [
+ "8243.44",
+ "0.01489973"
+ ],
+ [
+ "8243.78",
+ "2.37600000"
+ ],
+ [
+ "8245.00",
+ "0.30000320"
+ ],
+ [
+ "8246.08",
+ "15.18890000"
+ ],
+ [
+ "8249.13",
+ "2.00000000"
+ ],
+ [
+ "8249.20",
+ "0.86000000"
+ ],
+ [
+ "8250.66",
+ "0.01220143"
+ ],
+ [
+ "8250.76",
+ "1.11000000"
+ ],
+ [
+ "8251.91",
+ "0.05886000"
+ ],
+ [
+ "8252.03",
+ "10.37735960"
+ ],
+ [
+ "8255.39",
+ "1.45200000"
+ ],
+ [
+ "8256.68",
+ "0.00674998"
+ ],
+ [
+ "8257.40",
+ "0.05000000"
+ ],
+ [
+ "8257.59",
+ "0.00136683"
+ ],
+ [
+ "8264.58",
+ "0.00096058"
+ ],
+ [
+ "8265.60",
+ "0.86000000"
+ ],
+ [
+ "8266.23",
+ "13.53981780"
+ ],
+ [
+ "8268.04",
+ "0.95865787"
+ ],
+ [
+ "8268.11",
+ "0.20000000"
+ ],
+ [
+ "8268.38",
+ "1.00000000"
+ ],
+ [
+ "8268.79",
+ "0.00674998"
+ ],
+ [
+ "8273.21",
+ "0.02260911"
+ ],
+ [
+ "8273.24",
+ "3.44600000"
+ ],
+ [
+ "8273.36",
+ "12.50000000"
+ ],
+ [
+ "8277.01",
+ "0.01479943"
+ ],
+ [
+ "8277.03",
+ "0.28285714"
+ ],
+ [
+ "8278.40",
+ "0.00096059"
+ ],
+ [
+ "8279.26",
+ "0.25000000"
+ ],
+ [
+ "8280.53",
+ "0.00674998"
+ ],
+ [
+ "8281.36",
+ "1.00000000"
+ ],
+ [
+ "8281.46",
+ "16.69695724"
+ ],
+ [
+ "8282.00",
+ "0.00096356"
+ ],
+ [
+ "8282.69",
+ "2.00000000"
+ ],
+ [
+ "8283.83",
+ "0.00241426"
+ ],
+ [
+ "8285.24",
+ "1.00000000"
+ ],
+ [
+ "8285.32",
+ "1.00000000"
+ ],
+ [
+ "8285.84",
+ "1.29262634"
+ ],
+ [
+ "8291.25",
+ "0.20000000"
+ ],
+ [
+ "8291.52",
+ "0.00674998"
+ ],
+ [
+ "8291.93",
+ "1.00000000"
+ ],
+ [
+ "8292.21",
+ "0.00096060"
+ ],
+ [
+ "8293.23",
+ "1.00000000"
+ ],
+ [
+ "8294.04",
+ "12.50000000"
+ ],
+ [
+ "8294.23",
+ "13.02328351"
+ ],
+ [
+ "8294.33",
+ "1.00000000"
+ ],
+ [
+ "8295.00",
+ "0.10000000"
+ ],
+ [
+ "8297.03",
+ "0.02986655"
+ ],
+ [
+ "8298.26",
+ "1.00000000"
+ ],
+ [
+ "8300.00",
+ "2.67361158"
+ ],
+ [
+ "8300.36",
+ "0.26000000"
+ ],
+ [
+ "8301.82",
+ "0.23844388"
+ ],
+ [
+ "8302.52",
+ "0.00674998"
+ ],
+ [
+ "8303.64",
+ "8.14400000"
+ ],
+ [
+ "8304.21",
+ "1.00000000"
+ ],
+ [
+ "8306.03",
+ "0.00095061"
+ ],
+ [
+ "8306.55",
+ "9.89471212"
+ ],
+ [
+ "8307.33",
+ "3.00000000"
+ ],
+ [
+ "8309.62",
+ "3.00000000"
+ ],
+ [
+ "8310.46",
+ "0.01459908"
+ ],
+ [
+ "8314.17",
+ "0.00674998"
+ ],
+ [
+ "8314.77",
+ "12.50000000"
+ ],
+ [
+ "8317.99",
+ "0.25000000"
+ ],
+ [
+ "8319.85",
+ "0.00095062"
+ ],
+ [
+ "8323.00",
+ "0.50000000"
+ ],
+ [
+ "8324.41",
+ "11.55910187"
+ ],
+ [
+ "8325.18",
+ "0.00674998"
+ ],
+ [
+ "8332.39",
+ "0.50000000"
+ ],
+ [
+ "8332.50",
+ "0.00095772"
+ ],
+ [
+ "8333.67",
+ "0.00095063"
+ ],
+ [
+ "8334.95",
+ "0.25000000"
+ ],
+ [
+ "8335.03",
+ "0.25000000"
+ ],
+ [
+ "8335.56",
+ "10.85057760"
+ ],
+ [
+ "8336.19",
+ "0.00273418"
+ ],
+ [
+ "8337.02",
+ "0.01500000"
+ ],
+ [
+ "8337.41",
+ "0.00509432"
+ ],
+ [
+ "8337.52",
+ "0.00541678"
+ ],
+ [
+ "8337.95",
+ "11.47361618"
+ ],
+ [
+ "8339.00",
+ "1.00000000"
+ ],
+ [
+ "8340.00",
+ "0.10000000"
+ ],
+ [
+ "8340.59",
+ "0.00770264"
+ ],
+ [
+ "8341.02",
+ "0.10000000"
+ ],
+ [
+ "8341.83",
+ "0.05000000"
+ ],
+ [
+ "8342.99",
+ "0.22216058"
+ ],
+ [
+ "8344.12",
+ "0.10000000"
+ ],
+ [
+ "8345.35",
+ "0.06125000"
+ ],
+ [
+ "8345.56",
+ "0.00400000"
+ ],
+ [
+ "8345.62",
+ "8.00700000"
+ ],
+ [
+ "8345.69",
+ "0.00218348"
+ ],
+ [
+ "8347.00",
+ "0.02000000"
+ ],
+ [
+ "8347.48",
+ "0.00095064"
+ ],
+ [
+ "8348.00",
+ "0.10000000"
+ ],
+ [
+ "8348.05",
+ "0.28000000"
+ ],
+ [
+ "8348.88",
+ "2.00000000"
+ ],
+ [
+ "8349.00",
+ "0.01000000"
+ ],
+ [
+ "8349.40",
+ "0.00514284"
+ ],
+ [
+ "8349.78",
+ "9.20591421"
+ ],
+ [
+ "8350.00",
+ "4.66632036"
+ ],
+ [
+ "8355.00",
+ "0.00315042"
+ ],
+ [
+ "8355.94",
+ "0.50000000"
+ ],
+ [
+ "8356.40",
+ "12.50000000"
+ ],
+ [
+ "8357.75",
+ "0.00514284"
+ ],
+ [
+ "8358.00",
+ "0.04261097"
+ ],
+ [
+ "8358.43",
+ "0.65000000"
+ ],
+ [
+ "8361.10",
+ "0.03312500"
+ ],
+ [
+ "8361.30",
+ "0.00095065"
+ ],
+ [
+ "8361.63",
+ "1.11000000"
+ ],
+ [
+ "8362.89",
+ "8.12569115"
+ ],
+ [
+ "8364.64",
+ "0.00456200"
+ ],
+ [
+ "8365.58",
+ "0.00200000"
+ ],
+ [
+ "8366.00",
+ "0.20000000"
+ ],
+ [
+ "8366.10",
+ "0.00514284"
+ ],
+ [
+ "8367.00",
+ "0.02000000"
+ ],
+ [
+ "8367.32",
+ "0.03120293"
+ ],
+ [
+ "8368.11",
+ "0.50000000"
+ ],
+ [
+ "8369.00",
+ "0.06763003"
+ ],
+ [
+ "8370.00",
+ "0.01000000"
+ ],
+ [
+ "8373.42",
+ "0.00560190"
+ ],
+ [
+ "8374.00",
+ "0.02629083"
+ ],
+ [
+ "8374.45",
+ "0.00514284"
+ ],
+ [
+ "8375.00",
+ "0.12500000"
+ ],
+ [
+ "8375.12",
+ "0.00095066"
+ ],
+ [
+ "8377.29",
+ "12.50000000"
+ ],
+ [
+ "8378.00",
+ "0.50000000"
+ ],
+ [
+ "8380.00",
+ "0.15616625"
+ ],
+ [
+ "8380.04",
+ "7.63079813"
+ ],
+ [
+ "8380.38",
+ "14.02500000"
+ ],
+ [
+ "8382.80",
+ "0.00514284"
+ ],
+ [
+ "8383.00",
+ "0.00095195"
+ ],
+ [
+ "8384.00",
+ "0.00149507"
+ ],
+ [
+ "8387.00",
+ "0.12000000"
+ ],
+ [
+ "8388.00",
+ "0.14540024"
+ ],
+ [
+ "8388.64",
+ "0.37191245"
+ ],
+ [
+ "8388.78",
+ "1.39190411"
+ ],
+ [
+ "8388.94",
+ "0.00094067"
+ ],
+ [
+ "8390.00",
+ "0.10000000"
+ ],
+ [
+ "8390.57",
+ "8.82022648"
+ ],
+ [
+ "8391.15",
+ "0.00514284"
+ ],
+ [
+ "8395.00",
+ "2.26788502"
+ ],
+ [
+ "8398.24",
+ "12.50000000"
+ ],
+ [
+ "8399.00",
+ "0.50000000"
+ ],
+ [
+ "8399.50",
+ "0.00514284"
+ ],
+ [
+ "8399.56",
+ "0.02571329"
+ ],
+ [
+ "8400.00",
+ "5.44906742"
+ ],
+ [
+ "8400.16",
+ "0.02000000"
+ ],
+ [
+ "8401.65",
+ "0.70000000"
+ ],
+ [
+ "8402.75",
+ "0.00094068"
+ ],
+ [
+ "8403.68",
+ "5.84545852"
+ ],
+ [
+ "8404.90",
+ "0.00199500"
+ ],
+ [
+ "8407.00",
+ "0.04000000"
+ ],
+ [
+ "8407.83",
+ "0.02500000"
+ ],
+ [
+ "8407.85",
+ "0.00514284"
+ ],
+ [
+ "8408.00",
+ "0.03000000"
+ ],
+ [
+ "8408.75",
+ "0.00164100"
+ ],
+ [
+ "8410.00",
+ "0.03597192"
+ ],
+ [
+ "8415.00",
+ "0.10576470"
+ ],
+ [
+ "8416.00",
+ "0.05000000"
+ ],
+ [
+ "8416.20",
+ "0.00514284"
+ ],
+ [
+ "8416.34",
+ "9.78661090"
+ ],
+ [
+ "8416.57",
+ "0.00094069"
+ ],
+ [
+ "8419.23",
+ "12.50000000"
+ ],
+ [
+ "8420.00",
+ "1.25000000"
+ ],
+ [
+ "8420.69",
+ "1.00000000"
+ ],
+ [
+ "8422.23",
+ "0.10000000"
+ ],
+ [
+ "8424.00",
+ "0.05000000"
+ ],
+ [
+ "8425.26",
+ "0.00514284"
+ ],
+ [
+ "8427.00",
+ "0.04000000"
+ ],
+ [
+ "8428.01",
+ "0.00230619"
+ ],
+ [
+ "8430.00",
+ "0.00168737"
+ ],
+ [
+ "8430.39",
+ "0.00094070"
+ ],
+ [
+ "8433.00",
+ "0.00100000"
+ ],
+ [
+ "8433.50",
+ "0.00094625"
+ ],
+ [
+ "8435.36",
+ "0.00514284"
+ ],
+ [
+ "8439.00",
+ "1.00000000"
+ ],
+ [
+ "8439.43",
+ "0.07153984"
+ ],
+ [
+ "8439.80",
+ "1.48000000"
+ ],
+ [
+ "8440.28",
+ "12.50000000"
+ ],
+ [
+ "8442.63",
+ "0.41505948"
+ ],
+ [
+ "8443.75",
+ "0.00276943"
+ ],
+ [
+ "8444.20",
+ "0.00094071"
+ ],
+ [
+ "8444.24",
+ "0.20000000"
+ ],
+ [
+ "8444.44",
+ "0.01675383"
+ ],
+ [
+ "8445.00",
+ "3.03075269"
+ ],
+ [
+ "8445.35",
+ "0.00519229"
+ ],
+ [
+ "8446.32",
+ "0.07639018"
+ ],
+ [
+ "8447.00",
+ "0.17000000"
+ ],
+ [
+ "8447.52",
+ "0.05000000"
+ ],
+ [
+ "8448.00",
+ "0.05000000"
+ ],
+ [
+ "8448.78",
+ "0.08683010"
+ ],
+ [
+ "8449.00",
+ "0.06644731"
+ ],
+ [
+ "8450.00",
+ "5.55492180"
+ ],
+ [
+ "8451.15",
+ "0.00245600"
+ ],
+ [
+ "8452.00",
+ "0.05000000"
+ ],
+ [
+ "8453.00",
+ "0.10000000"
+ ],
+ [
+ "8453.11",
+ "0.00163668"
+ ],
+ [
+ "8453.76",
+ "0.00519229"
+ ],
+ [
+ "8454.00",
+ "0.04200000"
+ ],
+ [
+ "8455.00",
+ "0.26087250"
+ ],
+ [
+ "8455.27",
+ "0.00377909"
+ ],
+ [
+ "8455.53",
+ "0.28902717"
+ ],
+ [
+ "8456.72",
+ "0.00968523"
+ ],
+ [
+ "8456.86",
+ "0.20000000"
+ ],
+ [
+ "8457.00",
+ "0.06000000"
+ ],
+ [
+ "8458.00",
+ "0.09391645"
+ ],
+ [
+ "8458.02",
+ "0.00094072"
+ ],
+ [
+ "8459.84",
+ "0.05000000"
+ ],
+ [
+ "8460.00",
+ "0.10000000"
+ ],
+ [
+ "8460.08",
+ "0.10000000"
+ ],
+ [
+ "8460.84",
+ "1.22514677"
+ ],
+ [
+ "8461.00",
+ "0.10000000"
+ ],
+ [
+ "8461.38",
+ "12.50000000"
+ ],
+ [
+ "8462.18",
+ "0.00519229"
+ ],
+ [
+ "8463.00",
+ "0.12000000"
+ ],
+ [
+ "8463.35",
+ "0.10000000"
+ ],
+ [
+ "8466.00",
+ "0.25000000"
+ ],
+ [
+ "8467.00",
+ "0.02000000"
+ ],
+ [
+ "8467.20",
+ "0.05000000"
+ ],
+ [
+ "8468.90",
+ "1.00000000"
+ ],
+ [
+ "8470.01",
+ "0.74394843"
+ ],
+ [
+ "8470.11",
+ "0.10000000"
+ ],
+ [
+ "8470.59",
+ "0.00519229"
+ ],
+ [
+ "8471.77",
+ "0.00870569"
+ ],
+ [
+ "8471.84",
+ "0.00094073"
+ ],
+ [
+ "8473.76",
+ "0.03821576"
+ ],
+ [
+ "8473.90",
+ "0.00120000"
+ ],
+ [
+ "8474.12",
+ "0.00314587"
+ ],
+ [
+ "8475.33",
+ "0.07612876"
+ ],
+ [
+ "8475.99",
+ "0.00313252"
+ ],
+ [
+ "8476.13",
+ "0.00316303"
+ ],
+ [
+ "8479.00",
+ "0.00519229"
+ ],
+ [
+ "8481.00",
+ "0.05000000"
+ ],
+ [
+ "8482.53",
+ "12.50000000"
+ ],
+ [
+ "8482.59",
+ "0.00078344"
+ ],
+ [
+ "8484.00",
+ "0.00094061"
+ ],
+ [
+ "8484.86",
+ "0.00400000"
+ ],
+ [
+ "8485.66",
+ "0.00093074"
+ ],
+ [
+ "8487.00",
+ "0.02000000"
+ ],
+ [
+ "8489.00",
+ "0.25000000"
+ ],
+ [
+ "8489.07",
+ "0.00519229"
+ ],
+ [
+ "8489.45",
+ "0.20000000"
+ ],
+ [
+ "8490.00",
+ "0.02000000"
+ ],
+ [
+ "8492.55",
+ "0.00964436"
+ ],
+ [
+ "8494.00",
+ "0.13796981"
+ ],
+ [
+ "8495.01",
+ "0.02570000"
+ ],
+ [
+ "8495.99",
+ "0.24989620"
+ ],
+ [
+ "8496.15",
+ "0.60000000"
+ ],
+ [
+ "8497.93",
+ "0.01500000"
+ ],
+ [
+ "8499.00",
+ "0.90000000"
+ ],
+ [
+ "8499.11",
+ "0.00519229"
+ ],
+ [
+ "8499.47",
+ "0.00093075"
+ ],
+ [
+ "8500.00",
+ "113.41158092"
+ ],
+ [
+ "8500.08",
+ "0.23200000"
+ ],
+ [
+ "8500.14",
+ "0.02215135"
+ ],
+ [
+ "8500.50",
+ "0.66736347"
+ ],
+ [
+ "8500.54",
+ "0.78511746"
+ ],
+ [
+ "8502.56",
+ "0.09920684"
+ ],
+ [
+ "8503.74",
+ "12.50000000"
+ ],
+ [
+ "8504.53",
+ "0.02528911"
+ ],
+ [
+ "8506.20",
+ "0.00519229"
+ ],
+ [
+ "8506.93",
+ "0.10000000"
+ ],
+ [
+ "8507.00",
+ "0.02000000"
+ ],
+ [
+ "8509.67",
+ "0.02527383"
+ ],
+ [
+ "8510.00",
+ "0.03587000"
+ ],
+ [
+ "8510.53",
+ "0.00399466"
+ ],
+ [
+ "8512.04",
+ "0.05000000"
+ ],
+ [
+ "8513.29",
+ "0.00093076"
+ ],
+ [
+ "8514.02",
+ "0.00124526"
+ ],
+ [
+ "8514.83",
+ "0.06500000"
+ ],
+ [
+ "8515.67",
+ "0.00519229"
+ ],
+ [
+ "8519.00",
+ "0.02000000"
+ ],
+ [
+ "8520.00",
+ "0.05000000"
+ ],
+ [
+ "8520.58",
+ "0.03000000"
+ ],
+ [
+ "8525.00",
+ "12.57000000"
+ ],
+ [
+ "8525.76",
+ "0.00519229"
+ ],
+ [
+ "8527.00",
+ "0.02000000"
+ ],
+ [
+ "8527.11",
+ "0.00093077"
+ ],
+ [
+ "8527.37",
+ "0.95804385"
+ ],
+ [
+ "8528.39",
+ "0.00960384"
+ ],
+ [
+ "8530.00",
+ "0.12121220"
+ ],
+ [
+ "8532.57",
+ "0.00224680"
+ ],
+ [
+ "8533.98",
+ "0.00519229"
+ ],
+ [
+ "8534.50",
+ "0.00093505"
+ ],
+ [
+ "8535.00",
+ "0.02000000"
+ ],
+ [
+ "8535.40",
+ "0.08504566"
+ ],
+ [
+ "8540.92",
+ "0.00093078"
+ ],
+ [
+ "8542.00",
+ "0.01500000"
+ ],
+ [
+ "8542.54",
+ "0.00337766"
+ ],
+ [
+ "8543.17",
+ "0.00524270"
+ ],
+ [
+ "8543.21",
+ "0.00450000"
+ ],
+ [
+ "8546.31",
+ "12.50000000"
+ ],
+ [
+ "8547.00",
+ "0.02000000"
+ ],
+ [
+ "8549.00",
+ "5.13000000"
+ ],
+ [
+ "8550.00",
+ "4.51533911"
+ ],
+ [
+ "8550.07",
+ "0.01080565"
+ ],
+ [
+ "8552.05",
+ "0.10978248"
+ ],
+ [
+ "8553.13",
+ "0.00524270"
+ ],
+ [
+ "8554.74",
+ "0.00093079"
+ ],
+ [
+ "8560.00",
+ "0.02865445"
+ ],
+ [
+ "8561.50",
+ "0.00524270"
+ ],
+ [
+ "8564.22",
+ "0.00956366"
+ ],
+ [
+ "8565.00",
+ "0.01000000"
+ ],
+ [
+ "8567.00",
+ "0.22983036"
+ ],
+ [
+ "8567.68",
+ "12.50000000"
+ ],
+ [
+ "8568.56",
+ "0.00092080"
+ ],
+ [
+ "8570.42",
+ "0.00524270"
+ ],
+ [
+ "8572.00",
+ "0.02500000"
+ ],
+ [
+ "8572.17",
+ "0.50000000"
+ ],
+ [
+ "8574.00",
+ "0.14000000"
+ ],
+ [
+ "8575.05",
+ "1.20000000"
+ ],
+ [
+ "8577.00",
+ "0.00152513"
+ ],
+ [
+ "8578.48",
+ "0.37191245"
+ ],
+ [
+ "8579.49",
+ "0.02922786"
+ ],
+ [
+ "8580.00",
+ "0.20000000"
+ ],
+ [
+ "8581.55",
+ "0.00524270"
+ ],
+ [
+ "8582.38",
+ "0.00092081"
+ ],
+ [
+ "8584.00",
+ "0.14000000"
+ ],
+ [
+ "8585.00",
+ "0.00092955"
+ ],
+ [
+ "8587.00",
+ "0.48111454"
+ ],
+ [
+ "8589.10",
+ "12.50000000"
+ ],
+ [
+ "8590.00",
+ "0.15000000"
+ ],
+ [
+ "8590.52",
+ "0.12318928"
+ ],
+ [
+ "8591.12",
+ "0.00524270"
+ ],
+ [
+ "8592.00",
+ "0.03000000"
+ ],
+ [
+ "8592.28",
+ "0.03245000"
+ ],
+ [
+ "8593.00",
+ "2.09720690"
+ ],
+ [
+ "8595.00",
+ "0.03993125"
+ ],
+ [
+ "8596.19",
+ "0.00092082"
+ ],
+ [
+ "8598.88",
+ "0.40280017"
+ ],
+ [
+ "8599.00",
+ "1.42814526"
+ ],
+ [
+ "8599.67",
+ "0.00524270"
+ ],
+ [
+ "8600.00",
+ "14.74100965"
+ ],
+ [
+ "8600.05",
+ "0.00952381"
+ ],
+ [
+ "8605.00",
+ "0.03298968"
+ ],
+ [
+ "8607.00",
+ "0.02000000"
+ ],
+ [
+ "8608.00",
+ "0.15000000"
+ ],
+ [
+ "8608.22",
+ "0.00524270"
+ ],
+ [
+ "8610.00",
+ "0.12586000"
+ ],
+ [
+ "8610.01",
+ "0.00092083"
+ ],
+ [
+ "8610.57",
+ "12.50000000"
+ ],
+ [
+ "8615.00",
+ "3.34123339"
+ ],
+ [
+ "8616.77",
+ "0.00385512"
+ ],
+ [
+ "8617.00",
+ "0.28325823"
+ ],
+ [
+ "8618.37",
+ "0.00529410"
+ ],
+ [
+ "8619.00",
+ "0.00151750"
+ ],
+ [
+ "8620.00",
+ "0.00430000"
+ ],
+ [
+ "8622.22",
+ "0.00965840"
+ ],
+ [
+ "8623.83",
+ "0.00092084"
+ ],
+ [
+ "8624.00",
+ "0.10000000"
+ ],
+ [
+ "8625.00",
+ "0.00350000"
+ ],
+ [
+ "8627.00",
+ "0.02000000"
+ ],
+ [
+ "8630.00",
+ "0.29916998"
+ ],
+ [
+ "8630.71",
+ "0.00529410"
+ ],
+ [
+ "8632.10",
+ "12.50000000"
+ ],
+ [
+ "8635.00",
+ "1.50000000"
+ ],
+ [
+ "8635.22",
+ "0.02484434"
+ ],
+ [
+ "8635.50",
+ "0.00671388"
+ ],
+ [
+ "8635.89",
+ "0.00948429"
+ ],
+ [
+ "8637.64",
+ "0.00092085"
+ ],
+ [
+ "8639.00",
+ "1.00000000"
+ ],
+ [
+ "8639.32",
+ "0.00529410"
+ ],
+ [
+ "8640.00",
+ "1.00624953"
+ ],
+ [
+ "8647.00",
+ "0.02000000"
+ ],
+ [
+ "8648.43",
+ "0.00529410"
+ ],
+ [
+ "8649.00",
+ "0.50000000"
+ ],
+ [
+ "8650.00",
+ "0.77508408"
+ ],
+ [
+ "8650.85",
+ "1.61484276"
+ ],
+ [
+ "8651.46",
+ "0.00092086"
+ ],
+ [
+ "8653.58",
+ "0.03000000"
+ ],
+ [
+ "8653.68",
+ "12.50000000"
+ ],
+ [
+ "8654.22",
+ "0.00319156"
+ ],
+ [
+ "8654.73",
+ "0.25738372"
+ ],
+ [
+ "8655.00",
+ "0.47294999"
+ ],
+ [
+ "8656.00",
+ "0.00650000"
+ ],
+ [
+ "8656.42",
+ "0.00344644"
+ ],
+ [
+ "8656.88",
+ "0.20140009"
+ ],
+ [
+ "8657.00",
+ "0.01500000"
+ ],
+ [
+ "8657.05",
+ "0.00529410"
+ ],
+ [
+ "8657.65",
+ "0.00453280"
+ ],
+ [
+ "8658.00",
+ "0.00219500"
+ ],
+ [
+ "8659.73",
+ "0.54111397"
+ ],
+ [
+ "8660.00",
+ "0.22958221"
+ ],
+ [
+ "8663.37",
+ "1.45990362"
+ ],
+ [
+ "8665.28",
+ "0.00091087"
+ ],
+ [
+ "8665.67",
+ "0.00529410"
+ ],
+ [
+ "8667.00",
+ "0.02000000"
+ ],
+ [
+ "8667.68",
+ "0.06568408"
+ ],
+ [
+ "8670.62",
+ "0.01000000"
+ ],
+ [
+ "8670.90",
+ "0.77999000"
+ ],
+ [
+ "8670.93",
+ "0.01500000"
+ ],
+ [
+ "8671.72",
+ "0.00944510"
+ ],
+ [
+ "8672.00",
+ "0.01000000"
+ ],
+ [
+ "8674.29",
+ "0.00529410"
+ ],
+ [
+ "8675.00",
+ "0.20000000"
+ ],
+ [
+ "8675.31",
+ "12.50000000"
+ ],
+ [
+ "8677.00",
+ "0.00100000"
+ ],
+ [
+ "8679.10",
+ "0.00091088"
+ ],
+ [
+ "8680.00",
+ "0.00371520"
+ ],
+ [
+ "8680.13",
+ "0.02380614"
+ ],
+ [
+ "8680.26",
+ "0.24517876"
+ ],
+ [
+ "8681.00",
+ "0.01000000"
+ ],
+ [
+ "8682.04",
+ "0.00073000"
+ ],
+ [
+ "8682.91",
+ "0.00529410"
+ ],
+ [
+ "8682.97",
+ "0.00333628"
+ ],
+ [
+ "8683.02",
+ "0.01500000"
+ ],
+ [
+ "8685.00",
+ "0.04200000"
+ ],
+ [
+ "8685.04",
+ "0.02000000"
+ ],
+ [
+ "8685.99",
+ "0.39321996"
+ ],
+ [
+ "8686.00",
+ "0.00091874"
+ ],
+ [
+ "8686.20",
+ "0.10000000"
+ ],
+ [
+ "8686.86",
+ "0.00500000"
+ ],
+ [
+ "8687.00",
+ "0.02000000"
+ ],
+ [
+ "8687.02",
+ "0.10000000"
+ ],
+ [
+ "8687.46",
+ "0.00317865"
+ ],
+ [
+ "8687.83",
+ "0.14500000"
+ ],
+ [
+ "8687.92",
+ "0.00400000"
+ ],
+ [
+ "8688.00",
+ "0.04391645"
+ ],
+ [
+ "8692.43",
+ "0.00529410"
+ ],
+ [
+ "8692.91",
+ "0.00091089"
+ ],
+ [
+ "8693.00",
+ "0.12000000"
+ ],
+ [
+ "8694.60",
+ "0.04200000"
+ ],
+ [
+ "8697.00",
+ "12.78120256"
+ ],
+ [
+ "8697.97",
+ "0.20000000"
+ ],
+ [
+ "8699.00",
+ "0.50000000"
+ ],
+ [
+ "8700.00",
+ "3.19977872"
+ ],
+ [
+ "8700.96",
+ "0.03821575"
+ ],
+ [
+ "8701.00",
+ "0.07000000"
+ ],
+ [
+ "8701.37",
+ "0.00529410"
+ ],
+ [
+ "8704.00",
+ "0.02800000"
+ ],
+ [
+ "8706.00",
+ "0.09000000"
+ ],
+ [
+ "8706.73",
+ "0.00091090"
+ ],
+ [
+ "8707.00",
+ "0.02000000"
+ ],
+ [
+ "8710.00",
+ "0.06826262"
+ ],
+ [
+ "8710.18",
+ "0.00445557"
+ ],
+ [
+ "8713.83",
+ "0.07000000"
+ ],
+ [
+ "8714.00",
+ "0.50000000"
+ ],
+ [
+ "8714.13",
+ "0.00534651"
+ ],
+ [
+ "8716.44",
+ "0.00186468"
+ ],
+ [
+ "8717.19",
+ "0.05003031"
+ ],
+ [
+ "8718.74",
+ "12.50000000"
+ ],
+ [
+ "8720.55",
+ "0.00091091"
+ ],
+ [
+ "8720.60",
+ "0.05000000"
+ ],
+ [
+ "8721.00",
+ "1.12530000"
+ ],
+ [
+ "8721.40",
+ "0.00280000"
+ ],
+ [
+ "8722.81",
+ "0.00534651"
+ ],
+ [
+ "8723.00",
+ "0.05000000"
+ ],
+ [
+ "8724.00",
+ "0.19800000"
+ ],
+ [
+ "8726.67",
+ "0.00432354"
+ ],
+ [
+ "8726.87",
+ "0.00572915"
+ ],
+ [
+ "8727.00",
+ "0.02000000"
+ ],
+ [
+ "8729.00",
+ "0.07000000"
+ ],
+ [
+ "8730.00",
+ "0.52015674"
+ ],
+ [
+ "8730.65",
+ "0.00534651"
+ ],
+ [
+ "8731.00",
+ "0.22383586"
+ ],
+ [
+ "8733.00",
+ "0.05000000"
+ ],
+ [
+ "8734.37",
+ "0.00091092"
+ ],
+ [
+ "8735.00",
+ "0.07000000"
+ ],
+ [
+ "8736.50",
+ "0.00091343"
+ ],
+ [
+ "8737.00",
+ "0.32000000"
+ ],
+ [
+ "8737.29",
+ "1.01182305"
+ ],
+ [
+ "8737.91",
+ "0.00448136"
+ ],
+ [
+ "8738.00",
+ "0.14000000"
+ ],
+ [
+ "8739.00",
+ "0.07401390"
+ ],
+ [
+ "8740.00",
+ "1.93051074"
+ ],
+ [
+ "8740.54",
+ "12.50000000"
+ ],
+ [
+ "8741.71",
+ "0.00534651"
+ ],
+ [
+ "8743.00",
+ "0.10000000"
+ ],
+ [
+ "8744.00",
+ "0.87941000"
+ ],
+ [
+ "8744.44",
+ "0.54147669"
+ ],
+ [
+ "8747.00",
+ "0.56147668"
+ ],
+ [
+ "8748.18",
+ "0.00091093"
+ ],
+ [
+ "8749.00",
+ "0.50000000"
+ ],
+ [
+ "8749.62",
+ "0.00534651"
+ ],
+ [
+ "8750.00",
+ "3.87593343"
+ ],
+ [
+ "8750.60",
+ "0.03000000"
+ ],
+ [
+ "8752.00",
+ "0.00091001"
+ ],
+ [
+ "8757.30",
+ "0.00226051"
+ ],
+ [
+ "8758.00",
+ "0.27030864"
+ ],
+ [
+ "8759.30",
+ "0.05325263"
+ ],
+ [
+ "8759.99",
+ "0.06045374"
+ ],
+ [
+ "8760.00",
+ "0.10000000"
+ ],
+ [
+ "8761.39",
+ "0.00481204"
+ ],
+ [
+ "8762.00",
+ "0.00090094"
+ ],
+ [
+ "8762.39",
+ "12.50000000"
+ ],
+ [
+ "8763.66",
+ "0.00539998"
+ ],
+ [
+ "8765.00",
+ "0.00566348"
+ ],
+ [
+ "8765.61",
+ "0.00090002"
+ ],
+ [
+ "8767.00",
+ "0.02000000"
+ ],
+ [
+ "8770.00",
+ "1.39219770"
+ ],
+ [
+ "8771.00",
+ "0.04500000"
+ ],
+ [
+ "8772.00",
+ "0.10000000"
+ ],
+ [
+ "8772.01",
+ "0.00062342"
+ ],
+ [
+ "8773.25",
+ "0.00539998"
+ ],
+ [
+ "8774.00",
+ "0.72831559"
+ ],
+ [
+ "8778.92",
+ "1.00000000"
+ ],
+ [
+ "8778.97",
+ "0.11154699"
+ ],
+ [
+ "8779.22",
+ "0.01203044"
+ ],
+ [
+ "8779.73",
+ "0.54111397"
+ ],
+ [
+ "8780.00",
+ "0.74000000"
+ ],
+ [
+ "8782.00",
+ "0.00539998"
+ ],
+ [
+ "8784.29",
+ "12.50000000"
+ ],
+ [
+ "8785.96",
+ "0.00299195"
+ ],
+ [
+ "8787.00",
+ "0.02090818"
+ ],
+ [
+ "8787.01",
+ "0.00231626"
+ ],
+ [
+ "8787.70",
+ "0.05000000"
+ ],
+ [
+ "8789.06",
+ "0.02844000"
+ ],
+ [
+ "8790.00",
+ "0.17696146"
+ ],
+ [
+ "8792.83",
+ "0.00090004"
+ ],
+ [
+ "8796.00",
+ "0.05000000"
+ ],
+ [
+ "8796.09",
+ "0.00539998"
+ ],
+ [
+ "8797.00",
+ "0.10000000"
+ ],
+ [
+ "8798.00",
+ "0.52760000"
+ ],
+ [
+ "8799.00",
+ "0.50000000"
+ ],
+ [
+ "8799.17",
+ "0.01591059"
+ ],
+ [
+ "8800.00",
+ "8.84746918"
+ ],
+ [
+ "8800.17",
+ "0.10000001"
+ ],
+ [
+ "8800.50",
+ "0.50000000"
+ ],
+ [
+ "8802.33",
+ "0.00291636"
+ ],
+ [
+ "8804.89",
+ "0.00539998"
+ ],
+ [
+ "8805.00",
+ "0.01000000"
+ ],
+ [
+ "8806.26",
+ "12.50000000"
+ ],
+ [
+ "8806.44",
+ "0.00090005"
+ ],
+ [
+ "8807.00",
+ "0.02000000"
+ ],
+ [
+ "8807.59",
+ "0.01768169"
+ ],
+ [
+ "8810.00",
+ "0.00083000"
+ ],
+ [
+ "8813.69",
+ "0.00539998"
+ ],
+ [
+ "8820.00",
+ "0.00116667"
+ ],
+ [
+ "8820.05",
+ "0.00090006"
+ ],
+ [
+ "8822.49",
+ "0.00539998"
+ ],
+ [
+ "8823.00",
+ "0.09000000"
+ ],
+ [
+ "8824.00",
+ "0.35182702"
+ ],
+ [
+ "8825.00",
+ "0.05000000"
+ ],
+ [
+ "8827.00",
+ "0.02000000"
+ ],
+ [
+ "8827.76",
+ "0.02726835"
+ ],
+ [
+ "8828.27",
+ "12.50000000"
+ ],
+ [
+ "8828.98",
+ "0.00373087"
+ ],
+ [
+ "8831.00",
+ "0.15475517"
+ ],
+ [
+ "8831.29",
+ "0.00539998"
+ ],
+ [
+ "8833.00",
+ "0.19356990"
+ ],
+ [
+ "8833.66",
+ "0.00090007"
+ ],
+ [
+ "8836.00",
+ "0.05668478"
+ ],
+ [
+ "8836.78",
+ "0.01357898"
+ ],
+ [
+ "8837.50",
+ "0.00090299"
+ ],
+ [
+ "8837.84",
+ "0.00300000"
+ ],
+ [
+ "8839.00",
+ "1.00000000"
+ ],
+ [
+ "8839.47",
+ "0.00565617"
+ ],
+ [
+ "8840.00",
+ "0.60928566"
+ ],
+ [
+ "8840.09",
+ "0.00523299"
+ ],
+ [
+ "8842.32",
+ "0.00556699"
+ ],
+ [
+ "8843.93",
+ "0.01500000"
+ ],
+ [
+ "8844.00",
+ "0.01000000"
+ ],
+ [
+ "8845.45",
+ "0.01437656"
+ ],
+ [
+ "8846.13",
+ "0.50000000"
+ ],
+ [
+ "8847.00",
+ "0.20000000"
+ ],
+ [
+ "8847.27",
+ "0.00090008"
+ ],
+ [
+ "8848.25",
+ "0.20000000"
+ ],
+ [
+ "8848.48",
+ "0.10000000"
+ ],
+ [
+ "8849.00",
+ "1.03500000"
+ ],
+ [
+ "8850.00",
+ "15.46499706"
+ ],
+ [
+ "8850.34",
+ "12.50000000"
+ ],
+ [
+ "8851.78",
+ "0.00061455"
+ ],
+ [
+ "8853.16",
+ "0.00263046"
+ ],
+ [
+ "8855.00",
+ "0.01000000"
+ ],
+ [
+ "8856.02",
+ "0.01500000"
+ ],
+ [
+ "8856.66",
+ "0.00232080"
+ ],
+ [
+ "8857.00",
+ "0.18000000"
+ ],
+ [
+ "8858.04",
+ "0.02000000"
+ ],
+ [
+ "8860.00",
+ "0.25000000"
+ ],
+ [
+ "8860.58",
+ "0.10000000"
+ ],
+ [
+ "8860.83",
+ "0.06500000"
+ ],
+ [
+ "8860.88",
+ "0.00089009"
+ ],
+ [
+ "8863.00",
+ "0.18000000"
+ ],
+ [
+ "8865.00",
+ "0.29079269"
+ ],
+ [
+ "8866.00",
+ "0.05000000"
+ ],
+ [
+ "8866.83",
+ "0.07000000"
+ ],
+ [
+ "8867.00",
+ "0.02000000"
+ ],
+ [
+ "8867.51",
+ "1.00000000"
+ ],
+ [
+ "8867.60",
+ "0.04200000"
+ ],
+ [
+ "8868.75",
+ "0.00126000"
+ ],
+ [
+ "8868.89",
+ "0.00234032"
+ ],
+ [
+ "8869.00",
+ "1.50940541"
+ ],
+ [
+ "8869.82",
+ "0.02288110"
+ ],
+ [
+ "8870.09",
+ "0.50000000"
+ ],
+ [
+ "8871.00",
+ "0.40000000"
+ ],
+ [
+ "8872.33",
+ "0.03000000"
+ ],
+ [
+ "8872.47",
+ "12.50000000"
+ ],
+ [
+ "8872.79",
+ "1.00000000"
+ ],
+ [
+ "8873.60",
+ "0.05000000"
+ ],
+ [
+ "8874.49",
+ "0.00089010"
+ ],
+ [
+ "8875.82",
+ "0.00299104"
+ ],
+ [
+ "8876.00",
+ "1.00000000"
+ ],
+ [
+ "8877.00",
+ "0.02500000"
+ ],
+ [
+ "8878.00",
+ "0.27547275"
+ ],
+ [
+ "8879.00",
+ "0.00430000"
+ ],
+ [
+ "8880.00",
+ "0.78055032"
+ ],
+ [
+ "8881.04",
+ "0.00524089"
+ ],
+ [
+ "8885.61",
+ "0.06378424"
+ ],
+ [
+ "8887.00",
+ "0.02000000"
+ ],
+ [
+ "8887.36",
+ "3.68562830"
+ ],
+ [
+ "8888.00",
+ "2.19038906"
+ ],
+ [
+ "8888.09",
+ "0.00089011"
+ ],
+ [
+ "8888.83",
+ "0.41600000"
+ ],
+ [
+ "8889.00",
+ "0.51000000"
+ ],
+ [
+ "8890.00",
+ "9.65256155"
+ ],
+ [
+ "8892.00",
+ "0.20000000"
+ ],
+ [
+ "8892.22",
+ "0.30000000"
+ ],
+ [
+ "8892.76",
+ "0.47474402"
+ ],
+ [
+ "8894.65",
+ "12.50000000"
+ ],
+ [
+ "8895.00",
+ "1.00000000"
+ ],
+ [
+ "8896.15",
+ "0.00228785"
+ ],
+ [
+ "8897.78",
+ "0.00163000"
+ ],
+ [
+ "8898.47",
+ "6.00000000"
+ ],
+ [
+ "8899.00",
+ "0.76349446"
+ ],
+ [
+ "8899.38",
+ "0.60007347"
+ ],
+ [
+ "8899.98",
+ "0.03382107"
+ ],
+ [
+ "8900.00",
+ "6.08119571"
+ ],
+ [
+ "8901.70",
+ "0.00089012"
+ ],
+ [
+ "8902.47",
+ "0.00119700"
+ ],
+ [
+ "8902.75",
+ "0.00324195"
+ ],
+ [
+ "8906.92",
+ "0.20000000"
+ ],
+ [
+ "8907.00",
+ "0.02000000"
+ ],
+ [
+ "8908.34",
+ "0.00344475"
+ ],
+ [
+ "8910.00",
+ "0.00082000"
+ ],
+ [
+ "8910.20",
+ "6.42595103"
+ ],
+ [
+ "8911.98",
+ "0.12373142"
+ ],
+ [
+ "8913.24",
+ "0.00431576"
+ ],
+ [
+ "8913.65",
+ "0.01346250"
+ ],
+ [
+ "8915.31",
+ "0.00089013"
+ ],
+ [
+ "8916.89",
+ "12.50000000"
+ ],
+ [
+ "8917.81",
+ "0.01685730"
+ ],
+ [
+ "8917.93",
+ "0.00235120"
+ ],
+ [
+ "8920.00",
+ "0.33297354"
+ ],
+ [
+ "8921.00",
+ "0.47294999"
+ ],
+ [
+ "8921.38",
+ "0.00060652"
+ ],
+ [
+ "8923.21",
+ "0.01066439"
+ ],
+ [
+ "8925.00",
+ "0.00450000"
+ ],
+ [
+ "8926.00",
+ "0.03000000"
+ ],
+ [
+ "8926.74",
+ "0.01290426"
+ ],
+ [
+ "8927.00",
+ "0.12000000"
+ ],
+ [
+ "8927.60",
+ "0.03000000"
+ ],
+ [
+ "8928.92",
+ "0.00089014"
+ ],
+ [
+ "8930.00",
+ "0.50567534"
+ ],
+ [
+ "8932.00",
+ "0.03000000"
+ ],
+ [
+ "8937.00",
+ "0.40000000"
+ ],
+ [
+ "8938.50",
+ "0.00089279"
+ ],
+ [
+ "8939.18",
+ "12.50000000"
+ ],
+ [
+ "8942.53",
+ "0.00089015"
+ ],
+ [
+ "8942.93",
+ "0.00309286"
+ ],
+ [
+ "8943.00",
+ "0.05000000"
+ ],
+ [
+ "8944.00",
+ "0.12000000"
+ ],
+ [
+ "8944.90",
+ "1.37600000"
+ ],
+ [
+ "8945.99",
+ "0.02190030"
+ ],
+ [
+ "8946.91",
+ "0.25000000"
+ ],
+ [
+ "8947.00",
+ "0.02000000"
+ ],
+ [
+ "8947.27",
+ "0.00055939"
+ ],
+ [
+ "8947.70",
+ "0.12781120"
+ ],
+ [
+ "8948.00",
+ "0.01000000"
+ ],
+ [
+ "8948.22",
+ "0.00240360"
+ ],
+ [
+ "8948.97",
+ "0.20000000"
+ ],
+ [
+ "8949.00",
+ "0.13500000"
+ ],
+ [
+ "8950.00",
+ "6.85449841"
+ ],
+ [
+ "8950.30",
+ "0.12689516"
+ ],
+ [
+ "8955.00",
+ "0.02000000"
+ ],
+ [
+ "8956.14",
+ "0.00088016"
+ ],
+ [
+ "8959.00",
+ "10.00000000"
+ ],
+ [
+ "8961.53",
+ "12.50000000"
+ ],
+ [
+ "8965.00",
+ "0.03680981"
+ ],
+ [
+ "8966.00",
+ "0.05000000"
+ ],
+ [
+ "8966.62",
+ "0.50000000"
+ ],
+ [
+ "8967.00",
+ "0.02000000"
+ ],
+ [
+ "8969.75",
+ "0.00088017"
+ ],
+ [
+ "8970.00",
+ "0.09000000"
+ ],
+ [
+ "8974.00",
+ "0.02629083"
+ ],
+ [
+ "8975.00",
+ "0.58900000"
+ ],
+ [
+ "8976.00",
+ "0.00228994"
+ ],
+ [
+ "8977.77",
+ "10.00000000"
+ ],
+ [
+ "8978.00",
+ "0.09000000"
+ ],
+ [
+ "8978.40",
+ "0.06700000"
+ ],
+ [
+ "8979.61",
+ "0.00400000"
+ ],
+ [
+ "8980.00",
+ "0.20950000"
+ ],
+ [
+ "8980.78",
+ "0.00059931"
+ ],
+ [
+ "8981.00",
+ "0.03600000"
+ ],
+ [
+ "8981.92",
+ "0.00487509"
+ ],
+ [
+ "8983.36",
+ "0.00088018"
+ ],
+ [
+ "8983.93",
+ "12.50000000"
+ ],
+ [
+ "8984.00",
+ "0.10000000"
+ ],
+ [
+ "8984.36",
+ "36.90000000"
+ ],
+ [
+ "8986.39",
+ "0.40000000"
+ ],
+ [
+ "8987.00",
+ "0.02000000"
+ ],
+ [
+ "8987.23",
+ "0.00122675"
+ ],
+ [
+ "8989.00",
+ "0.02203382"
+ ],
+ [
+ "8989.89",
+ "0.54602096"
+ ],
+ [
+ "8990.00",
+ "1.04285774"
+ ],
+ [
+ "8990.34",
+ "0.01344170"
+ ],
+ [
+ "8991.00",
+ "2.00000000"
+ ],
+ [
+ "8994.00",
+ "0.09000000"
+ ],
+ [
+ "8995.00",
+ "3.61521220"
+ ],
+ [
+ "8996.00",
+ "0.10000000"
+ ],
+ [
+ "8996.97",
+ "0.00088019"
+ ],
+ [
+ "8998.00",
+ "20.05815408"
+ ],
+ [
+ "8999.00",
+ "4.56877573"
+ ],
+ [
+ "8999.10",
+ "0.00649807"
+ ],
+ [
+ "8999.89",
+ "0.00227352"
+ ],
+ [
+ "9000.00",
+ "28.53099463"
+ ],
+ [
+ "9000.01",
+ "0.01379311"
+ ],
+ [
+ "9000.19",
+ "0.04409916"
+ ],
+ [
+ "9000.44",
+ "0.00200000"
+ ],
+ [
+ "9001.00",
+ "1.34269654"
+ ],
+ [
+ "9005.00",
+ "0.03000000"
+ ],
+ [
+ "9006.00",
+ "0.09000000"
+ ],
+ [
+ "9006.39",
+ "12.50000000"
+ ],
+ [
+ "9007.00",
+ "0.02000000"
+ ],
+ [
+ "9010.00",
+ "0.00081000"
+ ],
+ [
+ "9010.58",
+ "1.00088020"
+ ],
+ [
+ "9012.00",
+ "0.09000000"
+ ],
+ [
+ "9014.00",
+ "0.09000000"
+ ],
+ [
+ "9015.00",
+ "0.18000000"
+ ],
+ [
+ "9015.40",
+ "0.14179002"
+ ],
+ [
+ "9017.00",
+ "2.32031718"
+ ],
+ [
+ "9018.00",
+ "0.02108615"
+ ],
+ [
+ "9019.63",
+ "0.00282601"
+ ],
+ [
+ "9019.83",
+ "0.01500000"
+ ],
+ [
+ "9020.00",
+ "0.03000000"
+ ],
+ [
+ "9022.00",
+ "0.02000000"
+ ],
+ [
+ "9024.19",
+ "0.00088021"
+ ],
+ [
+ "9024.77",
+ "0.01050692"
+ ],
+ [
+ "9026.60",
+ "0.03000000"
+ ],
+ [
+ "9027.00",
+ "0.02000000"
+ ],
+ [
+ "9028.00",
+ "0.02500000"
+ ],
+ [
+ "9028.90",
+ "12.50000000"
+ ],
+ [
+ "9029.02",
+ "0.01500000"
+ ],
+ [
+ "9030.00",
+ "0.14059286"
+ ],
+ [
+ "9030.89",
+ "0.00055421"
+ ],
+ [
+ "9031.04",
+ "0.05000000"
+ ],
+ [
+ "9033.02",
+ "0.10000000"
+ ],
+ [
+ "9033.83",
+ "0.05000000"
+ ],
+ [
+ "9035.00",
+ "0.17000000"
+ ],
+ [
+ "9037.80",
+ "0.00088022"
+ ],
+ [
+ "9038.34",
+ "0.00298173"
+ ],
+ [
+ "9039.00",
+ "1.05000000"
+ ],
+ [
+ "9039.50",
+ "0.00088281"
+ ],
+ [
+ "9039.99",
+ "0.10505932"
+ ],
+ [
+ "9040.00",
+ "0.50000000"
+ ],
+ [
+ "9040.60",
+ "0.02000000"
+ ],
+ [
+ "9041.76",
+ "0.01769567"
+ ],
+ [
+ "9042.15",
+ "0.00504674"
+ ],
+ [
+ "9047.00",
+ "0.02000000"
+ ],
+ [
+ "9050.00",
+ "3.32504155"
+ ],
+ [
+ "9050.90",
+ "0.10000000"
+ ],
+ [
+ "9051.41",
+ "0.00088023"
+ ],
+ [
+ "9051.48",
+ "12.50000000"
+ ],
+ [
+ "9052.11",
+ "0.00209402"
+ ],
+ [
+ "9053.12",
+ "0.49950000"
+ ],
+ [
+ "9055.00",
+ "0.05000000"
+ ],
+ [
+ "9057.66",
+ "0.56912754"
+ ],
+ [
+ "9060.00",
+ "0.22975007"
+ ],
+ [
+ "9064.59",
+ "0.00223085"
+ ],
+ [
+ "9065.00",
+ "0.20000000"
+ ],
+ [
+ "9065.02",
+ "0.00087024"
+ ],
+ [
+ "9066.00",
+ "0.05000025"
+ ],
+ [
+ "9067.00",
+ "0.02000000"
+ ],
+ [
+ "9069.77",
+ "0.03724926"
+ ],
+ [
+ "9070.00",
+ "0.01000000"
+ ],
+ [
+ "9074.00",
+ "0.15000000"
+ ],
+ [
+ "9074.11",
+ "12.50000000"
+ ],
+ [
+ "9078.63",
+ "0.00087025"
+ ],
+ [
+ "9080.00",
+ "0.01594819"
+ ],
+ [
+ "9081.00",
+ "0.05000000"
+ ],
+ [
+ "9085.58",
+ "0.02000000"
+ ],
+ [
+ "9086.41",
+ "0.50000000"
+ ],
+ [
+ "9087.00",
+ "0.02000000"
+ ],
+ [
+ "9088.00",
+ "0.25000000"
+ ],
+ [
+ "9088.88",
+ "0.04370302"
+ ],
+ [
+ "9089.00",
+ "1.00000000"
+ ],
+ [
+ "9089.09",
+ "1.00000000"
+ ],
+ [
+ "9090.00",
+ "0.10686912"
+ ],
+ [
+ "9092.24",
+ "0.00087026"
+ ],
+ [
+ "9094.11",
+ "0.00190730"
+ ],
+ [
+ "9095.00",
+ "0.25116600"
+ ],
+ [
+ "9096.00",
+ "0.11000000"
+ ],
+ [
+ "9096.79",
+ "4.32173278"
+ ],
+ [
+ "9097.77",
+ "0.10000000"
+ ],
+ [
+ "9098.88",
+ "17.72962657"
+ ],
+ [
+ "9098.98",
+ "0.01767404"
+ ],
+ [
+ "9099.57",
+ "0.00086817"
+ ],
+ [
+ "9100.00",
+ "21.09159134"
+ ],
+ [
+ "9100.29",
+ "0.00500000"
+ ],
+ [
+ "9101.72",
+ "0.00899888"
+ ],
+ [
+ "9103.00",
+ "0.01000000"
+ ],
+ [
+ "9104.28",
+ "0.00082343"
+ ],
+ [
+ "9104.60",
+ "0.21000000"
+ ],
+ [
+ "9105.85",
+ "0.00087027"
+ ],
+ [
+ "9105.99",
+ "0.44037307"
+ ],
+ [
+ "9106.50",
+ "0.00083380"
+ ],
+ [
+ "9107.00",
+ "0.02000000"
+ ],
+ [
+ "9108.23",
+ "0.01630000"
+ ],
+ [
+ "9109.78",
+ "1.00000000"
+ ],
+ [
+ "9109.93",
+ "0.00293816"
+ ],
+ [
+ "9110.00",
+ "0.00100000"
+ ],
+ [
+ "9110.57",
+ "0.00086712"
+ ],
+ [
+ "9110.98",
+ "0.00085736"
+ ],
+ [
+ "9111.00",
+ "0.05644500"
+ ],
+ [
+ "9111.11",
+ "1.00000000"
+ ],
+ [
+ "9112.01",
+ "0.00333286"
+ ],
+ [
+ "9113.00",
+ "0.11000000"
+ ],
+ [
+ "9113.55",
+ "0.10000000"
+ ],
+ [
+ "9116.78",
+ "0.00086113"
+ ],
+ [
+ "9119.46",
+ "0.00087028"
+ ],
+ [
+ "9119.53",
+ "12.50000000"
+ ],
+ [
+ "9120.00",
+ "0.27300000"
+ ],
+ [
+ "9121.41",
+ "0.00085012"
+ ],
+ [
+ "9122.88",
+ "0.50000000"
+ ],
+ [
+ "9123.45",
+ "0.01300000"
+ ],
+ [
+ "9124.15",
+ "0.00082384"
+ ],
+ [
+ "9126.00",
+ "0.05594885"
+ ],
+ [
+ "9127.00",
+ "0.02000000"
+ ],
+ [
+ "9127.29",
+ "0.00080110"
+ ],
+ [
+ "9128.55",
+ "0.23093226"
+ ],
+ [
+ "9130.00",
+ "0.39788966"
+ ],
+ [
+ "9131.28",
+ "0.00085188"
+ ],
+ [
+ "9132.57",
+ "0.00086504"
+ ],
+ [
+ "9132.85",
+ "0.00084126"
+ ],
+ [
+ "9133.07",
+ "0.00087029"
+ ],
+ [
+ "9134.00",
+ "0.03000000"
+ ],
+ [
+ "9135.12",
+ "0.00150000"
+ ],
+ [
+ "9136.00",
+ "0.22000000"
+ ],
+ [
+ "9136.94",
+ "0.00298509"
+ ],
+ [
+ "9137.56",
+ "0.00896359"
+ ],
+ [
+ "9138.00",
+ "0.04600000"
+ ],
+ [
+ "9138.97",
+ "0.00073640"
+ ],
+ [
+ "9140.50",
+ "0.00087305"
+ ],
+ [
+ "9142.33",
+ "12.50000000"
+ ],
+ [
+ "9143.57",
+ "0.00086400"
+ ],
+ [
+ "9144.00",
+ "0.25000000"
+ ],
+ [
+ "9145.00",
+ "0.10430000"
+ ],
+ [
+ "9146.08",
+ "0.00082847"
+ ],
+ [
+ "9147.00",
+ "0.02000000"
+ ],
+ [
+ "9149.69",
+ "0.00086178"
+ ],
+ [
+ "9150.00",
+ "0.19097702"
+ ],
+ [
+ "9154.57",
+ "0.00086296"
+ ],
+ [
+ "9156.32",
+ "0.00054662"
+ ],
+ [
+ "9156.39",
+ "0.00083882"
+ ],
+ [
+ "9157.00",
+ "0.15000000"
+ ],
+ [
+ "9158.92",
+ "0.00083384"
+ ],
+ [
+ "9163.99",
+ "0.00304265"
+ ],
+ [
+ "9164.19",
+ "0.00294059"
+ ],
+ [
+ "9165.00",
+ "0.07800000"
+ ],
+ [
+ "9165.19",
+ "12.50000000"
+ ],
+ [
+ "9165.57",
+ "0.00086192"
+ ],
+ [
+ "9166.58",
+ "0.82000000"
+ ],
+ [
+ "9167.00",
+ "0.02000000"
+ ],
+ [
+ "9168.77",
+ "0.00081689"
+ ],
+ [
+ "9169.02",
+ "0.03371459"
+ ],
+ [
+ "9170.00",
+ "0.01598497"
+ ],
+ [
+ "9172.83",
+ "0.93300000"
+ ],
+ [
+ "9173.56",
+ "0.00294844"
+ ],
+ [
+ "9174.57",
+ "0.02132877"
+ ],
+ [
+ "9175.66",
+ "0.00080770"
+ ],
+ [
+ "9176.57",
+ "0.00086089"
+ ],
+ [
+ "9177.28",
+ "0.00080661"
+ ],
+ [
+ "9178.10",
+ "3.25302614"
+ ],
+ [
+ "9179.40",
+ "0.18377440"
+ ],
+ [
+ "9179.60",
+ "1.15200000"
+ ],
+ [
+ "9180.00",
+ "0.39442886"
+ ],
+ [
+ "9182.07",
+ "0.00086089"
+ ],
+ [
+ "9182.69",
+ "0.11000000"
+ ],
+ [
+ "9185.33",
+ "0.00083507"
+ ],
+ [
+ "9186.40",
+ "0.75000000"
+ ],
+ [
+ "9186.96",
+ "0.00080615"
+ ],
+ [
+ "9187.00",
+ "0.02000000"
+ ],
+ [
+ "9188.10",
+ "12.50000000"
+ ],
+ [
+ "9189.00",
+ "0.11000000"
+ ],
+ [
+ "9189.13",
+ "0.01662019"
+ ],
+ [
+ "9189.72",
+ "0.00084738"
+ ],
+ [
+ "9189.85",
+ "0.00083028"
+ ],
+ [
+ "9189.93",
+ "0.11100000"
+ ],
+ [
+ "9190.00",
+ "0.22500000"
+ ],
+ [
+ "9190.12",
+ "0.00079236"
+ ],
+ [
+ "9190.25",
+ "0.00084877"
+ ],
+ [
+ "9191.00",
+ "0.00086825"
+ ],
+ [
+ "9192.00",
+ "0.13000000"
+ ],
+ [
+ "9193.07",
+ "0.00086089"
+ ],
+ [
+ "9193.59",
+ "0.00400000"
+ ],
+ [
+ "9194.31",
+ "0.00085459"
+ ],
+ [
+ "9194.88",
+ "2.39704035"
+ ],
+ [
+ "9197.00",
+ "0.10000000"
+ ],
+ [
+ "9197.70",
+ "0.00083180"
+ ],
+ [
+ "9198.00",
+ "0.03900000"
+ ],
+ [
+ "9199.00",
+ "0.40800000"
+ ],
+ [
+ "9199.88",
+ "13.29721993"
+ ],
+ [
+ "9200.00",
+ "12.12923423"
+ ],
+ [
+ "9200.59",
+ "0.00110800"
+ ],
+ [
+ "9202.02",
+ "0.30420000"
+ ],
+ [
+ "9203.13",
+ "0.00084542"
+ ],
+ [
+ "9204.04",
+ "0.51800000"
+ ],
+ [
+ "9204.07",
+ "0.00086089"
+ ],
+ [
+ "9206.02",
+ "0.17800000"
+ ],
+ [
+ "9206.83",
+ "0.24860000"
+ ],
+ [
+ "9207.00",
+ "0.02000000"
+ ],
+ [
+ "9208.04",
+ "0.00083723"
+ ],
+ [
+ "9208.82",
+ "0.07713813"
+ ],
+ [
+ "9209.10",
+ "0.00950000"
+ ],
+ [
+ "9210.00",
+ "0.26100000"
+ ],
+ [
+ "9210.38",
+ "0.00083196"
+ ],
+ [
+ "9211.07",
+ "12.50000000"
+ ],
+ [
+ "9212.00",
+ "0.37000000"
+ ],
+ [
+ "9213.60",
+ "0.44800000"
+ ],
+ [
+ "9214.00",
+ "0.71045500"
+ ],
+ [
+ "9214.15",
+ "0.00085879"
+ ],
+ [
+ "9215.00",
+ "0.01000000"
+ ],
+ [
+ "9215.07",
+ "0.00086089"
+ ],
+ [
+ "9217.85",
+ "0.00084446"
+ ],
+ [
+ "9220.00",
+ "0.04000000"
+ ],
+ [
+ "9220.57",
+ "0.00085678"
+ ],
+ [
+ "9222.74",
+ "1.78329713"
+ ],
+ [
+ "9223.48",
+ "0.00305402"
+ ],
+ [
+ "9224.39",
+ "0.00079835"
+ ],
+ [
+ "9225.20",
+ "0.00229496"
+ ],
+ [
+ "9227.00",
+ "0.02000000"
+ ],
+ [
+ "9228.00",
+ "0.13000000"
+ ],
+ [
+ "9230.00",
+ "0.01000000"
+ ],
+ [
+ "9230.64",
+ "0.00082608"
+ ],
+ [
+ "9231.18",
+ "0.00078402"
+ ],
+ [
+ "9231.57",
+ "0.00085576"
+ ],
+ [
+ "9233.00",
+ "0.14747800"
+ ],
+ [
+ "9235.00",
+ "0.04200000"
+ ],
+ [
+ "9236.51",
+ "0.00362637"
+ ],
+ [
+ "9237.50",
+ "0.00084696"
+ ],
+ [
+ "9238.85",
+ "0.00079411"
+ ],
+ [
+ "9239.00",
+ "1.00000000"
+ ],
+ [
+ "9239.12",
+ "0.00081412"
+ ],
+ [
+ "9239.65",
+ "0.00085247"
+ ],
+ [
+ "9240.00",
+ "0.00142666"
+ ],
+ [
+ "9240.21",
+ "0.00081000"
+ ],
+ [
+ "9241.50",
+ "0.00086351"
+ ],
+ [
+ "9242.22",
+ "0.01580000"
+ ],
+ [
+ "9242.57",
+ "0.00085576"
+ ],
+ [
+ "9242.58",
+ "0.14760000"
+ ],
+ [
+ "9244.00",
+ "0.23000000"
+ ],
+ [
+ "9244.89",
+ "0.00077913"
+ ],
+ [
+ "9245.12",
+ "0.00150000"
+ ],
+ [
+ "9247.00",
+ "0.13000000"
+ ],
+ [
+ "9248.22",
+ "0.00079170"
+ ],
+ [
+ "9250.00",
+ "2.86398554"
+ ],
+ [
+ "9251.06",
+ "0.00158063"
+ ],
+ [
+ "9251.35",
+ "0.00084652"
+ ],
+ [
+ "9252.32",
+ "0.00441291"
+ ],
+ [
+ "9253.57",
+ "0.00085576"
+ ],
+ [
+ "9254.61",
+ "0.00078749"
+ ],
+ [
+ "9255.00",
+ "0.11000000"
+ ],
+ [
+ "9256.56",
+ "0.00560000"
+ ],
+ [
+ "9258.00",
+ "0.04400000"
+ ],
+ [
+ "9259.74",
+ "0.00084561"
+ ],
+ [
+ "9262.00",
+ "1.88406126"
+ ],
+ [
+ "9262.82",
+ "0.00081349"
+ ],
+ [
+ "9263.80",
+ "0.00085117"
+ ],
+ [
+ "9264.13",
+ "0.00081989"
+ ],
+ [
+ "9264.16",
+ "0.00080642"
+ ],
+ [
+ "9264.74",
+ "0.00085919"
+ ],
+ [
+ "9265.17",
+ "0.00085576"
+ ],
+ [
+ "9265.20",
+ "0.00083938"
+ ],
+ [
+ "9266.85",
+ "0.00084750"
+ ],
+ [
+ "9267.00",
+ "0.02000000"
+ ],
+ [
+ "9268.78",
+ "0.00303475"
+ ],
+ [
+ "9270.00",
+ "0.04000000"
+ ],
+ [
+ "9272.00",
+ "0.07000000"
+ ],
+ [
+ "9275.00",
+ "0.12315965"
+ ],
+ [
+ "9276.43",
+ "0.00546636"
+ ],
+ [
+ "9276.77",
+ "0.00085576"
+ ],
+ [
+ "9277.00",
+ "1.00000000"
+ ],
+ [
+ "9278.00",
+ "0.29400000"
+ ],
+ [
+ "9278.92",
+ "0.00432709"
+ ],
+ [
+ "9281.60",
+ "0.22200000"
+ ],
+ [
+ "9282.04",
+ "0.00085128"
+ ],
+ [
+ "9283.00",
+ "0.11000000"
+ ],
+ [
+ "9287.00",
+ "0.02000000"
+ ],
+ [
+ "9287.14",
+ "0.00085196"
+ ],
+ [
+ "9287.25",
+ "0.00442855"
+ ],
+ [
+ "9288.00",
+ "0.44000000"
+ ],
+ [
+ "9288.37",
+ "0.00085576"
+ ],
+ [
+ "9288.57",
+ "0.00084722"
+ ],
+ [
+ "9289.00",
+ "0.12000000"
+ ],
+ [
+ "9289.24",
+ "0.00079526"
+ ],
+ [
+ "9289.71",
+ "0.00083631"
+ ],
+ [
+ "9290.00",
+ "0.10000000"
+ ],
+ [
+ "9290.85",
+ "0.00078694"
+ ],
+ [
+ "9291.00",
+ "0.11000000"
+ ],
+ [
+ "9292.00",
+ "0.22085881"
+ ],
+ [
+ "9293.00",
+ "0.50000000"
+ ],
+ [
+ "9294.00",
+ "0.11000000"
+ ],
+ [
+ "9295.00",
+ "0.00182200"
+ ],
+ [
+ "9296.75",
+ "0.00335928"
+ ],
+ [
+ "9296.80",
+ "0.00077980"
+ ],
+ [
+ "9296.98",
+ "0.00085576"
+ ],
+ [
+ "9297.97",
+ "0.20000000"
+ ],
+ [
+ "9299.91",
+ "0.00084522"
+ ],
+ [
+ "9299.97",
+ "0.00085053"
+ ],
+ [
+ "9300.00",
+ "3.12890286"
+ ],
+ [
+ "9301.11",
+ "0.00086796"
+ ],
+ [
+ "9303.00",
+ "0.11150000"
+ ],
+ [
+ "9303.06",
+ "0.00084013"
+ ],
+ [
+ "9303.32",
+ "0.10000000"
+ ],
+ [
+ "9304.20",
+ "0.00079380"
+ ],
+ [
+ "9304.29",
+ "0.00081831"
+ ],
+ [
+ "9306.00",
+ "15.64320000"
+ ],
+ [
+ "9307.00",
+ "0.02000000"
+ ],
+ [
+ "9307.42",
+ "0.00311351"
+ ],
+ [
+ "9309.52",
+ "0.00086829"
+ ],
+ [
+ "9309.76",
+ "0.00083975"
+ ],
+ [
+ "9309.84",
+ "0.00084762"
+ ],
+ [
+ "9309.86",
+ "0.00081878"
+ ],
+ [
+ "9310.00",
+ "0.00100000"
+ ],
+ [
+ "9311.33",
+ "0.00079033"
+ ],
+ [
+ "9311.57",
+ "0.00084841"
+ ],
+ [
+ "9312.00",
+ "0.11000000"
+ ],
+ [
+ "9314.21",
+ "0.00085344"
+ ],
+ [
+ "9314.91",
+ "0.00079152"
+ ],
+ [
+ "9318.00",
+ "0.01000000"
+ ],
+ [
+ "9318.75",
+ "0.00107100"
+ ],
+ [
+ "9319.58",
+ "0.86000000"
+ ],
+ [
+ "9320.00",
+ "0.23650000"
+ ],
+ [
+ "9320.70",
+ "0.00083340"
+ ],
+ [
+ "9321.00",
+ "0.02811243"
+ ],
+ [
+ "9321.62",
+ "0.00078851"
+ ],
+ [
+ "9323.15",
+ "0.00354190"
+ ],
+ [
+ "9323.17",
+ "0.00084735"
+ ],
+ [
+ "9323.57",
+ "0.00053682"
+ ],
+ [
+ "9323.60",
+ "0.00338473"
+ ],
+ [
+ "9324.00",
+ "1.00000000"
+ ],
+ [
+ "9325.83",
+ "0.80700000"
+ ],
+ [
+ "9325.95",
+ "0.00083887"
+ ],
+ [
+ "9327.00",
+ "0.02000000"
+ ],
+ [
+ "9330.00",
+ "0.00100000"
+ ],
+ [
+ "9332.00",
+ "1.38016879"
+ ],
+ [
+ "9332.60",
+ "1.20600000"
+ ],
+ [
+ "9334.97",
+ "0.00084735"
+ ],
+ [
+ "9337.57",
+ "0.00078844"
+ ],
+ [
+ "9339.33",
+ "0.00300000"
+ ],
+ [
+ "9339.46",
+ "0.00080904"
+ ],
+ [
+ "9341.04",
+ "0.00081846"
+ ],
+ [
+ "9341.41",
+ "0.00078477"
+ ],
+ [
+ "9342.23",
+ "0.00080740"
+ ],
+ [
+ "9342.50",
+ "0.00085417"
+ ],
+ [
+ "9342.94",
+ "0.01000000"
+ ],
+ [
+ "9343.35",
+ "0.01000000"
+ ],
+ [
+ "9344.07",
+ "0.00085303"
+ ],
+ [
+ "9345.00",
+ "0.71000000"
+ ],
+ [
+ "9346.20",
+ "0.21600000"
+ ],
+ [
+ "9346.35",
+ "0.00078865"
+ ],
+ [
+ "9346.77",
+ "0.00084735"
+ ],
+ [
+ "9347.00",
+ "0.02000000"
+ ],
+ [
+ "9347.51",
+ "0.00077969"
+ ],
+ [
+ "9349.00",
+ "0.50000000"
+ ],
+ [
+ "9349.30",
+ "0.00077330"
+ ],
+ [
+ "9349.65",
+ "0.12500000"
+ ],
+ [
+ "9350.00",
+ "1.49172942"
+ ],
+ [
+ "9353.48",
+ "0.00082015"
+ ],
+ [
+ "9353.59",
+ "0.00077258"
+ ],
+ [
+ "9353.95",
+ "0.10000000"
+ ],
+ [
+ "9355.54",
+ "0.00084158"
+ ],
+ [
+ "9358.57",
+ "0.00084735"
+ ],
+ [
+ "9358.72",
+ "0.00081838"
+ ],
+ [
+ "9359.63",
+ "0.00083052"
+ ],
+ [
+ "9360.00",
+ "0.58000000"
+ ],
+ [
+ "9360.10",
+ "0.27614952"
+ ],
+ [
+ "9360.58",
+ "0.00077376"
+ ],
+ [
+ "9362.93",
+ "0.11700000"
+ ],
+ [
+ "9364.33",
+ "0.00084308"
+ ],
+ [
+ "9365.11",
+ "0.00150000"
+ ],
+ [
+ "9367.00",
+ "0.02000000"
+ ],
+ [
+ "9369.00",
+ "0.43478753"
+ ],
+ [
+ "9370.00",
+ "5.00000000"
+ ],
+ [
+ "9370.37",
+ "0.00084735"
+ ],
+ [
+ "9375.02",
+ "0.32040000"
+ ],
+ [
+ "9375.55",
+ "0.02990192"
+ ],
+ [
+ "9377.04",
+ "0.54600000"
+ ],
+ [
+ "9377.40",
+ "0.00084795"
+ ],
+ [
+ "9378.00",
+ "0.10000000"
+ ],
+ [
+ "9379.02",
+ "0.18600000"
+ ],
+ [
+ "9379.65",
+ "0.02091343"
+ ],
+ [
+ "9379.83",
+ "0.25820000"
+ ],
+ [
+ "9380.00",
+ "7.22695908"
+ ],
+ [
+ "9380.23",
+ "0.00083613"
+ ],
+ [
+ "9380.37",
+ "0.00082638"
+ ],
+ [
+ "9381.71",
+ "0.00080351"
+ ],
+ [
+ "9382.17",
+ "0.00084735"
+ ],
+ [
+ "9382.39",
+ "0.00084865"
+ ],
+ [
+ "9383.64",
+ "0.25000000"
+ ],
+ [
+ "9383.89",
+ "0.00082805"
+ ],
+ [
+ "9384.00",
+ "0.01000000"
+ ],
+ [
+ "9384.87",
+ "0.00078948"
+ ],
+ [
+ "9385.00",
+ "0.39000000"
+ ],
+ [
+ "9386.15",
+ "0.00084594"
+ ],
+ [
+ "9386.60",
+ "0.47200000"
+ ],
+ [
+ "9387.00",
+ "49.02000000"
+ ],
+ [
+ "9388.42",
+ "0.00083360"
+ ],
+ [
+ "9389.00",
+ "1.11010722"
+ ],
+ [
+ "9390.00",
+ "0.30000000"
+ ],
+ [
+ "9391.85",
+ "0.00077700"
+ ],
+ [
+ "9393.00",
+ "0.26000000"
+ ],
+ [
+ "9394.17",
+ "0.00084735"
+ ],
+ [
+ "9394.59",
+ "0.00080925"
+ ],
+ [
+ "9394.77",
+ "0.00078694"
+ ],
+ [
+ "9396.68",
+ "0.00077512"
+ ],
+ [
+ "9396.98",
+ "0.05320900"
+ ],
+ [
+ "9397.13",
+ "0.00084840"
+ ],
+ [
+ "9397.67",
+ "0.00085731"
+ ],
+ [
+ "9398.00",
+ "0.90000000"
+ ],
+ [
+ "9398.24",
+ "0.50000000"
+ ],
+ [
+ "9398.55",
+ "0.00085087"
+ ],
+ [
+ "9399.00",
+ "0.27901750"
+ ],
+ [
+ "9399.58",
+ "0.15480000"
+ ],
+ [
+ "9400.00",
+ "5.50574921"
+ ],
+ [
+ "9400.67",
+ "0.00077520"
+ ],
+ [
+ "9402.00",
+ "0.00077276"
+ ],
+ [
+ "9403.00",
+ "0.05500000"
+ ],
+ [
+ "9403.31",
+ "0.00083332"
+ ],
+ [
+ "9403.75",
+ "0.00078912"
+ ],
+ [
+ "9404.51",
+ "0.01530000"
+ ],
+ [
+ "9405.00",
+ "0.85000000"
+ ],
+ [
+ "9405.23",
+ "0.00082153"
+ ],
+ [
+ "9405.56",
+ "0.00078764"
+ ],
+ [
+ "9406.17",
+ "0.00084095"
+ ],
+ [
+ "9407.00",
+ "0.02000000"
+ ],
+ [
+ "9409.00",
+ "0.26000000"
+ ],
+ [
+ "9409.91",
+ "0.00082267"
+ ],
+ [
+ "9410.00",
+ "0.08014040"
+ ],
+ [
+ "9410.24",
+ "0.00084550"
+ ],
+ [
+ "9411.00",
+ "0.05400000"
+ ],
+ [
+ "9411.35",
+ "0.00077008"
+ ],
+ [
+ "9412.74",
+ "0.00078973"
+ ],
+ [
+ "9413.12",
+ "0.08147464"
+ ],
+ [
+ "9413.64",
+ "0.00077840"
+ ],
+ [
+ "9416.57",
+ "0.62000000"
+ ],
+ [
+ "9416.67",
+ "0.00586239"
+ ],
+ [
+ "9416.81",
+ "0.00078499"
+ ],
+ [
+ "9417.41",
+ "0.00078380"
+ ],
+ [
+ "9418.17",
+ "0.00084095"
+ ],
+ [
+ "9418.25",
+ "0.00077647"
+ ],
+ [
+ "9419.00",
+ "0.00430000"
+ ],
+ [
+ "9419.75",
+ "0.01621328"
+ ],
+ [
+ "9419.91",
+ "0.00078935"
+ ],
+ [
+ "9420.00",
+ "0.57160000"
+ ],
+ [
+ "9421.00",
+ "0.15000000"
+ ],
+ [
+ "9421.10",
+ "0.00077619"
+ ],
+ [
+ "9421.47",
+ "0.00077934"
+ ],
+ [
+ "9422.00",
+ "0.13000000"
+ ],
+ [
+ "9423.00",
+ "0.55916599"
+ ],
+ [
+ "9424.85",
+ "0.00077662"
+ ],
+ [
+ "9426.00",
+ "0.01000000"
+ ],
+ [
+ "9426.05",
+ "0.00085371"
+ ],
+ [
+ "9426.18",
+ "0.00079089"
+ ],
+ [
+ "9427.00",
+ "0.02000000"
+ ],
+ [
+ "9429.49",
+ "0.00078148"
+ ],
+ [
+ "9430.00",
+ "0.10000000"
+ ],
+ [
+ "9430.17",
+ "0.00083880"
+ ],
+ [
+ "9430.38",
+ "0.09304571"
+ ],
+ [
+ "9431.18",
+ "0.00078860"
+ ],
+ [
+ "9431.42",
+ "0.00077166"
+ ],
+ [
+ "9431.49",
+ "0.00085452"
+ ],
+ [
+ "9432.00",
+ "0.20600000"
+ ],
+ [
+ "9432.35",
+ "5.19514096"
+ ],
+ [
+ "9432.77",
+ "0.00086178"
+ ],
+ [
+ "9433.00",
+ "0.25000000"
+ ],
+ [
+ "9434.93",
+ "0.00078060"
+ ],
+ [
+ "9435.00",
+ "0.15000000"
+ ],
+ [
+ "9435.05",
+ "0.00085585"
+ ],
+ [
+ "9435.21",
+ "0.00441273"
+ ],
+ [
+ "9435.25",
+ "0.00078919"
+ ],
+ [
+ "9438.04",
+ "0.00083420"
+ ],
+ [
+ "9438.19",
+ "0.00080378"
+ ],
+ [
+ "9438.70",
+ "0.00078285"
+ ],
+ [
+ "9438.89",
+ "0.00462272"
+ ],
+ [
+ "9438.96",
+ "0.00077835"
+ ],
+ [
+ "9439.00",
+ "1.00000000"
+ ],
+ [
+ "9439.06",
+ "0.00077289"
+ ],
+ [
+ "9441.52",
+ "0.01840399"
+ ],
+ [
+ "9442.17",
+ "0.00084095"
+ ],
+ [
+ "9442.81",
+ "0.00077665"
+ ],
+ [
+ "9447.00",
+ "0.02000000"
+ ],
+ [
+ "9448.25",
+ "0.20000000"
+ ],
+ [
+ "9450.00",
+ "5.37968761"
+ ],
+ [
+ "9450.18",
+ "0.00078589"
+ ],
+ [
+ "9450.65",
+ "0.00077820"
+ ],
+ [
+ "9450.83",
+ "0.00082845"
+ ],
+ [
+ "9451.07",
+ "0.01500000"
+ ],
+ [
+ "9451.12",
+ "0.00077284"
+ ],
+ [
+ "9451.87",
+ "0.00081928"
+ ],
+ [
+ "9452.18",
+ "0.00077450"
+ ],
+ [
+ "9453.89",
+ "0.00303574"
+ ],
+ [
+ "9453.97",
+ "0.00078773"
+ ],
+ [
+ "9454.17",
+ "0.00084095"
+ ],
+ [
+ "9455.00",
+ "1.03500000"
+ ],
+ [
+ "9455.09",
+ "0.00077339"
+ ],
+ [
+ "9455.65",
+ "0.00079165"
+ ],
+ [
+ "9456.91",
+ "0.02323219"
+ ],
+ [
+ "9457.10",
+ "0.00077751"
+ ],
+ [
+ "9458.40",
+ "0.59442210"
+ ],
+ [
+ "9458.60",
+ "0.23400000"
+ ],
+ [
+ "9459.00",
+ "0.90400000"
+ ],
+ [
+ "9459.62",
+ "0.00077161"
+ ],
+ [
+ "9459.81",
+ "0.02158398"
+ ],
+ [
+ "9460.79",
+ "0.00077666"
+ ],
+ [
+ "9461.98",
+ "0.00053990"
+ ],
+ [
+ "9463.59",
+ "0.00077859"
+ ],
+ [
+ "9464.45",
+ "0.00080763"
+ ],
+ [
+ "9464.99",
+ "0.00076225"
+ ],
+ [
+ "9465.00",
+ "3.74040197"
+ ],
+ [
+ "9465.01",
+ "0.00090324"
+ ],
+ [
+ "9465.02",
+ "0.00075986"
+ ],
+ [
+ "9465.93",
+ "0.00078482"
+ ],
+ [
+ "9466.78",
+ "0.00077728"
+ ],
+ [
+ "9466.85",
+ "0.00082026"
+ ],
+ [
+ "9466.94",
+ "0.00078274"
+ ],
+ [
+ "9467.00",
+ "0.02000000"
+ ],
+ [
+ "9467.95",
+ "0.00079423"
+ ],
+ [
+ "9468.57",
+ "0.01000000"
+ ],
+ [
+ "9468.62",
+ "0.00081272"
+ ],
+ [
+ "9468.99",
+ "0.00078175"
+ ],
+ [
+ "9469.29",
+ "0.00078558"
+ ],
+ [
+ "9470.46",
+ "0.00076776"
+ ],
+ [
+ "9470.51",
+ "0.00075773"
+ ],
+ [
+ "9471.20",
+ "0.00076165"
+ ],
+ [
+ "9471.60",
+ "0.00078368"
+ ],
+ [
+ "9472.04",
+ "0.00076703"
+ ],
+ [
+ "9472.47",
+ "0.00078232"
+ ],
+ [
+ "9472.58",
+ "0.90000000"
+ ],
+ [
+ "9473.28",
+ "0.00082742"
+ ],
+ [
+ "9474.11",
+ "0.00088990"
+ ],
+ [
+ "9474.12",
+ "0.00077402"
+ ],
+ [
+ "9474.37",
+ "0.00077121"
+ ],
+ [
+ "9475.00",
+ "0.04279457"
+ ],
+ [
+ "9475.42",
+ "0.00076756"
+ ],
+ [
+ "9475.82",
+ "0.00078462"
+ ],
+ [
+ "9477.12",
+ "0.00077076"
+ ],
+ [
+ "9477.14",
+ "0.00076130"
+ ],
+ [
+ "9477.27",
+ "0.00078282"
+ ],
+ [
+ "9477.48",
+ "0.00076726"
+ ],
+ [
+ "9477.80",
+ "0.00078675"
+ ],
+ [
+ "9478.00",
+ "2.00000000"
+ ],
+ [
+ "9478.01",
+ "0.00077073"
+ ],
+ [
+ "9478.03",
+ "0.00075840"
+ ],
+ [
+ "9478.05",
+ "0.00077042"
+ ],
+ [
+ "9478.85",
+ "0.00083343"
+ ],
+ [
+ "9480.00",
+ "0.16000000"
+ ],
+ [
+ "9481.11",
+ "0.00077555"
+ ],
+ [
+ "9481.12",
+ "0.00077606"
+ ],
+ [
+ "9481.44",
+ "0.00080869"
+ ],
+ [
+ "9481.96",
+ "0.00331854"
+ ],
+ [
+ "9482.00",
+ "1.00000000"
+ ],
+ [
+ "9482.29",
+ "0.00084803"
+ ],
+ [
+ "9482.54",
+ "0.00078631"
+ ],
+ [
+ "9482.57",
+ "0.00076369"
+ ],
+ [
+ "9483.68",
+ "0.00078328"
+ ],
+ [
+ "9484.17",
+ "0.00077078"
+ ],
+ [
+ "9484.33",
+ "0.00077300"
+ ],
+ [
+ "9484.92",
+ "0.00084835"
+ ],
+ [
+ "9485.37",
+ "0.00076496"
+ ],
+ [
+ "9485.60",
+ "0.36000000"
+ ],
+ [
+ "9486.00",
+ "0.07850000"
+ ],
+ [
+ "9486.89",
+ "0.00076123"
+ ],
+ [
+ "9487.00",
+ "0.03000000"
+ ],
+ [
+ "9487.51",
+ "0.00079372"
+ ],
+ [
+ "9488.00",
+ "1.15000000"
+ ],
+ [
+ "9489.00",
+ "0.17000000"
+ ],
+ [
+ "9489.75",
+ "0.00079678"
+ ],
+ [
+ "9490.00",
+ "0.03898682"
+ ],
+ [
+ "9490.34",
+ "0.00079047"
+ ],
+ [
+ "9490.40",
+ "0.00083254"
+ ],
+ [
+ "9490.85",
+ "0.00077394"
+ ],
+ [
+ "9491.07",
+ "0.00078735"
+ ],
+ [
+ "9491.52",
+ "0.00081027"
+ ],
+ [
+ "9492.68",
+ "0.00086012"
+ ],
+ [
+ "9493.57",
+ "0.00077564"
+ ],
+ [
+ "9494.24",
+ "0.00101900"
+ ],
+ [
+ "9494.79",
+ "0.00076898"
+ ],
+ [
+ "9495.00",
+ "0.21696794"
+ ],
+ [
+ "9495.11",
+ "0.00125200"
+ ],
+ [
+ "9496.00",
+ "0.00653186"
+ ],
+ [
+ "9496.49",
+ "0.00077602"
+ ],
+ [
+ "9496.93",
+ "0.00076580"
+ ],
+ [
+ "9498.00",
+ "1.00000000"
+ ],
+ [
+ "9498.66",
+ "0.00085442"
+ ],
+ [
+ "9499.00",
+ "2.49191613"
+ ],
+ [
+ "9499.34",
+ "0.00079853"
+ ],
+ [
+ "9499.48",
+ "0.00075900"
+ ],
+ [
+ "9499.65",
+ "0.01000000"
+ ],
+ [
+ "9500.00",
+ "78.11653714"
+ ],
+ [
+ "9501.10",
+ "0.11484668"
+ ],
+ [
+ "9501.11",
+ "0.00078584"
+ ],
+ [
+ "9501.50",
+ "0.00078714"
+ ],
+ [
+ "9502.85",
+ "0.00083343"
+ ],
+ [
+ "9503.57",
+ "0.00085470"
+ ],
+ [
+ "9503.70",
+ "0.00077950"
+ ],
+ [
+ "9504.27",
+ "0.00085051"
+ ],
+ [
+ "9504.41",
+ "0.00290657"
+ ],
+ [
+ "9504.84",
+ "1.11319408"
+ ],
+ [
+ "9506.48",
+ "0.00076532"
+ ],
+ [
+ "9507.00",
+ "0.02000000"
+ ],
+ [
+ "9507.42",
+ "0.00075469"
+ ],
+ [
+ "9507.62",
+ "0.00346956"
+ ],
+ [
+ "9508.08",
+ "0.00079167"
+ ],
+ [
+ "9508.49",
+ "0.00079066"
+ ],
+ [
+ "9508.50",
+ "0.00077417"
+ ],
+ [
+ "9509.21",
+ "0.00076845"
+ ],
+ [
+ "9509.64",
+ "0.00077734"
+ ],
+ [
+ "9510.00",
+ "0.20095000"
+ ],
+ [
+ "9510.99",
+ "0.00077557"
+ ],
+ [
+ "9512.11",
+ "0.00078649"
+ ],
+ [
+ "9512.12",
+ "0.00076601"
+ ],
+ [
+ "9512.75",
+ "1.00000000"
+ ],
+ [
+ "9513.39",
+ "0.00077454"
+ ],
+ [
+ "9514.01",
+ "0.00076953"
+ ],
+ [
+ "9514.41",
+ "0.00077510"
+ ],
+ [
+ "9514.51",
+ "0.00075489"
+ ],
+ [
+ "9516.18",
+ "0.00076105"
+ ],
+ [
+ "9516.20",
+ "0.00081028"
+ ],
+ [
+ "9517.70",
+ "0.00080800"
+ ],
+ [
+ "9517.86",
+ "0.00449908"
+ ],
+ [
+ "9518.35",
+ "0.00079041"
+ ],
+ [
+ "9518.74",
+ "0.00076686"
+ ],
+ [
+ "9519.50",
+ "0.00076957"
+ ],
+ [
+ "9520.09",
+ "0.18689932"
+ ],
+ [
+ "9520.21",
+ "0.00077675"
+ ],
+ [
+ "9520.59",
+ "0.00080415"
+ ],
+ [
+ "9521.00",
+ "0.21000000"
+ ],
+ [
+ "9521.44",
+ "0.01279743"
+ ],
+ [
+ "9521.69",
+ "0.00370648"
+ ],
+ [
+ "9522.13",
+ "0.00077256"
+ ],
+ [
+ "9522.17",
+ "0.00081592"
+ ],
+ [
+ "9523.00",
+ "2.13039905"
+ ],
+ [
+ "9524.12",
+ "0.00078229"
+ ],
+ [
+ "9524.63",
+ "0.00075617"
+ ],
+ [
+ "9525.00",
+ "0.02572000"
+ ],
+ [
+ "9527.00",
+ "0.02000000"
+ ],
+ [
+ "9527.07",
+ "0.00078262"
+ ],
+ [
+ "9527.12",
+ "0.00085676"
+ ],
+ [
+ "9527.24",
+ "0.05000000"
+ ],
+ [
+ "9528.06",
+ "0.00076838"
+ ],
+ [
+ "9528.71",
+ "0.00084510"
+ ],
+ [
+ "9528.79",
+ "0.00078455"
+ ],
+ [
+ "9528.96",
+ "0.00083470"
+ ],
+ [
+ "9529.75",
+ "0.00075497"
+ ],
+ [
+ "9530.00",
+ "0.43500000"
+ ],
+ [
+ "9530.79",
+ "0.00076476"
+ ],
+ [
+ "9531.40",
+ "0.00079458"
+ ],
+ [
+ "9532.00",
+ "0.13000000"
+ ],
+ [
+ "9532.85",
+ "0.00082871"
+ ],
+ [
+ "9533.00",
+ "0.01000000"
+ ],
+ [
+ "9534.25",
+ "0.00077541"
+ ],
+ [
+ "9534.70",
+ "0.00078567"
+ ],
+ [
+ "9535.00",
+ "0.05200000"
+ ],
+ [
+ "9535.13",
+ "0.00077952"
+ ],
+ [
+ "9535.27",
+ "0.00075753"
+ ],
+ [
+ "9535.93",
+ "0.12300000"
+ ],
+ [
+ "9536.71",
+ "0.00075975"
+ ],
+ [
+ "9537.52",
+ "0.00075888"
+ ],
+ [
+ "9538.19",
+ "0.00075795"
+ ],
+ [
+ "9538.22",
+ "0.00076318"
+ ],
+ [
+ "9538.43",
+ "0.00076624"
+ ],
+ [
+ "9539.64",
+ "0.00077782"
+ ],
+ [
+ "9540.00",
+ "1.00087900"
+ ],
+ [
+ "9540.10",
+ "0.00086244"
+ ],
+ [
+ "9540.14",
+ "0.00077076"
+ ],
+ [
+ "9540.20",
+ "0.00079077"
+ ],
+ [
+ "9540.30",
+ "0.00075873"
+ ],
+ [
+ "9540.74",
+ "0.00082515"
+ ],
+ [
+ "9540.87",
+ "0.00081029"
+ ],
+ [
+ "9541.55",
+ "0.00079352"
+ ],
+ [
+ "9541.89",
+ "0.00076838"
+ ],
+ [
+ "9542.00",
+ "1.00000000"
+ ],
+ [
+ "9542.15",
+ "0.00085041"
+ ],
+ [
+ "9542.22",
+ "0.00156493"
+ ],
+ [
+ "9543.82",
+ "0.00082870"
+ ],
+ [
+ "9545.60",
+ "0.00085697"
+ ],
+ [
+ "9545.61",
+ "0.25000000"
+ ],
+ [
+ "9545.83",
+ "0.05057189"
+ ],
+ [
+ "9545.94",
+ "0.01000000"
+ ],
+ [
+ "9546.53",
+ "0.00077595"
+ ],
+ [
+ "9547.00",
+ "0.02000000"
+ ],
+ [
+ "9547.36",
+ "0.00075771"
+ ],
+ [
+ "9547.37",
+ "0.00077870"
+ ],
+ [
+ "9547.40",
+ "0.00078565"
+ ],
+ [
+ "9547.76",
+ "0.00076981"
+ ],
+ [
+ "9547.80",
+ "0.00085315"
+ ],
+ [
+ "9548.02",
+ "0.33660000"
+ ],
+ [
+ "9548.22",
+ "0.00076361"
+ ],
+ [
+ "9548.92",
+ "0.00075781"
+ ],
+ [
+ "9549.00",
+ "0.03000000"
+ ],
+ [
+ "9549.85",
+ "0.00076538"
+ ],
+ [
+ "9549.96",
+ "0.00078959"
+ ],
+ [
+ "9550.00",
+ "0.97082700"
+ ],
+ [
+ "9550.04",
+ "0.57400000"
+ ],
+ [
+ "9550.74",
+ "0.00085280"
+ ],
+ [
+ "9551.60",
+ "0.03199316"
+ ],
+ [
+ "9552.02",
+ "0.19400000"
+ ],
+ [
+ "9552.15",
+ "0.00079229"
+ ],
+ [
+ "9552.83",
+ "0.26780000"
+ ],
+ [
+ "9553.72",
+ "0.00078206"
+ ],
+ [
+ "9554.99",
+ "0.00078239"
+ ],
+ [
+ "9555.00",
+ "0.34200000"
+ ],
+ [
+ "9555.46",
+ "0.00082978"
+ ],
+ [
+ "9556.52",
+ "0.00085101"
+ ],
+ [
+ "9556.58",
+ "0.16200000"
+ ],
+ [
+ "9556.62",
+ "0.00083842"
+ ],
+ [
+ "9558.00",
+ "0.41000000"
+ ],
+ [
+ "9558.87",
+ "0.00077521"
+ ],
+ [
+ "9558.97",
+ "0.00078362"
+ ],
+ [
+ "9559.45",
+ "0.00078043"
+ ],
+ [
+ "9559.60",
+ "0.49600000"
+ ],
+ [
+ "9560.00",
+ "0.23000000"
+ ],
+ [
+ "9560.08",
+ "0.00079402"
+ ],
+ [
+ "9560.52",
+ "0.00075689"
+ ],
+ [
+ "9560.88",
+ "0.00078432"
+ ],
+ [
+ "9560.94",
+ "0.00080741"
+ ],
+ [
+ "9561.72",
+ "0.00076606"
+ ],
+ [
+ "9562.65",
+ "0.00078693"
+ ],
+ [
+ "9562.67",
+ "0.00076173"
+ ],
+ [
+ "9562.87",
+ "0.00076556"
+ ],
+ [
+ "9563.73",
+ "0.00082013"
+ ],
+ [
+ "9563.91",
+ "0.00075364"
+ ],
+ [
+ "9565.54",
+ "0.00081030"
+ ],
+ [
+ "9565.98",
+ "0.00078668"
+ ],
+ [
+ "9566.00",
+ "0.13000000"
+ ],
+ [
+ "9566.29",
+ "0.00078387"
+ ],
+ [
+ "9566.37",
+ "0.00083050"
+ ],
+ [
+ "9566.46",
+ "0.00075474"
+ ],
+ [
+ "9566.76",
+ "0.00077433"
+ ],
+ [
+ "9566.92",
+ "0.00077251"
+ ],
+ [
+ "9567.00",
+ "0.02000000"
+ ],
+ [
+ "9567.89",
+ "0.02500000"
+ ],
+ [
+ "9567.98",
+ "0.00079617"
+ ],
+ [
+ "9568.00",
+ "0.13000000"
+ ],
+ [
+ "9568.33",
+ "0.00075833"
+ ],
+ [
+ "9569.00",
+ "0.26000000"
+ ],
+ [
+ "9569.28",
+ "0.00077146"
+ ],
+ [
+ "9569.38",
+ "0.00085006"
+ ],
+ [
+ "9569.56",
+ "0.00727424"
+ ],
+ [
+ "9569.81",
+ "0.00076707"
+ ],
+ [
+ "9570.00",
+ "0.03307135"
+ ],
+ [
+ "9570.77",
+ "0.00077429"
+ ],
+ [
+ "9571.00",
+ "0.18122810"
+ ],
+ [
+ "9571.13",
+ "0.00076966"
+ ],
+ [
+ "9571.24",
+ "0.00585820"
+ ],
+ [
+ "9571.31",
+ "0.00077010"
+ ],
+ [
+ "9572.00",
+ "0.07660000"
+ ],
+ [
+ "9572.10",
+ "0.00081493"
+ ],
+ [
+ "9573.00",
+ "0.03000000"
+ ],
+ [
+ "9574.53",
+ "0.00077339"
+ ],
+ [
+ "9574.54",
+ "0.00083346"
+ ],
+ [
+ "9575.43",
+ "0.00077227"
+ ],
+ [
+ "9576.62",
+ "0.00076649"
+ ],
+ [
+ "9578.24",
+ "0.00086032"
+ ],
+ [
+ "9580.49",
+ "0.00078507"
+ ],
+ [
+ "9581.05",
+ "0.00077014"
+ ],
+ [
+ "9581.35",
+ "0.00083446"
+ ],
+ [
+ "9582.08",
+ "0.00076403"
+ ],
+ [
+ "9582.56",
+ "0.00075671"
+ ],
+ [
+ "9583.11",
+ "22.79453815"
+ ],
+ [
+ "9584.04",
+ "0.00081556"
+ ],
+ [
+ "9586.53",
+ "0.00086496"
+ ],
+ [
+ "9587.00",
+ "0.02000000"
+ ],
+ [
+ "9587.94",
+ "0.00078444"
+ ],
+ [
+ "9588.63",
+ "0.01490000"
+ ],
+ [
+ "9589.00",
+ "0.13000000"
+ ],
+ [
+ "9589.01",
+ "0.00075853"
+ ],
+ [
+ "9589.13",
+ "0.00076200"
+ ],
+ [
+ "9590.00",
+ "0.48176391"
+ ],
+ [
+ "9590.03",
+ "0.00075573"
+ ],
+ [
+ "9590.22",
+ "0.00081031"
+ ],
+ [
+ "9590.86",
+ "0.00076643"
+ ],
+ [
+ "9591.82",
+ "0.00077821"
+ ],
+ [
+ "9593.96",
+ "0.00086330"
+ ],
+ [
+ "9594.78",
+ "0.00078711"
+ ],
+ [
+ "9594.95",
+ "0.00079071"
+ ],
+ [
+ "9595.46",
+ "0.00077075"
+ ],
+ [
+ "9596.56",
+ "0.00076491"
+ ],
+ [
+ "9597.00",
+ "0.15000000"
+ ],
+ [
+ "9597.50",
+ "0.00077989"
+ ],
+ [
+ "9598.07",
+ "0.00077676"
+ ],
+ [
+ "9598.34",
+ "0.00085432"
+ ],
+ [
+ "9598.50",
+ "0.00937631"
+ ],
+ [
+ "9599.00",
+ "0.50243785"
+ ],
+ [
+ "9600.00",
+ "8.15207453"
+ ],
+ [
+ "9600.25",
+ "0.00077055"
+ ],
+ [
+ "9601.05",
+ "0.00084723"
+ ],
+ [
+ "9601.25",
+ "0.00078007"
+ ],
+ [
+ "9601.76",
+ "0.00079165"
+ ],
+ [
+ "9602.00",
+ "0.19001356"
+ ],
+ [
+ "9602.22",
+ "0.00082273"
+ ],
+ [
+ "9603.34",
+ "0.00076058"
+ ],
+ [
+ "9603.41",
+ "0.00085429"
+ ],
+ [
+ "9603.66",
+ "0.00077580"
+ ],
+ [
+ "9605.00",
+ "0.11500000"
+ ],
+ [
+ "9605.37",
+ "0.00076342"
+ ],
+ [
+ "9605.45",
+ "0.00080952"
+ ],
+ [
+ "9606.49",
+ "0.00077035"
+ ],
+ [
+ "9606.52",
+ "0.00076223"
+ ],
+ [
+ "9607.00",
+ "0.02000000"
+ ],
+ [
+ "9607.73",
+ "0.00077516"
+ ],
+ [
+ "9608.28",
+ "0.00078164"
+ ],
+ [
+ "9608.35",
+ "0.00115765"
+ ],
+ [
+ "9609.23",
+ "0.00085146"
+ ],
+ [
+ "9609.46",
+ "0.00076625"
+ ],
+ [
+ "9610.00",
+ "1.00095000"
+ ],
+ [
+ "9610.19",
+ "0.00079066"
+ ],
+ [
+ "9612.00",
+ "0.00078750"
+ ],
+ [
+ "9612.26",
+ "0.00079190"
+ ],
+ [
+ "9612.51",
+ "0.00077560"
+ ],
+ [
+ "9614.13",
+ "0.00076574"
+ ],
+ [
+ "9614.22",
+ "0.00082170"
+ ],
+ [
+ "9614.36",
+ "0.00085734"
+ ],
+ [
+ "9614.89",
+ "0.00075367"
+ ],
+ [
+ "9614.95",
+ "0.00078075"
+ ],
+ [
+ "9615.59",
+ "0.00076517"
+ ],
+ [
+ "9616.75",
+ "0.00084023"
+ ],
+ [
+ "9617.09",
+ "0.00076443"
+ ],
+ [
+ "9618.52",
+ "0.00077314"
+ ],
+ [
+ "9618.76",
+ "0.00083602"
+ ],
+ [
+ "9620.00",
+ "0.16241000"
+ ],
+ [
+ "9621.28",
+ "0.00077186"
+ ],
+ [
+ "9621.31",
+ "0.00213765"
+ ],
+ [
+ "9621.87",
+ "0.00077126"
+ ],
+ [
+ "9621.94",
+ "0.00076304"
+ ],
+ [
+ "9622.66",
+ "0.00084800"
+ ],
+ [
+ "9622.68",
+ "0.00078919"
+ ],
+ [
+ "9623.65",
+ "0.00079461"
+ ],
+ [
+ "9623.68",
+ "0.00076173"
+ ],
+ [
+ "9624.70",
+ "0.00078925"
+ ],
+ [
+ "9625.00",
+ "1.00000000"
+ ],
+ [
+ "9626.22",
+ "0.00082068"
+ ],
+ [
+ "9626.60",
+ "0.00077810"
+ ],
+ [
+ "9627.00",
+ "0.02000000"
+ ],
+ [
+ "9627.17",
+ "0.00078837"
+ ],
+ [
+ "9627.65",
+ "0.00076614"
+ ],
+ [
+ "9628.00",
+ "0.08000000"
+ ],
+ [
+ "9628.36",
+ "0.00077032"
+ ],
+ [
+ "9630.00",
+ "13.00000000"
+ ],
+ [
+ "9630.78",
+ "0.00078595"
+ ],
+ [
+ "9630.94",
+ "0.00083141"
+ ],
+ [
+ "9631.80",
+ "0.00078250"
+ ],
+ [
+ "9631.89",
+ "0.00306933"
+ ],
+ [
+ "9632.00",
+ "0.02000000"
+ ],
+ [
+ "9632.19",
+ "0.00076696"
+ ],
+ [
+ "9632.42",
+ "0.00078252"
+ ],
+ [
+ "9633.13",
+ "0.00079487"
+ ],
+ [
+ "9633.80",
+ "0.00213423"
+ ],
+ [
+ "9633.83",
+ "0.00081726"
+ ],
+ [
+ "9635.00",
+ "0.00075433"
+ ],
+ [
+ "9635.19",
+ "0.00074830"
+ ],
+ [
+ "9635.37",
+ "0.00085165"
+ ],
+ [
+ "9635.41",
+ "0.00076417"
+ ],
+ [
+ "9635.45",
+ "0.00074940"
+ ],
+ [
+ "9635.60",
+ "0.24600000"
+ ],
+ [
+ "9636.06",
+ "0.00075415"
+ ],
+ [
+ "9636.46",
+ "0.00077196"
+ ],
+ [
+ "9636.48",
+ "0.00085280"
+ ],
+ [
+ "9636.88",
+ "0.00076403"
+ ],
+ [
+ "9636.93",
+ "0.00077631"
+ ],
+ [
+ "9637.42",
+ "0.00076107"
+ ],
+ [
+ "9638.60",
+ "0.37400000"
+ ],
+ [
+ "9639.00",
+ "2.86381953"
+ ],
+ [
+ "9639.23",
+ "0.00075231"
+ ],
+ [
+ "9639.50",
+ "0.00078307"
+ ],
+ [
+ "9639.57",
+ "0.00080033"
+ ],
+ [
+ "9639.80",
+ "0.00075088"
+ ],
+ [
+ "9640.00",
+ "1.05817769"
+ ],
+ [
+ "9640.68",
+ "0.00076966"
+ ],
+ [
+ "9641.00",
+ "0.01000000"
+ ],
+ [
+ "9642.00",
+ "0.15000000"
+ ],
+ [
+ "9642.64",
+ "0.00084042"
+ ],
+ [
+ "9643.46",
+ "0.00075113"
+ ],
+ [
+ "9643.64",
+ "0.00079137"
+ ],
+ [
+ "9644.16",
+ "0.00075465"
+ ],
+ [
+ "9644.22",
+ "0.00081914"
+ ],
+ [
+ "9644.79",
+ "0.05000000"
+ ],
+ [
+ "9645.00",
+ "0.02000000"
+ ],
+ [
+ "9647.00",
+ "0.23054220"
+ ],
+ [
+ "9647.81",
+ "0.00079267"
+ ],
+ [
+ "9648.03",
+ "0.00077030"
+ ],
+ [
+ "9648.70",
+ "0.00075168"
+ ],
+ [
+ "9649.50",
+ "0.00077978"
+ ],
+ [
+ "9649.65",
+ "0.00075626"
+ ],
+ [
+ "9650.89",
+ "0.00077582"
+ ],
+ [
+ "9650.95",
+ "0.00160522"
+ ],
+ [
+ "9651.09",
+ "0.00077777"
+ ],
+ [
+ "9651.31",
+ "0.01336305"
+ ],
+ [
+ "9651.43",
+ "0.00077567"
+ ],
+ [
+ "9652.29",
+ "0.00074368"
+ ],
+ [
+ "9652.39",
+ "0.00075509"
+ ],
+ [
+ "9653.27",
+ "0.00079430"
+ ],
+ [
+ "9653.42",
+ "0.01369732"
+ ],
+ [
+ "9653.53",
+ "0.00510907"
+ ],
+ [
+ "9654.07",
+ "0.00076116"
+ ],
+ [
+ "9654.77",
+ "0.00296800"
+ ],
+ [
+ "9655.17",
+ "0.00077053"
+ ],
+ [
+ "9655.61",
+ "0.00076365"
+ ],
+ [
+ "9655.91",
+ "0.01581674"
+ ],
+ [
+ "9656.05",
+ "0.00075217"
+ ],
+ [
+ "9656.22",
+ "0.00081813"
+ ],
+ [
+ "9656.71",
+ "0.00079380"
+ ],
+ [
+ "9656.99",
+ "0.06957592"
+ ],
+ [
+ "9659.97",
+ "1.00000000"
+ ],
+ [
+ "9660.22",
+ "0.00076237"
+ ],
+ [
+ "9660.24",
+ "0.00074987"
+ ],
+ [
+ "9660.41",
+ "0.00075268"
+ ],
+ [
+ "9660.93",
+ "0.00076757"
+ ],
+ [
+ "9662.00",
+ "0.10000000"
+ ],
+ [
+ "9662.60",
+ "0.00077734"
+ ],
+ [
+ "9663.20",
+ "0.00079532"
+ ],
+ [
+ "9664.24",
+ "0.00080034"
+ ],
+ [
+ "9664.37",
+ "0.00075170"
+ ],
+ [
+ "9664.95",
+ "0.00075346"
+ ],
+ [
+ "9665.57",
+ "0.00076956"
+ ],
+ [
+ "9666.00",
+ "0.30000000"
+ ],
+ [
+ "9666.65",
+ "0.00075039"
+ ],
+ [
+ "9666.71",
+ "0.00075471"
+ ],
+ [
+ "9667.00",
+ "0.02000000"
+ ],
+ [
+ "9668.04",
+ "0.50000000"
+ ],
+ [
+ "9668.11",
+ "0.00150000"
+ ],
+ [
+ "9669.00",
+ "0.00075019"
+ ],
+ [
+ "9669.29",
+ "0.00078276"
+ ],
+ [
+ "9669.31",
+ "0.00081973"
+ ],
+ [
+ "9669.56",
+ "0.00077085"
+ ],
+ [
+ "9669.57",
+ "0.00075606"
+ ],
+ [
+ "9669.72",
+ "0.00074909"
+ ],
+ [
+ "9669.92",
+ "0.00076010"
+ ],
+ [
+ "9670.09",
+ "0.00076022"
+ ],
+ [
+ "9671.00",
+ "0.10000000"
+ ],
+ [
+ "9671.20",
+ "0.00075170"
+ ],
+ [
+ "9671.83",
+ "0.00075840"
+ ],
+ [
+ "9672.25",
+ "0.00074416"
+ ],
+ [
+ "9672.95",
+ "0.00076453"
+ ],
+ [
+ "9673.01",
+ "0.00074303"
+ ],
+ [
+ "9674.00",
+ "1.23000000"
+ ],
+ [
+ "9676.24",
+ "0.00081643"
+ ],
+ [
+ "9676.63",
+ "0.00074611"
+ ],
+ [
+ "9677.00",
+ "0.26156509"
+ ],
+ [
+ "9678.11",
+ "0.00074312"
+ ],
+ [
+ "9678.69",
+ "0.00077182"
+ ],
+ [
+ "9678.86",
+ "0.00075585"
+ ],
+ [
+ "9678.99",
+ "0.00075073"
+ ],
+ [
+ "9679.79",
+ "0.00075624"
+ ],
+ [
+ "9679.88",
+ "0.00077264"
+ ],
+ [
+ "9680.00",
+ "0.06579127"
+ ],
+ [
+ "9680.54",
+ "0.00083226"
+ ],
+ [
+ "9680.70",
+ "0.00077272"
+ ],
+ [
+ "9680.72",
+ "0.00074120"
+ ],
+ [
+ "9680.82",
+ "0.00076432"
+ ],
+ [
+ "9680.86",
+ "0.00075745"
+ ],
+ [
+ "9681.12",
+ "0.00074621"
+ ],
+ [
+ "9681.61",
+ "0.00075076"
+ ],
+ [
+ "9682.23",
+ "0.00077420"
+ ],
+ [
+ "9682.32",
+ "0.00077813"
+ ],
+ [
+ "9684.26",
+ "0.00074612"
+ ],
+ [
+ "9684.57",
+ "0.00077466"
+ ],
+ [
+ "9685.17",
+ "0.00074481"
+ ],
+ [
+ "9685.82",
+ "0.00077053"
+ ],
+ [
+ "9685.87",
+ "0.00076442"
+ ],
+ [
+ "9686.08",
+ "0.00081159"
+ ],
+ [
+ "9687.00",
+ "0.03000000"
+ ],
+ [
+ "9687.74",
+ "0.00075528"
+ ],
+ [
+ "9688.29",
+ "0.00083436"
+ ],
+ [
+ "9688.34",
+ "0.00075721"
+ ],
+ [
+ "9688.91",
+ "0.00157277"
+ ],
+ [
+ "9688.92",
+ "0.00081232"
+ ],
+ [
+ "9689.42",
+ "0.00075312"
+ ],
+ [
+ "9689.73",
+ "0.00082780"
+ ],
+ [
+ "9690.00",
+ "0.36000000"
+ ],
+ [
+ "9690.30",
+ "0.00078601"
+ ],
+ [
+ "9690.39",
+ "0.00077316"
+ ],
+ [
+ "9690.41",
+ "0.00084003"
+ ],
+ [
+ "9690.84",
+ "0.00077217"
+ ],
+ [
+ "9691.57",
+ "0.00077574"
+ ],
+ [
+ "9692.58",
+ "0.00075207"
+ ],
+ [
+ "9692.82",
+ "0.00077658"
+ ],
+ [
+ "9693.48",
+ "0.12344000"
+ ],
+ [
+ "9693.51",
+ "0.00077957"
+ ],
+ [
+ "9693.70",
+ "0.00075067"
+ ],
+ [
+ "9694.09",
+ "0.00074183"
+ ],
+ [
+ "9694.23",
+ "0.00076636"
+ ],
+ [
+ "9694.32",
+ "0.00075055"
+ ],
+ [
+ "9694.49",
+ "0.00079544"
+ ],
+ [
+ "9695.00",
+ "0.06600000"
+ ],
+ [
+ "9695.29",
+ "0.00074358"
+ ],
+ [
+ "9695.72",
+ "0.00074105"
+ ],
+ [
+ "9696.30",
+ "0.00076249"
+ ],
+ [
+ "9696.60",
+ "0.00085623"
+ ],
+ [
+ "9696.78",
+ "0.00076646"
+ ],
+ [
+ "9696.90",
+ "0.00078043"
+ ],
+ [
+ "9697.91",
+ "0.00082286"
+ ],
+ [
+ "9697.97",
+ "0.20000000"
+ ],
+ [
+ "9698.05",
+ "0.00077962"
+ ],
+ [
+ "9698.40",
+ "0.00076361"
+ ],
+ [
+ "9699.00",
+ "0.10343785"
+ ],
+ [
+ "9699.37",
+ "0.00077095"
+ ],
+ [
+ "9699.75",
+ "0.30000000"
+ ],
+ [
+ "9700.00",
+ "2.83221140"
+ ],
+ [
+ "9700.22",
+ "0.00075089"
+ ],
+ [
+ "9700.29",
+ "0.00075439"
+ ],
+ [
+ "9700.53",
+ "0.00078681"
+ ],
+ [
+ "9701.00",
+ "0.12000000"
+ ],
+ [
+ "9702.00",
+ "0.00430000"
+ ],
+ [
+ "9702.18",
+ "0.00076486"
+ ],
+ [
+ "9702.69",
+ "0.00084622"
+ ],
+ [
+ "9702.79",
+ "0.00074221"
+ ],
+ [
+ "9702.97",
+ "0.00075180"
+ ],
+ [
+ "9703.27",
+ "0.00078331"
+ ],
+ [
+ "9703.32",
+ "0.00074219"
+ ],
+ [
+ "9703.42",
+ "0.00079695"
+ ],
+ [
+ "9703.58",
+ "0.00076505"
+ ],
+ [
+ "9703.68",
+ "0.00076795"
+ ],
+ [
+ "9704.17",
+ "0.00074704"
+ ],
+ [
+ "9705.09",
+ "0.00074046"
+ ],
+ [
+ "9705.35",
+ "0.00077585"
+ ],
+ [
+ "9705.39",
+ "0.00074040"
+ ],
+ [
+ "9705.51",
+ "0.00076618"
+ ],
+ [
+ "9705.55",
+ "0.00077687"
+ ],
+ [
+ "9706.47",
+ "0.00076495"
+ ],
+ [
+ "9706.89",
+ "0.00074059"
+ ],
+ [
+ "9707.00",
+ "0.02000000"
+ ],
+ [
+ "9707.20",
+ "0.00075475"
+ ],
+ [
+ "9707.26",
+ "0.00076045"
+ ],
+ [
+ "9707.61",
+ "0.00078988"
+ ],
+ [
+ "9707.91",
+ "0.00074597"
+ ],
+ [
+ "9708.18",
+ "0.00074700"
+ ],
+ [
+ "9708.39",
+ "0.00078917"
+ ],
+ [
+ "9708.76",
+ "0.00074090"
+ ],
+ [
+ "9708.93",
+ "0.12900000"
+ ],
+ [
+ "9709.38",
+ "0.00074487"
+ ],
+ [
+ "9709.63",
+ "0.00083830"
+ ],
+ [
+ "9709.65",
+ "0.00077774"
+ ],
+ [
+ "9710.00",
+ "52.89396710"
+ ],
+ [
+ "9710.75",
+ "0.00075015"
+ ],
+ [
+ "9710.98",
+ "0.00085136"
+ ],
+ [
+ "9711.00",
+ "0.11000000"
+ ],
+ [
+ "9711.11",
+ "0.00150537"
+ ],
+ [
+ "9711.58",
+ "0.00077207"
+ ],
+ [
+ "9711.72",
+ "0.00074947"
+ ],
+ [
+ "9711.77",
+ "0.00078655"
+ ],
+ [
+ "9711.88",
+ "0.00074729"
+ ],
+ [
+ "9711.89",
+ "0.00074919"
+ ],
+ [
+ "9712.00",
+ "0.60000000"
+ ],
+ [
+ "9713.27",
+ "0.04000000"
+ ],
+ [
+ "9713.58",
+ "0.16920000"
+ ],
+ [
+ "9713.59",
+ "0.00079036"
+ ],
+ [
+ "9713.75",
+ "0.00078506"
+ ],
+ [
+ "9714.30",
+ "0.00080976"
+ ],
+ [
+ "9714.60",
+ "0.00078049"
+ ],
+ [
+ "9715.00",
+ "0.05000000"
+ ],
+ [
+ "9715.05",
+ "0.00075637"
+ ],
+ [
+ "9715.72",
+ "0.00077142"
+ ],
+ [
+ "9715.73",
+ "0.00074691"
+ ],
+ [
+ "9715.89",
+ "0.00075771"
+ ],
+ [
+ "9716.71",
+ "0.00079065"
+ ],
+ [
+ "9716.76",
+ "0.00077764"
+ ],
+ [
+ "9716.81",
+ "0.00085481"
+ ],
+ [
+ "9716.85",
+ "0.00078618"
+ ],
+ [
+ "9716.92",
+ "0.00076208"
+ ],
+ [
+ "9717.25",
+ "0.00073839"
+ ],
+ [
+ "9717.40",
+ "0.00075941"
+ ],
+ [
+ "9717.67",
+ "0.00075208"
+ ],
+ [
+ "9718.34",
+ "0.00075809"
+ ],
+ [
+ "9718.80",
+ "0.11000000"
+ ],
+ [
+ "9719.02",
+ "0.00074474"
+ ],
+ [
+ "9719.90",
+ "0.00074469"
+ ],
+ [
+ "9719.98",
+ "0.00076729"
+ ],
+ [
+ "9720.16",
+ "0.00074234"
+ ],
+ [
+ "9720.29",
+ "0.00078558"
+ ],
+ [
+ "9720.45",
+ "0.00074098"
+ ],
+ [
+ "9721.02",
+ "0.35280000"
+ ],
+ [
+ "9721.08",
+ "0.00086222"
+ ],
+ [
+ "9721.10",
+ "0.00074656"
+ ],
+ [
+ "9721.40",
+ "0.00075620"
+ ],
+ [
+ "9722.24",
+ "0.00076314"
+ ],
+ [
+ "9722.59",
+ "0.00082077"
+ ],
+ [
+ "9723.01",
+ "0.00075962"
+ ],
+ [
+ "9723.04",
+ "0.60200000"
+ ],
+ [
+ "9723.30",
+ "0.71025140"
+ ],
+ [
+ "9723.76",
+ "0.00076670"
+ ],
+ [
+ "9723.91",
+ "0.00074320"
+ ],
+ [
+ "9724.05",
+ "0.00075228"
+ ],
+ [
+ "9724.83",
+ "0.00077987"
+ ],
+ [
+ "9724.97",
+ "0.00077928"
+ ],
+ [
+ "9725.00",
+ "0.10748819"
+ ],
+ [
+ "9725.02",
+ "0.20200000"
+ ],
+ [
+ "9725.49",
+ "0.00074834"
+ ],
+ [
+ "9725.83",
+ "0.27740000"
+ ],
+ [
+ "9726.13",
+ "0.00074653"
+ ],
+ [
+ "9727.00",
+ "0.02000000"
+ ],
+ [
+ "9727.44",
+ "0.00083144"
+ ],
+ [
+ "9727.63",
+ "0.00075648"
+ ],
+ [
+ "9727.74",
+ "0.00079748"
+ ],
+ [
+ "9728.06",
+ "0.00078894"
+ ],
+ [
+ "9728.73",
+ "0.00073903"
+ ],
+ [
+ "9729.82",
+ "0.00085544"
+ ],
+ [
+ "9730.00",
+ "0.05454194"
+ ],
+ [
+ "9730.03",
+ "0.00077344"
+ ],
+ [
+ "9730.38",
+ "0.00076440"
+ ],
+ [
+ "9730.41",
+ "0.00075023"
+ ],
+ [
+ "9730.58",
+ "0.00077071"
+ ],
+ [
+ "9730.59",
+ "0.00076957"
+ ],
+ [
+ "9731.00",
+ "0.43000000"
+ ],
+ [
+ "9732.09",
+ "0.00075832"
+ ],
+ [
+ "9732.60",
+ "0.52000000"
+ ],
+ [
+ "9732.67",
+ "0.00076264"
+ ],
+ [
+ "9733.09",
+ "0.00077025"
+ ],
+ [
+ "9733.40",
+ "0.00079977"
+ ],
+ [
+ "9734.09",
+ "0.00076635"
+ ],
+ [
+ "9734.31",
+ "0.00074543"
+ ],
+ [
+ "9734.47",
+ "0.00075035"
+ ],
+ [
+ "9734.68",
+ "0.00076643"
+ ],
+ [
+ "9734.76",
+ "0.00077248"
+ ],
+ [
+ "9734.80",
+ "0.00075848"
+ ],
+ [
+ "9735.00",
+ "0.91000000"
+ ],
+ [
+ "9735.21",
+ "0.00079093"
+ ],
+ [
+ "9735.61",
+ "0.00438008"
+ ],
+ [
+ "9736.10",
+ "0.00073850"
+ ],
+ [
+ "9736.80",
+ "0.00075029"
+ ],
+ [
+ "9737.35",
+ "0.00075539"
+ ],
+ [
+ "9737.70",
+ "0.00078410"
+ ],
+ [
+ "9738.26",
+ "0.00079037"
+ ],
+ [
+ "9738.40",
+ "0.00076356"
+ ],
+ [
+ "9738.44",
+ "0.00077274"
+ ],
+ [
+ "9738.55",
+ "0.00075746"
+ ],
+ [
+ "9738.70",
+ "0.00074277"
+ ],
+ [
+ "9739.42",
+ "0.00075272"
+ ],
+ [
+ "9740.00",
+ "0.05077244"
+ ],
+ [
+ "9740.15",
+ "0.00074692"
+ ],
+ [
+ "9740.44",
+ "0.00075577"
+ ],
+ [
+ "9740.52",
+ "0.00075444"
+ ],
+ [
+ "9740.59",
+ "0.00075768"
+ ],
+ [
+ "9740.61",
+ "0.00077220"
+ ],
+ [
+ "9741.40",
+ "0.00074656"
+ ],
+ [
+ "9741.89",
+ "0.00075881"
+ ],
+ [
+ "9742.57",
+ "0.00073919"
+ ],
+ [
+ "9742.96",
+ "0.00074816"
+ ],
+ [
+ "9742.97",
+ "0.00077857"
+ ],
+ [
+ "9743.00",
+ "0.84000000"
+ ],
+ [
+ "9743.67",
+ "0.00076686"
+ ],
+ [
+ "9743.93",
+ "0.00078932"
+ ],
+ [
+ "9744.19",
+ "0.00078969"
+ ],
+ [
+ "9744.53",
+ "0.00079389"
+ ],
+ [
+ "9745.00",
+ "1.66300000"
+ ],
+ [
+ "9745.34",
+ "0.00075536"
+ ],
+ [
+ "9745.39",
+ "0.00076222"
+ ],
+ [
+ "9745.55",
+ "0.00074979"
+ ],
+ [
+ "9746.03",
+ "0.00078307"
+ ],
+ [
+ "9747.00",
+ "1.02000000"
+ ],
+ [
+ "9747.26",
+ "0.00081869"
+ ],
+ [
+ "9747.55",
+ "0.00077256"
+ ],
+ [
+ "9749.00",
+ "0.01000000"
+ ],
+ [
+ "9749.66",
+ "0.00075893"
+ ],
+ [
+ "9749.67",
+ "0.00078893"
+ ],
+ [
+ "9749.84",
+ "0.00075190"
+ ],
+ [
+ "9749.92",
+ "0.00073816"
+ ],
+ [
+ "9749.93",
+ "0.00073843"
+ ],
+ [
+ "9750.00",
+ "30.16697000"
+ ],
+ [
+ "9750.95",
+ "0.00073669"
+ ],
+ [
+ "9751.00",
+ "0.05000000"
+ ],
+ [
+ "9751.20",
+ "0.00073561"
+ ],
+ [
+ "9751.27",
+ "0.00074801"
+ ],
+ [
+ "9751.35",
+ "0.00078531"
+ ],
+ [
+ "9751.64",
+ "0.00075248"
+ ],
+ [
+ "9751.73",
+ "0.00077234"
+ ],
+ [
+ "9751.78",
+ "0.00077771"
+ ],
+ [
+ "9751.91",
+ "0.00075071"
+ ],
+ [
+ "9752.00",
+ "0.00074555"
+ ],
+ [
+ "9752.38",
+ "0.00074490"
+ ],
+ [
+ "9752.87",
+ "0.00077345"
+ ],
+ [
+ "9753.21",
+ "0.00152224"
+ ],
+ [
+ "9753.33",
+ "0.00075120"
+ ],
+ [
+ "9754.00",
+ "0.23000000"
+ ],
+ [
+ "9754.01",
+ "0.00073767"
+ ],
+ [
+ "9754.26",
+ "0.00074003"
+ ],
+ [
+ "9754.38",
+ "0.00076735"
+ ],
+ [
+ "9754.42",
+ "0.00160173"
+ ],
+ [
+ "9754.48",
+ "0.00074004"
+ ],
+ [
+ "9754.76",
+ "0.00077241"
+ ],
+ [
+ "9754.97",
+ "0.00077493"
+ ],
+ [
+ "9755.00",
+ "0.05000000"
+ ],
+ [
+ "9755.86",
+ "0.00075647"
+ ],
+ [
+ "9756.18",
+ "0.00563600"
+ ],
+ [
+ "9756.52",
+ "0.00075052"
+ ],
+ [
+ "9756.56",
+ "0.00085552"
+ ],
+ [
+ "9756.59",
+ "0.00078741"
+ ],
+ [
+ "9756.61",
+ "0.00075865"
+ ],
+ [
+ "9757.00",
+ "0.10000000"
+ ],
+ [
+ "9757.15",
+ "0.00246198"
+ ],
+ [
+ "9757.52",
+ "0.00075266"
+ ],
+ [
+ "9757.61",
+ "0.00076728"
+ ],
+ [
+ "9757.88",
+ "0.00073747"
+ ],
+ [
+ "9758.75",
+ "0.00078300"
+ ],
+ [
+ "9759.01",
+ "0.00077973"
+ ],
+ [
+ "9759.05",
+ "0.00074213"
+ ],
+ [
+ "9759.56",
+ "0.00073983"
+ ],
+ [
+ "9759.68",
+ "0.00074127"
+ ],
+ [
+ "9760.26",
+ "0.00077807"
+ ],
+ [
+ "9760.68",
+ "0.00078462"
+ ],
+ [
+ "9760.72",
+ "0.00077009"
+ ],
+ [
+ "9760.82",
+ "0.00075981"
+ ],
+ [
+ "9760.94",
+ "0.00073988"
+ ],
+ [
+ "9761.30",
+ "0.00075794"
+ ],
+ [
+ "9761.66",
+ "0.00077272"
+ ],
+ [
+ "9761.69",
+ "0.00073773"
+ ],
+ [
+ "9762.35",
+ "0.00076069"
+ ],
+ [
+ "9762.93",
+ "0.00079038"
+ ],
+ [
+ "9762.95",
+ "0.00076538"
+ ],
+ [
+ "9763.29",
+ "0.00076623"
+ ],
+ [
+ "9763.78",
+ "0.00074558"
+ ],
+ [
+ "9763.96",
+ "0.00074455"
+ ],
+ [
+ "9763.97",
+ "0.10000000"
+ ],
+ [
+ "9763.99",
+ "0.00077415"
+ ],
+ [
+ "9764.00",
+ "1.00000000"
+ ],
+ [
+ "9764.57",
+ "0.00076690"
+ ],
+ [
+ "9764.74",
+ "0.00075817"
+ ],
+ [
+ "9765.23",
+ "0.00074320"
+ ],
+ [
+ "9765.70",
+ "0.00075337"
+ ],
+ [
+ "9765.73",
+ "0.00076479"
+ ],
+ [
+ "9765.84",
+ "0.00077892"
+ ],
+ [
+ "9766.51",
+ "0.00077979"
+ ],
+ [
+ "9766.67",
+ "0.00078721"
+ ],
+ [
+ "9767.00",
+ "0.02000000"
+ ],
+ [
+ "9767.36",
+ "0.00076007"
+ ],
+ [
+ "9767.38",
+ "0.00075448"
+ ],
+ [
+ "9767.39",
+ "0.00077071"
+ ],
+ [
+ "9767.70",
+ "0.00075059"
+ ],
+ [
+ "9768.46",
+ "0.00074837"
+ ],
+ [
+ "9769.54",
+ "0.00080707"
+ ],
+ [
+ "9770.14",
+ "0.00077578"
+ ],
+ [
+ "9771.02",
+ "0.00075232"
+ ],
+ [
+ "9771.49",
+ "0.00077815"
+ ],
+ [
+ "9771.63",
+ "0.00076052"
+ ],
+ [
+ "9771.71",
+ "0.00083973"
+ ],
+ [
+ "9771.91",
+ "0.00078438"
+ ],
+ [
+ "9772.04",
+ "0.00076500"
+ ],
+ [
+ "9772.59",
+ "0.00074298"
+ ],
+ [
+ "9772.84",
+ "0.00074140"
+ ],
+ [
+ "9772.88",
+ "0.00073765"
+ ],
+ [
+ "9773.01",
+ "0.00073943"
+ ],
+ [
+ "9773.42",
+ "0.00075808"
+ ],
+ [
+ "9773.47",
+ "0.00081557"
+ ],
+ [
+ "9773.55",
+ "0.00074020"
+ ],
+ [
+ "9773.81",
+ "0.00083112"
+ ],
+ [
+ "9774.59",
+ "0.00074013"
+ ],
+ [
+ "9775.00",
+ "0.10000000"
+ ],
+ [
+ "9775.55",
+ "0.13881537"
+ ],
+ [
+ "9776.00",
+ "0.04000000"
+ ],
+ [
+ "9776.43",
+ "0.00075693"
+ ],
+ [
+ "9776.60",
+ "0.00079635"
+ ],
+ [
+ "9776.81",
+ "0.00085549"
+ ],
+ [
+ "9776.95",
+ "0.00074458"
+ ],
+ [
+ "9777.00",
+ "0.10000000"
+ ],
+ [
+ "9777.36",
+ "0.00077903"
+ ],
+ [
+ "9777.50",
+ "0.00079528"
+ ],
+ [
+ "9778.00",
+ "0.03342872"
+ ],
+ [
+ "9778.14",
+ "0.00076923"
+ ],
+ [
+ "9780.02",
+ "0.00086539"
+ ],
+ [
+ "9780.57",
+ "0.00083843"
+ ],
+ [
+ "9780.67",
+ "0.00078716"
+ ],
+ [
+ "9781.18",
+ "0.00077485"
+ ],
+ [
+ "9781.29",
+ "0.00076438"
+ ],
+ [
+ "9781.34",
+ "0.00076032"
+ ],
+ [
+ "9781.47",
+ "0.00076084"
+ ],
+ [
+ "9781.52",
+ "0.00073528"
+ ],
+ [
+ "9781.75",
+ "0.00077761"
+ ],
+ [
+ "9781.83",
+ "0.00079166"
+ ],
+ [
+ "9782.19",
+ "0.00074707"
+ ],
+ [
+ "9782.39",
+ "0.00077792"
+ ],
+ [
+ "9782.63",
+ "0.00076088"
+ ],
+ [
+ "9783.12",
+ "0.00075937"
+ ],
+ [
+ "9783.43",
+ "0.00083600"
+ ],
+ [
+ "9783.59",
+ "0.00075350"
+ ],
+ [
+ "9783.81",
+ "0.00078055"
+ ],
+ [
+ "9784.00",
+ "0.18108327"
+ ],
+ [
+ "9784.13",
+ "0.00075210"
+ ],
+ [
+ "9785.00",
+ "0.01537000"
+ ],
+ [
+ "9785.10",
+ "0.00075466"
+ ],
+ [
+ "9786.00",
+ "1.47794560"
+ ],
+ [
+ "9786.10",
+ "0.00073894"
+ ],
+ [
+ "9786.32",
+ "0.00075735"
+ ],
+ [
+ "9786.60",
+ "0.00074051"
+ ],
+ [
+ "9786.73",
+ "0.00075285"
+ ],
+ [
+ "9787.00",
+ "0.02000000"
+ ],
+ [
+ "9787.32",
+ "0.00075335"
+ ],
+ [
+ "9787.43",
+ "0.00076224"
+ ],
+ [
+ "9787.61",
+ "0.00079039"
+ ],
+ [
+ "9787.88",
+ "0.00078293"
+ ],
+ [
+ "9788.00",
+ "0.25000000"
+ ],
+ [
+ "9788.08",
+ "0.00075068"
+ ],
+ [
+ "9788.19",
+ "0.00073307"
+ ],
+ [
+ "9788.62",
+ "0.00075530"
+ ],
+ [
+ "9789.89",
+ "0.00074954"
+ ],
+ [
+ "9789.96",
+ "0.00077275"
+ ],
+ [
+ "9790.00",
+ "1.87420726"
+ ],
+ [
+ "9790.13",
+ "0.00076087"
+ ],
+ [
+ "9791.18",
+ "0.00079211"
+ ],
+ [
+ "9791.60",
+ "0.38800000"
+ ],
+ [
+ "9791.65",
+ "0.01450000"
+ ],
+ [
+ "9792.88",
+ "0.00078383"
+ ],
+ [
+ "9792.90",
+ "0.00074506"
+ ],
+ [
+ "9793.13",
+ "0.00075358"
+ ],
+ [
+ "9793.25",
+ "0.00077453"
+ ],
+ [
+ "9793.28",
+ "0.00075197"
+ ],
+ [
+ "9794.04",
+ "0.00150986"
+ ],
+ [
+ "9794.06",
+ "0.00073804"
+ ],
+ [
+ "9794.51",
+ "0.00080689"
+ ],
+ [
+ "9794.85",
+ "0.00073995"
+ ],
+ [
+ "9795.63",
+ "0.00073805"
+ ],
+ [
+ "9795.71",
+ "0.00078750"
+ ],
+ [
+ "9796.39",
+ "0.00076749"
+ ],
+ [
+ "9796.92",
+ "0.00074502"
+ ],
+ [
+ "9796.96",
+ "0.00078430"
+ ],
+ [
+ "9797.00",
+ "16.82160000"
+ ],
+ [
+ "9798.00",
+ "13.00000000"
+ ],
+ [
+ "9799.61",
+ "0.00080615"
+ ],
+ [
+ "9799.71",
+ "0.00078276"
+ ],
+ [
+ "9800.00",
+ "14.31231003"
+ ],
+ [
+ "9800.01",
+ "0.00084838"
+ ],
+ [
+ "9800.35",
+ "0.00074243"
+ ],
+ [
+ "9800.41",
+ "0.03362481"
+ ],
+ [
+ "9800.43",
+ "0.00077568"
+ ],
+ [
+ "9800.82",
+ "0.00075890"
+ ],
+ [
+ "9800.93",
+ "0.00075171"
+ ],
+ [
+ "9801.23",
+ "0.00075527"
+ ],
+ [
+ "9801.32",
+ "0.00075443"
+ ],
+ [
+ "9802.70",
+ "0.00077166"
+ ],
+ [
+ "9803.10",
+ "0.00074036"
+ ],
+ [
+ "9803.17",
+ "0.00082225"
+ ],
+ [
+ "9803.59",
+ "0.00085201"
+ ],
+ [
+ "9803.60",
+ "0.00077070"
+ ],
+ [
+ "9803.61",
+ "0.00073821"
+ ],
+ [
+ "9804.22",
+ "0.00118989"
+ ],
+ [
+ "9805.07",
+ "0.00075510"
+ ],
+ [
+ "9805.14",
+ "0.00078383"
+ ],
+ [
+ "9805.43",
+ "0.00085411"
+ ],
+ [
+ "9806.37",
+ "0.00157765"
+ ],
+ [
+ "9806.41",
+ "0.00078601"
+ ],
+ [
+ "9806.46",
+ "0.00313468"
+ ],
+ [
+ "9806.96",
+ "0.00074015"
+ ],
+ [
+ "9807.00",
+ "0.02000000"
+ ],
+ [
+ "9807.35",
+ "0.00074610"
+ ],
+ [
+ "9807.78",
+ "0.00077916"
+ ],
+ [
+ "9807.90",
+ "0.00073252"
+ ],
+ [
+ "9808.02",
+ "0.00085190"
+ ],
+ [
+ "9808.09",
+ "0.00074096"
+ ],
+ [
+ "9808.29",
+ "0.00078242"
+ ],
+ [
+ "9808.33",
+ "0.00077450"
+ ],
+ [
+ "9808.35",
+ "0.00077343"
+ ],
+ [
+ "9808.79",
+ "0.00077224"
+ ],
+ [
+ "9809.00",
+ "0.15000000"
+ ],
+ [
+ "9810.00",
+ "0.00099000"
+ ],
+ [
+ "9810.36",
+ "0.00075802"
+ ],
+ [
+ "9810.43",
+ "0.00077039"
+ ],
+ [
+ "9810.99",
+ "0.00075097"
+ ],
+ [
+ "9812.00",
+ "0.06000000"
+ ],
+ [
+ "9812.19",
+ "0.01416000"
+ ],
+ [
+ "9812.28",
+ "0.00079040"
+ ],
+ [
+ "9812.52",
+ "0.00075399"
+ ],
+ [
+ "9812.60",
+ "0.25800000"
+ ],
+ [
+ "9813.00",
+ "0.11000000"
+ ],
+ [
+ "9813.41",
+ "0.00079659"
+ ],
+ [
+ "9813.60",
+ "0.00074270"
+ ],
+ [
+ "9813.95",
+ "0.00074154"
+ ],
+ [
+ "9814.32",
+ "0.00086876"
+ ],
+ [
+ "9814.48",
+ "0.00075253"
+ ],
+ [
+ "9814.51",
+ "0.00359607"
+ ],
+ [
+ "9814.70",
+ "0.00075063"
+ ],
+ [
+ "9815.00",
+ "0.12000000"
+ ],
+ [
+ "9815.23",
+ "0.00078085"
+ ],
+ [
+ "9815.74",
+ "0.00078410"
+ ],
+ [
+ "9815.77",
+ "0.00074300"
+ ],
+ [
+ "9816.00",
+ "0.15111150"
+ ],
+ [
+ "9816.61",
+ "0.00082015"
+ ],
+ [
+ "9816.96",
+ "0.00073977"
+ ],
+ [
+ "9817.15",
+ "0.00077530"
+ ],
+ [
+ "9817.85",
+ "0.00075000"
+ ],
+ [
+ "9817.92",
+ "0.00085519"
+ ],
+ [
+ "9818.54",
+ "0.00076115"
+ ],
+ [
+ "9818.97",
+ "0.00074476"
+ ],
+ [
+ "9819.04",
+ "0.00077099"
+ ],
+ [
+ "9819.46",
+ "0.00075668"
+ ],
+ [
+ "9820.00",
+ "0.00782672"
+ ],
+ [
+ "9820.03",
+ "0.00154676"
+ ],
+ [
+ "9821.28",
+ "0.00075887"
+ ],
+ [
+ "9821.49",
+ "0.00078593"
+ ],
+ [
+ "9821.69",
+ "0.00081966"
+ ],
+ [
+ "9821.86",
+ "0.00074193"
+ ],
+ [
+ "9822.24",
+ "0.00083355"
+ ],
+ [
+ "9822.90",
+ "0.00076295"
+ ],
+ [
+ "9822.92",
+ "0.00075998"
+ ],
+ [
+ "9822.95",
+ "0.00074186"
+ ],
+ [
+ "9823.10",
+ "0.00076126"
+ ],
+ [
+ "9823.61",
+ "0.00080419"
+ ],
+ [
+ "9823.77",
+ "0.00077628"
+ ],
+ [
+ "9823.81",
+ "0.00428203"
+ ],
+ [
+ "9824.11",
+ "0.00075522"
+ ],
+ [
+ "9824.14",
+ "0.00075996"
+ ],
+ [
+ "9824.36",
+ "0.00078531"
+ ],
+ [
+ "9825.08",
+ "0.00075855"
+ ],
+ [
+ "9825.39",
+ "0.00074929"
+ ],
+ [
+ "9825.55",
+ "0.00079051"
+ ],
+ [
+ "9825.66",
+ "0.00074308"
+ ],
+ [
+ "9825.91",
+ "0.00074860"
+ ],
+ [
+ "9826.69",
+ "0.00077742"
+ ],
+ [
+ "9827.00",
+ "0.02000000"
+ ],
+ [
+ "9828.00",
+ "1.08719384"
+ ],
+ [
+ "9828.06",
+ "0.00078921"
+ ],
+ [
+ "9828.48",
+ "0.00077321"
+ ],
+ [
+ "9828.69",
+ "0.00078128"
+ ],
+ [
+ "9828.80",
+ "0.00073039"
+ ],
+ [
+ "9829.13",
+ "0.00077312"
+ ],
+ [
+ "9829.31",
+ "0.00074386"
+ ],
+ [
+ "9829.33",
+ "0.00077313"
+ ],
+ [
+ "9830.00",
+ "0.02974119"
+ ],
+ [
+ "9831.00",
+ "0.25000000"
+ ],
+ [
+ "9831.58",
+ "0.00075128"
+ ],
+ [
+ "9832.00",
+ "0.39000000"
+ ],
+ [
+ "9832.25",
+ "0.00074604"
+ ],
+ [
+ "9832.83",
+ "0.00072899"
+ ],
+ [
+ "9832.99",
+ "0.00074110"
+ ],
+ [
+ "9833.17",
+ "0.00085049"
+ ],
+ [
+ "9833.69",
+ "0.00077598"
+ ],
+ [
+ "9834.25",
+ "0.00075334"
+ ],
+ [
+ "9834.56",
+ "0.00075092"
+ ],
+ [
+ "9834.90",
+ "0.00076099"
+ ],
+ [
+ "9835.93",
+ "0.00074269"
+ ],
+ [
+ "9836.09",
+ "0.00075300"
+ ],
+ [
+ "9836.31",
+ "0.00073785"
+ ],
+ [
+ "9836.34",
+ "0.12113000"
+ ],
+ [
+ "9836.64",
+ "0.00080725"
+ ],
+ [
+ "9836.76",
+ "0.00074528"
+ ],
+ [
+ "9836.96",
+ "0.00078041"
+ ],
+ [
+ "9837.22",
+ "0.00075723"
+ ],
+ [
+ "9837.29",
+ "0.00076879"
+ ],
+ [
+ "9837.30",
+ "0.00159656"
+ ],
+ [
+ "9837.50",
+ "0.00074800"
+ ],
+ [
+ "9837.73",
+ "0.00074568"
+ ],
+ [
+ "9838.92",
+ "0.00076239"
+ ],
+ [
+ "9839.09",
+ "0.00075945"
+ ],
+ [
+ "9839.61",
+ "0.00074256"
+ ],
+ [
+ "9839.68",
+ "0.00077388"
+ ],
+ [
+ "9840.05",
+ "0.00151428"
+ ],
+ [
+ "9840.13",
+ "0.00076766"
+ ],
+ [
+ "9841.00",
+ "0.00296232"
+ ],
+ [
+ "9841.38",
+ "0.00073822"
+ ],
+ [
+ "9841.46",
+ "0.00085008"
+ ],
+ [
+ "9841.67",
+ "0.00076147"
+ ],
+ [
+ "9841.69",
+ "0.00074829"
+ ],
+ [
+ "9841.94",
+ "0.00436279"
+ ],
+ [
+ "9841.99",
+ "0.00076673"
+ ],
+ [
+ "9842.09",
+ "0.00074672"
+ ],
+ [
+ "9842.39",
+ "0.00076953"
+ ],
+ [
+ "9842.54",
+ "0.00077290"
+ ],
+ [
+ "9843.00",
+ "0.11000000"
+ ],
+ [
+ "9843.51",
+ "0.00074620"
+ ],
+ [
+ "9843.66",
+ "0.00074123"
+ ],
+ [
+ "9843.77",
+ "0.00075987"
+ ],
+ [
+ "9843.99",
+ "0.00075143"
+ ],
+ [
+ "9844.13",
+ "0.00076012"
+ ],
+ [
+ "9844.45",
+ "0.00077313"
+ ],
+ [
+ "9844.62",
+ "0.00074952"
+ ],
+ [
+ "9844.74",
+ "0.00078343"
+ ],
+ [
+ "9845.00",
+ "0.15000000"
+ ],
+ [
+ "9845.25",
+ "0.00077174"
+ ],
+ [
+ "9845.39",
+ "0.00080610"
+ ],
+ [
+ "9845.70",
+ "0.10000000"
+ ],
+ [
+ "9846.01",
+ "0.00081818"
+ ],
+ [
+ "9846.22",
+ "0.00077015"
+ ],
+ [
+ "9847.00",
+ "0.02000000"
+ ],
+ [
+ "9847.12",
+ "0.00074280"
+ ],
+ [
+ "9847.36",
+ "0.00077085"
+ ],
+ [
+ "9847.74",
+ "0.00074458"
+ ],
+ [
+ "9847.85",
+ "0.00073597"
+ ],
+ [
+ "9848.00",
+ "0.15000000"
+ ],
+ [
+ "9848.25",
+ "0.20000000"
+ ],
+ [
+ "9848.26",
+ "0.00076585"
+ ],
+ [
+ "9848.27",
+ "0.00074598"
+ ],
+ [
+ "9848.79",
+ "0.00083542"
+ ],
+ [
+ "9849.00",
+ "0.05000000"
+ ],
+ [
+ "9849.49",
+ "0.67355936"
+ ],
+ [
+ "9849.78",
+ "0.00075163"
+ ],
+ [
+ "9850.00",
+ "0.28698011"
+ ],
+ [
+ "9850.87",
+ "0.00074278"
+ ],
+ [
+ "9851.59",
+ "0.00073811"
+ ],
+ [
+ "9851.75",
+ "0.00077729"
+ ],
+ [
+ "9851.92",
+ "0.00074702"
+ ],
+ [
+ "9852.58",
+ "0.00074328"
+ ],
+ [
+ "9852.69",
+ "0.00083951"
+ ],
+ [
+ "9852.84",
+ "0.00074978"
+ ],
+ [
+ "9852.89",
+ "0.00078363"
+ ],
+ [
+ "9853.54",
+ "0.00074270"
+ ],
+ [
+ "9854.16",
+ "0.00079036"
+ ],
+ [
+ "9854.40",
+ "0.00082183"
+ ],
+ [
+ "9854.79",
+ "0.00073138"
+ ],
+ [
+ "9855.00",
+ "0.13000000"
+ ],
+ [
+ "9855.34",
+ "0.00073349"
+ ],
+ [
+ "9855.53",
+ "0.23439342"
+ ],
+ [
+ "9856.00",
+ "0.01074602"
+ ],
+ [
+ "9856.51",
+ "0.00074829"
+ ],
+ [
+ "9857.30",
+ "0.00077146"
+ ],
+ [
+ "9857.36",
+ "0.00074983"
+ ],
+ [
+ "9857.45",
+ "0.00075955"
+ ],
+ [
+ "9857.66",
+ "0.00073851"
+ ],
+ [
+ "9857.84",
+ "0.00075351"
+ ],
+ [
+ "9857.93",
+ "0.00075511"
+ ],
+ [
+ "9858.00",
+ "1.08719384"
+ ],
+ [
+ "9858.13",
+ "0.00079256"
+ ],
+ [
+ "9858.29",
+ "0.00075241"
+ ],
+ [
+ "9858.56",
+ "0.00078739"
+ ],
+ [
+ "9858.68",
+ "0.00074629"
+ ],
+ [
+ "9858.75",
+ "0.00073727"
+ ],
+ [
+ "9858.97",
+ "0.00080436"
+ ],
+ [
+ "9859.00",
+ "30.00000000"
+ ],
+ [
+ "9859.68",
+ "0.00078172"
+ ],
+ [
+ "9859.75",
+ "0.00081569"
+ ],
+ [
+ "9859.95",
+ "0.00073090"
+ ],
+ [
+ "9860.12",
+ "0.00079304"
+ ],
+ [
+ "9860.77",
+ "0.00076123"
+ ],
+ [
+ "9860.96",
+ "0.00078316"
+ ],
+ [
+ "9861.41",
+ "0.00078327"
+ ],
+ [
+ "9861.95",
+ "0.00077151"
+ ],
+ [
+ "9862.58",
+ "0.00074728"
+ ],
+ [
+ "9863.44",
+ "0.00075388"
+ ],
+ [
+ "9863.54",
+ "0.00073408"
+ ],
+ [
+ "9863.57",
+ "0.00075512"
+ ],
+ [
+ "9863.87",
+ "0.00074594"
+ ],
+ [
+ "9864.11",
+ "0.00075355"
+ ],
+ [
+ "9864.45",
+ "0.00079274"
+ ],
+ [
+ "9864.81",
+ "0.25000000"
+ ],
+ [
+ "9865.00",
+ "0.13316482"
+ ],
+ [
+ "9865.51",
+ "0.00084123"
+ ],
+ [
+ "9865.89",
+ "0.00075043"
+ ],
+ [
+ "9866.00",
+ "0.15076394"
+ ],
+ [
+ "9866.45",
+ "0.00075312"
+ ],
+ [
+ "9867.00",
+ "0.02000000"
+ ],
+ [
+ "9867.61",
+ "0.00075312"
+ ],
+ [
+ "9867.74",
+ "0.00078410"
+ ],
+ [
+ "9868.00",
+ "0.10000000"
+ ],
+ [
+ "9868.99",
+ "0.00073901"
+ ],
+ [
+ "9869.55",
+ "0.00075562"
+ ],
+ [
+ "9869.69",
+ "0.00085529"
+ ],
+ [
+ "9870.00",
+ "0.12000000"
+ ],
+ [
+ "9870.10",
+ "0.00077071"
+ ],
+ [
+ "9870.79",
+ "0.00076128"
+ ],
+ [
+ "9870.80",
+ "0.00075577"
+ ],
+ [
+ "9870.99",
+ "0.00077544"
+ ],
+ [
+ "9871.31",
+ "0.00075832"
+ ],
+ [
+ "9871.81",
+ "0.00073381"
+ ],
+ [
+ "9871.99",
+ "0.00076110"
+ ],
+ [
+ "9872.29",
+ "0.00072924"
+ ],
+ [
+ "9872.32",
+ "0.00078005"
+ ],
+ [
+ "9872.34",
+ "0.00075792"
+ ],
+ [
+ "9872.51",
+ "0.00079421"
+ ],
+ [
+ "9873.01",
+ "0.00084012"
+ ],
+ [
+ "9873.29",
+ "0.00073584"
+ ],
+ [
+ "9873.32",
+ "0.00075658"
+ ],
+ [
+ "9874.11",
+ "0.00075680"
+ ],
+ [
+ "9874.41",
+ "0.00073741"
+ ],
+ [
+ "9874.84",
+ "0.00075928"
+ ],
+ [
+ "9875.09",
+ "0.00075760"
+ ],
+ [
+ "9875.16",
+ "0.00078285"
+ ],
+ [
+ "9875.75",
+ "0.00076452"
+ ],
+ [
+ "9875.79",
+ "0.00077482"
+ ],
+ [
+ "9876.87",
+ "0.14000000"
+ ],
+ [
+ "9877.75",
+ "0.00074404"
+ ],
+ [
+ "9877.81",
+ "0.00074864"
+ ],
+ [
+ "9878.03",
+ "0.00073748"
+ ],
+ [
+ "9878.11",
+ "0.00081460"
+ ],
+ [
+ "9878.69",
+ "0.00073846"
+ ],
+ [
+ "9878.76",
+ "0.00073101"
+ ],
+ [
+ "9878.82",
+ "0.00076903"
+ ],
+ [
+ "9879.00",
+ "0.10000000"
+ ],
+ [
+ "9879.21",
+ "0.00082017"
+ ],
+ [
+ "9879.43",
+ "0.00077171"
+ ],
+ [
+ "9879.48",
+ "0.00307493"
+ ],
+ [
+ "9879.61",
+ "0.00073239"
+ ],
+ [
+ "9879.65",
+ "0.00077221"
+ ],
+ [
+ "9880.00",
+ "0.15000000"
+ ],
+ [
+ "9880.08",
+ "0.00072888"
+ ],
+ [
+ "9881.67",
+ "0.00073568"
+ ],
+ [
+ "9881.86",
+ "0.00072950"
+ ],
+ [
+ "9881.93",
+ "0.13500000"
+ ],
+ [
+ "9882.16",
+ "0.00074721"
+ ],
+ [
+ "9882.51",
+ "0.00078317"
+ ],
+ [
+ "9882.57",
+ "0.00075009"
+ ],
+ [
+ "9883.28",
+ "0.01995365"
+ ],
+ [
+ "9883.57",
+ "0.00075417"
+ ],
+ [
+ "9883.62",
+ "0.00078129"
+ ],
+ [
+ "9883.87",
+ "0.00074595"
+ ],
+ [
+ "9883.92",
+ "0.00074610"
+ ],
+ [
+ "9884.33",
+ "0.41920755"
+ ],
+ [
+ "9884.95",
+ "0.00075109"
+ ],
+ [
+ "9885.23",
+ "0.00073810"
+ ],
+ [
+ "9885.75",
+ "0.00074770"
+ ],
+ [
+ "9885.96",
+ "0.00078338"
+ ],
+ [
+ "9886.20",
+ "0.05000000"
+ ],
+ [
+ "9886.41",
+ "0.00075122"
+ ],
+ [
+ "9886.44",
+ "0.00078469"
+ ],
+ [
+ "9886.46",
+ "0.00074617"
+ ],
+ [
+ "9886.53",
+ "0.00078401"
+ ],
+ [
+ "9886.91",
+ "0.00079538"
+ ],
+ [
+ "9887.00",
+ "1.02000000"
+ ],
+ [
+ "9887.15",
+ "0.00075762"
+ ],
+ [
+ "9887.23",
+ "0.00307840"
+ ],
+ [
+ "9887.64",
+ "0.00075670"
+ ],
+ [
+ "9887.78",
+ "0.00075642"
+ ],
+ [
+ "9888.00",
+ "3.56277548"
+ ],
+ [
+ "9889.00",
+ "0.01000000"
+ ],
+ [
+ "9889.14",
+ "0.00079009"
+ ],
+ [
+ "9889.32",
+ "0.00076334"
+ ],
+ [
+ "9889.52",
+ "0.00072964"
+ ],
+ [
+ "9889.99",
+ "0.05060000"
+ ],
+ [
+ "9890.00",
+ "0.15000000"
+ ],
+ [
+ "9890.83",
+ "0.00077228"
+ ],
+ [
+ "9892.07",
+ "0.00075991"
+ ],
+ [
+ "9892.34",
+ "0.00074394"
+ ],
+ [
+ "9893.00",
+ "0.23327939"
+ ],
+ [
+ "9894.02",
+ "0.09900000"
+ ],
+ [
+ "9894.62",
+ "0.00077385"
+ ],
+ [
+ "9895.06",
+ "0.00077269"
+ ],
+ [
+ "9895.09",
+ "0.00074335"
+ ],
+ [
+ "9895.79",
+ "0.00076366"
+ ],
+ [
+ "9895.82",
+ "0.00146538"
+ ],
+ [
+ "9896.31",
+ "0.00074220"
+ ],
+ [
+ "9896.44",
+ "0.00073947"
+ ],
+ [
+ "9896.86",
+ "0.00075295"
+ ],
+ [
+ "9897.27",
+ "0.00074919"
+ ],
+ [
+ "9897.33",
+ "0.00075624"
+ ],
+ [
+ "9897.35",
+ "0.00074845"
+ ],
+ [
+ "9897.43",
+ "0.01532721"
+ ],
+ [
+ "9897.81",
+ "0.00077140"
+ ],
+ [
+ "9898.00",
+ "0.10000000"
+ ],
+ [
+ "9898.02",
+ "0.21000000"
+ ],
+ [
+ "9898.18",
+ "1.23002790"
+ ],
+ [
+ "9898.27",
+ "0.00078998"
+ ],
+ [
+ "9898.35",
+ "0.00076091"
+ ],
+ [
+ "9898.83",
+ "0.28700000"
+ ],
+ [
+ "9898.86",
+ "0.62808448"
+ ],
+ [
+ "9899.00",
+ "0.55000000"
+ ],
+ [
+ "9899.02",
+ "0.00075412"
+ ],
+ [
+ "9899.29",
+ "0.00073983"
+ ],
+ [
+ "9899.94",
+ "0.00075631"
+ ],
+ [
+ "9900.00",
+ "9.02819971"
+ ],
+ [
+ "9900.03",
+ "0.00075982"
+ ],
+ [
+ "9900.38",
+ "0.00075712"
+ ],
+ [
+ "9900.49",
+ "0.00075327"
+ ],
+ [
+ "9901.27",
+ "0.00076426"
+ ],
+ [
+ "9901.43",
+ "0.00087954"
+ ],
+ [
+ "9901.60",
+ "0.00078313"
+ ],
+ [
+ "9901.92",
+ "0.00077895"
+ ],
+ [
+ "9902.36",
+ "0.00074119"
+ ],
+ [
+ "9902.63",
+ "0.00152537"
+ ],
+ [
+ "9902.92",
+ "0.00076521"
+ ],
+ [
+ "9903.20",
+ "0.00250000"
+ ],
+ [
+ "9903.79",
+ "0.00076867"
+ ],
+ [
+ "9904.00",
+ "0.45000000"
+ ],
+ [
+ "9904.79",
+ "0.00073011"
+ ],
+ [
+ "9905.19",
+ "0.00077515"
+ ],
+ [
+ "9905.60",
+ "0.54400000"
+ ],
+ [
+ "9905.72",
+ "0.00075691"
+ ],
+ [
+ "9905.84",
+ "0.00077178"
+ ],
+ [
+ "9906.14",
+ "0.00074613"
+ ],
+ [
+ "9906.15",
+ "0.00078518"
+ ],
+ [
+ "9907.00",
+ "0.02000000"
+ ],
+ [
+ "9907.10",
+ "0.78178268"
+ ],
+ [
+ "9908.03",
+ "0.00077565"
+ ],
+ [
+ "9908.19",
+ "0.00078275"
+ ],
+ [
+ "9908.33",
+ "0.00078174"
+ ],
+ [
+ "9908.67",
+ "0.00079463"
+ ],
+ [
+ "9908.73",
+ "0.00073385"
+ ],
+ [
+ "9909.53",
+ "0.00073975"
+ ],
+ [
+ "9910.00",
+ "0.01585000"
+ ],
+ [
+ "9910.28",
+ "0.00074196"
+ ],
+ [
+ "9910.66",
+ "0.00078928"
+ ],
+ [
+ "9910.83",
+ "0.00084232"
+ ],
+ [
+ "9911.10",
+ "0.00075372"
+ ],
+ [
+ "9911.70",
+ "0.00075611"
+ ],
+ [
+ "9911.73",
+ "0.00078670"
+ ],
+ [
+ "9912.19",
+ "0.00073968"
+ ],
+ [
+ "9912.50",
+ "0.00076435"
+ ],
+ [
+ "9912.98",
+ "0.00077393"
+ ],
+ [
+ "9913.05",
+ "0.00075791"
+ ],
+ [
+ "9913.12",
+ "0.00084852"
+ ],
+ [
+ "9914.22",
+ "0.00084808"
+ ],
+ [
+ "9914.26",
+ "0.30000000"
+ ],
+ [
+ "9914.44",
+ "0.00074064"
+ ],
+ [
+ "9915.05",
+ "0.00082128"
+ ],
+ [
+ "9915.15",
+ "0.00075762"
+ ],
+ [
+ "9915.44",
+ "0.00073082"
+ ],
+ [
+ "9915.46",
+ "0.00074860"
+ ],
+ [
+ "9916.00",
+ "0.13219829"
+ ],
+ [
+ "9916.12",
+ "0.00078349"
+ ],
+ [
+ "9917.12",
+ "0.00076289"
+ ],
+ [
+ "9918.79",
+ "0.00074926"
+ ],
+ [
+ "9919.00",
+ "0.00144400"
+ ],
+ [
+ "9919.06",
+ "0.00072644"
+ ],
+ [
+ "9919.29",
+ "0.00074210"
+ ],
+ [
+ "9919.87",
+ "0.00072590"
+ ],
+ [
+ "9920.59",
+ "0.00078282"
+ ],
+ [
+ "9921.41",
+ "0.00073762"
+ ],
+ [
+ "9921.91",
+ "0.00076967"
+ ],
+ [
+ "9922.09",
+ "0.00075682"
+ ],
+ [
+ "9922.14",
+ "0.00075280"
+ ],
+ [
+ "9922.66",
+ "0.00073071"
+ ],
+ [
+ "9923.15",
+ "0.00072455"
+ ],
+ [
+ "9923.35",
+ "0.00072372"
+ ],
+ [
+ "9923.79",
+ "0.00075179"
+ ],
+ [
+ "9923.95",
+ "0.00077036"
+ ],
+ [
+ "9924.10",
+ "0.13169107"
+ ],
+ [
+ "9924.45",
+ "0.00075805"
+ ],
+ [
+ "9924.73",
+ "0.00076360"
+ ],
+ [
+ "9925.00",
+ "0.12101538"
+ ],
+ [
+ "9925.56",
+ "0.00074693"
+ ],
+ [
+ "9925.58",
+ "0.00073006"
+ ],
+ [
+ "9926.11",
+ "0.00072760"
+ ],
+ [
+ "9926.20",
+ "0.00073365"
+ ],
+ [
+ "9927.00",
+ "0.02000000"
+ ],
+ [
+ "9927.15",
+ "0.00077799"
+ ],
+ [
+ "9927.84",
+ "0.00075125"
+ ],
+ [
+ "9927.99",
+ "0.00073850"
+ ],
+ [
+ "9928.07",
+ "0.00074932"
+ ],
+ [
+ "9928.28",
+ "3.00000000"
+ ],
+ [
+ "9928.29",
+ "0.00072614"
+ ],
+ [
+ "9928.73",
+ "0.00074275"
+ ],
+ [
+ "9928.83",
+ "0.00075184"
+ ],
+ [
+ "9929.14",
+ "0.00076778"
+ ],
+ [
+ "9929.15",
+ "0.00075326"
+ ],
+ [
+ "9929.31",
+ "0.00075635"
+ ],
+ [
+ "9929.38",
+ "0.00075014"
+ ],
+ [
+ "9929.79",
+ "0.00075847"
+ ],
+ [
+ "9930.00",
+ "0.09829421"
+ ],
+ [
+ "9930.02",
+ "0.10516128"
+ ],
+ [
+ "9931.08",
+ "0.00074880"
+ ],
+ [
+ "9931.32",
+ "0.00079168"
+ ],
+ [
+ "9931.40",
+ "0.00074921"
+ ],
+ [
+ "9931.47",
+ "0.00085125"
+ ],
+ [
+ "9931.87",
+ "0.00082608"
+ ],
+ [
+ "9931.91",
+ "0.00075312"
+ ],
+ [
+ "9932.21",
+ "0.00077244"
+ ],
+ [
+ "9932.72",
+ "0.00072517"
+ ],
+ [
+ "9932.95",
+ "0.00082811"
+ ],
+ [
+ "9932.99",
+ "0.00074729"
+ ],
+ [
+ "9933.00",
+ "0.00077049"
+ ],
+ [
+ "9933.06",
+ "0.00074230"
+ ],
+ [
+ "9934.71",
+ "0.00072267"
+ ],
+ [
+ "9934.75",
+ "0.00075621"
+ ],
+ [
+ "9935.67",
+ "0.00079348"
+ ],
+ [
+ "9936.31",
+ "0.00074009"
+ ],
+ [
+ "9936.46",
+ "0.00073207"
+ ],
+ [
+ "9936.99",
+ "0.00076736"
+ ],
+ [
+ "9937.06",
+ "0.00077800"
+ ],
+ [
+ "9937.40",
+ "0.00073802"
+ ],
+ [
+ "9937.62",
+ "0.00075115"
+ ],
+ [
+ "9937.69",
+ "0.00075622"
+ ],
+ [
+ "9938.19",
+ "0.00073548"
+ ],
+ [
+ "9938.36",
+ "0.00075562"
+ ],
+ [
+ "9939.00",
+ "0.34000000"
+ ],
+ [
+ "9939.17",
+ "0.00073229"
+ ],
+ [
+ "9939.30",
+ "0.00078507"
+ ],
+ [
+ "9939.40",
+ "0.00075754"
+ ],
+ [
+ "9939.74",
+ "0.00073887"
+ ],
+ [
+ "9939.77",
+ "0.00074633"
+ ],
+ [
+ "9940.00",
+ "0.49215649"
+ ],
+ [
+ "9940.51",
+ "0.00076409"
+ ],
+ [
+ "9940.72",
+ "0.00075888"
+ ],
+ [
+ "9940.95",
+ "0.00084448"
+ ],
+ [
+ "9941.24",
+ "0.00075124"
+ ],
+ [
+ "9941.29",
+ "0.00075203"
+ ],
+ [
+ "9941.54",
+ "0.00075097"
+ ],
+ [
+ "9941.56",
+ "0.00085904"
+ ],
+ [
+ "9941.98",
+ "0.00074046"
+ ],
+ [
+ "9942.00",
+ "0.25000000"
+ ],
+ [
+ "9942.07",
+ "0.00077278"
+ ],
+ [
+ "9942.33",
+ "0.00074817"
+ ],
+ [
+ "9942.52",
+ "0.00079063"
+ ],
+ [
+ "9942.54",
+ "0.00078511"
+ ],
+ [
+ "9942.63",
+ "0.00155578"
+ ],
+ [
+ "9942.82",
+ "0.00072695"
+ ],
+ [
+ "9942.99",
+ "0.00083434"
+ ],
+ [
+ "9943.36",
+ "0.00077741"
+ ],
+ [
+ "9943.93",
+ "0.00052400"
+ ],
+ [
+ "9944.60",
+ "1.40200000"
+ ],
+ [
+ "9944.77",
+ "0.00072980"
+ ],
+ [
+ "9945.10",
+ "0.00072766"
+ ],
+ [
+ "9945.33",
+ "0.00084458"
+ ],
+ [
+ "9945.35",
+ "0.00073010"
+ ],
+ [
+ "9945.72",
+ "0.00073268"
+ ],
+ [
+ "9946.02",
+ "0.00072844"
+ ],
+ [
+ "9946.65",
+ "0.00079260"
+ ],
+ [
+ "9947.00",
+ "0.02000000"
+ ],
+ [
+ "9947.39",
+ "0.01448722"
+ ],
+ [
+ "9947.99",
+ "0.00082169"
+ ],
+ [
+ "9948.34",
+ "0.00077620"
+ ],
+ [
+ "9948.38",
+ "0.00079315"
+ ],
+ [
+ "9948.58",
+ "0.00073499"
+ ],
+ [
+ "9948.62",
+ "0.00072179"
+ ],
+ [
+ "9948.97",
+ "0.20000000"
+ ],
+ [
+ "9949.49",
+ "0.01000000"
+ ],
+ [
+ "9949.98",
+ "0.00425356"
+ ],
+ [
+ "9950.00",
+ "1.94233565"
+ ],
+ [
+ "9950.24",
+ "0.04254892"
+ ],
+ [
+ "9952.48",
+ "0.00079377"
+ ],
+ [
+ "9955.00",
+ "0.47257715"
+ ],
+ [
+ "9957.00",
+ "0.07500000"
+ ],
+ [
+ "9959.25",
+ "1.00000000"
+ ],
+ [
+ "9960.00",
+ "0.30000000"
+ ],
+ [
+ "9962.48",
+ "0.00079298"
+ ],
+ [
+ "9967.00",
+ "0.02000000"
+ ],
+ [
+ "9968.88",
+ "0.50000000"
+ ],
+ [
+ "9971.71",
+ "0.00200000"
+ ],
+ [
+ "9972.48",
+ "0.00079218"
+ ],
+ [
+ "9973.00",
+ "0.04693600"
+ ],
+ [
+ "9975.00",
+ "0.01388600"
+ ],
+ [
+ "9976.47",
+ "0.01138758"
+ ],
+ [
+ "9977.00",
+ "0.10000000"
+ ],
+ [
+ "9977.56",
+ "0.10000000"
+ ],
+ [
+ "9978.00",
+ "0.14077823"
+ ],
+ [
+ "9978.67",
+ "0.00206066"
+ ],
+ [
+ "9979.00",
+ "0.01000000"
+ ],
+ [
+ "9980.00",
+ "0.37300000"
+ ],
+ [
+ "9982.48",
+ "0.00079139"
+ ],
+ [
+ "9982.87",
+ "0.01000000"
+ ],
+ [
+ "9983.67",
+ "0.10000000"
+ ],
+ [
+ "9984.00",
+ "0.10000000"
+ ],
+ [
+ "9985.00",
+ "0.09506256"
+ ],
+ [
+ "9987.00",
+ "0.03000000"
+ ],
+ [
+ "9988.00",
+ "0.02700000"
+ ],
+ [
+ "9988.70",
+ "0.28266378"
+ ],
+ [
+ "9989.00",
+ "0.74949967"
+ ],
+ [
+ "9989.01",
+ "0.07000000"
+ ],
+ [
+ "9990.00",
+ "0.06353699"
+ ],
+ [
+ "9990.75",
+ "0.00311701"
+ ],
+ [
+ "9990.98",
+ "0.01101176"
+ ],
+ [
+ "9992.48",
+ "0.00079059"
+ ],
+ [
+ "9993.00",
+ "30.76337925"
+ ],
+ [
+ "9995.00",
+ "0.02161245"
+ ],
+ [
+ "9998.00",
+ "0.75000000"
+ ],
+ [
+ "9998.98",
+ "2.00000000"
+ ],
+ [
+ "9999.00",
+ "10.08023955"
+ ],
+ [
+ "9999.50",
+ "0.76294726"
+ ],
+ [
+ "9999.52",
+ "0.01000000"
+ ],
+ [
+ "9999.95",
+ "0.00441272"
+ ],
+ [
+ "9999.99",
+ "1.49786458"
+ ],
+ [
+ "10000.00",
+ "30.21110565"
+ ],
+ [
+ "10001.00",
+ "0.02000000"
+ ],
+ [
+ "10001.67",
+ "0.89736402"
+ ],
+ [
+ "10002.75",
+ "0.01000000"
+ ],
+ [
+ "10004.03",
+ "0.00111468"
+ ],
+ [
+ "10004.88",
+ "0.00078961"
+ ],
+ [
+ "10007.00",
+ "0.02000000"
+ ],
+ [
+ "10008.22",
+ "0.29950814"
+ ],
+ [
+ "10009.46",
+ "0.01410000"
+ ],
+ [
+ "10010.00",
+ "0.00080000"
+ ],
+ [
+ "10014.92",
+ "0.00212899"
+ ],
+ [
+ "10017.28",
+ "0.00078864"
+ ],
+ [
+ "10020.00",
+ "0.00499900"
+ ],
+ [
+ "10022.00",
+ "4.63670162"
+ ],
+ [
+ "10025.00",
+ "0.10000000"
+ ],
+ [
+ "10027.00",
+ "0.02000000"
+ ],
+ [
+ "10029.68",
+ "0.00078766"
+ ],
+ [
+ "10042.08",
+ "0.00078669"
+ ],
+ [
+ "10045.00",
+ "0.01607982"
+ ],
+ [
+ "10047.00",
+ "0.02000000"
+ ],
+ [
+ "10048.24",
+ "0.06742918"
+ ],
+ [
+ "10048.50",
+ "1.00000000"
+ ],
+ [
+ "10050.00",
+ "0.20750815"
+ ],
+ [
+ "10050.88",
+ "0.01000000"
+ ],
+ [
+ "10054.32",
+ "0.04265755"
+ ],
+ [
+ "10054.48",
+ "0.00078572"
+ ],
+ [
+ "10054.93",
+ "0.14100000"
+ ],
+ [
+ "10065.00",
+ "0.01000000"
+ ],
+ [
+ "10066.88",
+ "0.00078475"
+ ],
+ [
+ "10067.00",
+ "0.02000000"
+ ],
+ [
+ "10068.15",
+ "0.00074600"
+ ],
+ [
+ "10069.18",
+ "0.00230312"
+ ],
+ [
+ "10071.02",
+ "0.21800000"
+ ],
+ [
+ "10071.83",
+ "0.29660000"
+ ],
+ [
+ "10074.00",
+ "1.62760600"
+ ],
+ [
+ "10076.22",
+ "0.00210729"
+ ],
+ [
+ "10077.00",
+ "0.47000000"
+ ],
+ [
+ "10078.60",
+ "0.37800000"
+ ],
+ [
+ "10079.28",
+ "0.00078379"
+ ],
+ [
+ "10080.00",
+ "0.00096700"
+ ],
+ [
+ "10087.00",
+ "0.02000000"
+ ],
+ [
+ "10089.00",
+ "0.06800000"
+ ],
+ [
+ "10090.00",
+ "0.11000000"
+ ],
+ [
+ "10090.52",
+ "0.04194101"
+ ],
+ [
+ "10091.68",
+ "0.00078282"
+ ],
+ [
+ "10092.85",
+ "0.00512739"
+ ],
+ [
+ "10097.00",
+ "0.03597260"
+ ],
+ [
+ "10097.60",
+ "0.41600000"
+ ],
+ [
+ "10098.80",
+ "0.10000000"
+ ],
+ [
+ "10099.98",
+ "1.00000000"
+ ],
+ [
+ "10100.00",
+ "0.87399565"
+ ],
+ [
+ "10101.00",
+ "0.11000000"
+ ],
+ [
+ "10101.01",
+ "0.02500000"
+ ],
+ [
+ "10104.08",
+ "0.00078186"
+ ],
+ [
+ "10107.00",
+ "0.02000000"
+ ],
+ [
+ "10110.00",
+ "0.00080000"
+ ],
+ [
+ "10116.48",
+ "0.00078090"
+ ],
+ [
+ "10122.00",
+ "0.17000000"
+ ],
+ [
+ "10127.00",
+ "0.02000000"
+ ],
+ [
+ "10128.88",
+ "0.00077995"
+ ],
+ [
+ "10141.09",
+ "0.44936062"
+ ],
+ [
+ "10141.28",
+ "0.00077899"
+ ],
+ [
+ "10141.47",
+ "0.16828063"
+ ],
+ [
+ "10142.99",
+ "0.00400000"
+ ],
+ [
+ "10143.00",
+ "0.17000000"
+ ],
+ [
+ "10145.85",
+ "0.01495193"
+ ],
+ [
+ "10147.00",
+ "0.02000000"
+ ],
+ [
+ "10150.00",
+ "0.50000000"
+ ],
+ [
+ "10152.17",
+ "0.14000000"
+ ],
+ [
+ "10153.68",
+ "0.00077804"
+ ],
+ [
+ "10166.08",
+ "0.00077709"
+ ],
+ [
+ "10167.00",
+ "0.02000000"
+ ],
+ [
+ "10169.00",
+ "0.00700000"
+ ],
+ [
+ "10170.30",
+ "0.00200000"
+ ],
+ [
+ "10171.00",
+ "0.03500000"
+ ],
+ [
+ "10178.48",
+ "0.00077615"
+ ],
+ [
+ "10178.72",
+ "0.00982442"
+ ],
+ [
+ "10180.00",
+ "0.08166116"
+ ],
+ [
+ "10186.86",
+ "0.05500000"
+ ],
+ [
+ "10187.00",
+ "0.02000000"
+ ],
+ [
+ "10198.99",
+ "1.00000000"
+ ],
+ [
+ "10199.00",
+ "7.71951250"
+ ],
+ [
+ "10200.00",
+ "1.44485096"
+ ],
+ [
+ "10200.73",
+ "0.12400000"
+ ],
+ [
+ "10207.00",
+ "0.02000000"
+ ],
+ [
+ "10210.00",
+ "0.00080000"
+ ],
+ [
+ "10212.00",
+ "0.38000000"
+ ],
+ [
+ "10221.00",
+ "0.70000000"
+ ],
+ [
+ "10224.71",
+ "0.00265124"
+ ],
+ [
+ "10225.00",
+ "0.03975986"
+ ],
+ [
+ "10227.00",
+ "0.02000000"
+ ],
+ [
+ "10230.00",
+ "0.15078173"
+ ],
+ [
+ "10234.00",
+ "0.08500000"
+ ],
+ [
+ "10237.00",
+ "0.05122809"
+ ],
+ [
+ "10239.22",
+ "0.01370000"
+ ],
+ [
+ "10242.40",
+ "0.00077130"
+ ],
+ [
+ "10244.83",
+ "0.30620000"
+ ],
+ [
+ "10247.00",
+ "0.02000000"
+ ],
+ [
+ "10248.98",
+ "1.00000000"
+ ],
+ [
+ "10250.00",
+ "1.01559140"
+ ],
+ [
+ "10250.60",
+ "0.43000000"
+ ],
+ [
+ "10251.60",
+ "0.39400000"
+ ],
+ [
+ "10254.80",
+ "0.00077037"
+ ],
+ [
+ "10260.00",
+ "0.09038209"
+ ],
+ [
+ "10267.00",
+ "0.02000000"
+ ],
+ [
+ "10267.20",
+ "0.00076944"
+ ],
+ [
+ "10279.60",
+ "0.00076851"
+ ],
+ [
+ "10285.00",
+ "0.01463000"
+ ],
+ [
+ "10287.00",
+ "0.02000000"
+ ],
+ [
+ "10290.00",
+ "0.10000000"
+ ],
+ [
+ "10292.00",
+ "0.00076759"
+ ],
+ [
+ "10293.00",
+ "0.00430000"
+ ],
+ [
+ "10298.99",
+ "1.00000000"
+ ],
+ [
+ "10300.00",
+ "5.24820958"
+ ],
+ [
+ "10307.00",
+ "0.02000000"
+ ],
+ [
+ "10310.00",
+ "0.00156923"
+ ],
+ [
+ "10318.00",
+ "0.00076565"
+ ],
+ [
+ "10322.00",
+ "1.60000000"
+ ],
+ [
+ "10327.00",
+ "0.02000000"
+ ],
+ [
+ "10330.00",
+ "5.00000000"
+ ],
+ [
+ "10331.00",
+ "0.00076469"
+ ],
+ [
+ "10331.55",
+ "0.00679903"
+ ],
+ [
+ "10333.65",
+ "0.00967712"
+ ],
+ [
+ "10336.00",
+ "0.45530203"
+ ],
+ [
+ "10344.00",
+ "0.00076373"
+ ],
+ [
+ "10345.00",
+ "0.60000000"
+ ],
+ [
+ "10347.00",
+ "0.02000000"
+ ],
+ [
+ "10348.42",
+ "0.00065400"
+ ],
+ [
+ "10350.00",
+ "0.03718282"
+ ],
+ [
+ "10357.00",
+ "0.00076277"
+ ],
+ [
+ "10366.00",
+ "0.07600000"
+ ],
+ [
+ "10367.00",
+ "0.02000000"
+ ],
+ [
+ "10370.00",
+ "0.00076181"
+ ],
+ [
+ "10377.00",
+ "0.05000000"
+ ],
+ [
+ "10383.00",
+ "0.00076086"
+ ],
+ [
+ "10383.65",
+ "0.00963167"
+ ],
+ [
+ "10387.00",
+ "0.02000000"
+ ],
+ [
+ "10388.00",
+ "1.60000000"
+ ],
+ [
+ "10396.00",
+ "0.02375991"
+ ],
+ [
+ "10399.00",
+ "0.24000000"
+ ],
+ [
+ "10400.00",
+ "2.58854813"
+ ],
+ [
+ "10403.60",
+ "0.10200000"
+ ],
+ [
+ "10407.00",
+ "0.02000000"
+ ],
+ [
+ "10407.01",
+ "0.01000000"
+ ],
+ [
+ "10409.00",
+ "0.00075896"
+ ],
+ [
+ "10410.00",
+ "0.00160000"
+ ],
+ [
+ "10414.00",
+ "0.00300000"
+ ],
+ [
+ "10417.83",
+ "0.31580000"
+ ],
+ [
+ "10422.00",
+ "0.00075801"
+ ],
+ [
+ "10424.60",
+ "0.41000000"
+ ],
+ [
+ "10427.00",
+ "0.02000000"
+ ],
+ [
+ "10431.74",
+ "0.00049800"
+ ],
+ [
+ "10435.00",
+ "0.00075707"
+ ],
+ [
+ "10445.00",
+ "0.70000000"
+ ],
+ [
+ "10446.10",
+ "0.00495400"
+ ],
+ [
+ "10447.00",
+ "0.02000000"
+ ],
+ [
+ "10448.00",
+ "0.00075613"
+ ],
+ [
+ "10448.97",
+ "0.25000000"
+ ],
+ [
+ "10450.00",
+ "0.00105964"
+ ],
+ [
+ "10453.55",
+ "0.46900000"
+ ],
+ [
+ "10455.00",
+ "0.02800000"
+ ],
+ [
+ "10466.00",
+ "0.05000000"
+ ],
+ [
+ "10467.00",
+ "0.02000000"
+ ],
+ [
+ "10470.00",
+ "0.00075713"
+ ],
+ [
+ "10477.89",
+ "0.01330000"
+ ],
+ [
+ "10480.50",
+ "0.00075378"
+ ],
+ [
+ "10486.32",
+ "0.03028585"
+ ],
+ [
+ "10487.00",
+ "0.02000000"
+ ],
+ [
+ "10493.50",
+ "0.00075285"
+ ],
+ [
+ "10498.34",
+ "0.01000000"
+ ],
+ [
+ "10498.98",
+ "1.00000000"
+ ],
+ [
+ "10499.00",
+ "1.00000000"
+ ],
+ [
+ "10500.00",
+ "24.54547265"
+ ],
+ [
+ "10502.69",
+ "0.27614953"
+ ],
+ [
+ "10506.50",
+ "0.00075192"
+ ],
+ [
+ "10507.00",
+ "0.02000000"
+ ],
+ [
+ "10508.64",
+ "0.05000000"
+ ],
+ [
+ "10510.00",
+ "0.00080000"
+ ],
+ [
+ "10511.00",
+ "0.09500000"
+ ],
+ [
+ "10513.36",
+ "0.03515055"
+ ],
+ [
+ "10519.50",
+ "0.00075099"
+ ],
+ [
+ "10521.00",
+ "0.25000000"
+ ],
+ [
+ "10527.00",
+ "0.02000000"
+ ],
+ [
+ "10530.00",
+ "0.00125700"
+ ],
+ [
+ "10532.50",
+ "0.00075006"
+ ],
+ [
+ "10533.65",
+ "0.00949339"
+ ],
+ [
+ "10543.00",
+ "0.20000000"
+ ],
+ [
+ "10545.50",
+ "0.00074913"
+ ],
+ [
+ "10547.00",
+ "0.02000000"
+ ],
+ [
+ "10550.00",
+ "0.25000000"
+ ],
+ [
+ "10555.00",
+ "0.10000000"
+ ],
+ [
+ "10556.60",
+ "0.10400000"
+ ],
+ [
+ "10558.50",
+ "0.00074821"
+ ],
+ [
+ "10566.00",
+ "1.00000000"
+ ],
+ [
+ "10567.00",
+ "0.02000000"
+ ],
+ [
+ "10571.50",
+ "0.00074729"
+ ],
+ [
+ "10581.30",
+ "0.00074729"
+ ],
+ [
+ "10587.00",
+ "0.02000000"
+ ],
+ [
+ "10590.83",
+ "0.32540000"
+ ],
+ [
+ "10599.00",
+ "11.56000000"
+ ],
+ [
+ "10600.00",
+ "0.39050126"
+ ],
+ [
+ "10602.00",
+ "0.00430000"
+ ],
+ [
+ "10605.00",
+ "0.01000000"
+ ],
+ [
+ "10606.10",
+ "0.10000000"
+ ],
+ [
+ "10607.00",
+ "0.02000000"
+ ],
+ [
+ "10610.00",
+ "0.00080000"
+ ],
+ [
+ "10620.00",
+ "0.00074612"
+ ],
+ [
+ "10624.23",
+ "0.00056300"
+ ],
+ [
+ "10627.00",
+ "0.02000000"
+ ],
+ [
+ "10631.40",
+ "0.00800000"
+ ],
+ [
+ "10632.00",
+ "0.00074388"
+ ],
+ [
+ "10640.47",
+ "0.01136085"
+ ],
+ [
+ "10642.31",
+ "0.00800000"
+ ],
+ [
+ "10644.00",
+ "0.00074388"
+ ],
+ [
+ "10646.00",
+ "0.03300000"
+ ],
+ [
+ "10647.00",
+ "0.02000000"
+ ],
+ [
+ "10648.00",
+ "0.10000000"
+ ],
+ [
+ "10652.45",
+ "0.00068000"
+ ],
+ [
+ "10656.00",
+ "0.00074388"
+ ],
+ [
+ "10666.00",
+ "0.00653048"
+ ],
+ [
+ "10667.00",
+ "0.02000000"
+ ],
+ [
+ "10670.00",
+ "0.00074253"
+ ],
+ [
+ "10673.65",
+ "0.00936887"
+ ],
+ [
+ "10676.00",
+ "0.21000000"
+ ],
+ [
+ "10676.26",
+ "0.08428648"
+ ],
+ [
+ "10680.00",
+ "0.00074388"
+ ],
+ [
+ "10681.92",
+ "0.00800000"
+ ],
+ [
+ "10682.72",
+ "0.05332193"
+ ],
+ [
+ "10687.00",
+ "0.02000000"
+ ],
+ [
+ "10688.68",
+ "0.50000000"
+ ],
+ [
+ "10692.74",
+ "0.07000000"
+ ],
+ [
+ "10700.00",
+ "0.20000000"
+ ],
+ [
+ "10707.00",
+ "0.02000000"
+ ],
+ [
+ "10709.60",
+ "0.10600000"
+ ],
+ [
+ "10710.00",
+ "0.00080000"
+ ],
+ [
+ "10719.12",
+ "0.14506077"
+ ],
+ [
+ "10725.08",
+ "0.01300000"
+ ],
+ [
+ "10727.00",
+ "0.02000000"
+ ],
+ [
+ "10730.00",
+ "0.23073826"
+ ],
+ [
+ "10746.38",
+ "0.00800000"
+ ],
+ [
+ "10747.00",
+ "0.02000000"
+ ],
+ [
+ "10749.00",
+ "0.20000000"
+ ],
+ [
+ "10750.00",
+ "0.02526659"
+ ],
+ [
+ "10755.00",
+ "0.32395999"
+ ],
+ [
+ "10760.12",
+ "0.00800000"
+ ],
+ [
+ "10762.59",
+ "0.00800000"
+ ],
+ [
+ "10763.83",
+ "0.33500000"
+ ],
+ [
+ "10767.00",
+ "0.02000000"
+ ],
+ [
+ "10770.00",
+ "0.00072848"
+ ],
+ [
+ "10773.65",
+ "0.00928191"
+ ],
+ [
+ "10777.00",
+ "0.10000000"
+ ],
+ [
+ "10780.00",
+ "0.00073473"
+ ],
+ [
+ "10785.00",
+ "0.01395000"
+ ],
+ [
+ "10787.00",
+ "0.02000000"
+ ],
+ [
+ "10788.00",
+ "0.10500000"
+ ],
+ [
+ "10799.00",
+ "0.01428712"
+ ],
+ [
+ "10800.00",
+ "0.37012224"
+ ],
+ [
+ "10805.97",
+ "0.00381503"
+ ],
+ [
+ "10807.00",
+ "0.02000000"
+ ],
+ [
+ "10810.00",
+ "0.00152573"
+ ],
+ [
+ "10811.71",
+ "0.00478648"
+ ],
+ [
+ "10813.00",
+ "0.00450000"
+ ],
+ [
+ "10817.08",
+ "5.00000000"
+ ],
+ [
+ "10820.00",
+ "0.00073194"
+ ],
+ [
+ "10827.00",
+ "0.02000000"
+ ],
+ [
+ "10833.00",
+ "0.00060001"
+ ],
+ [
+ "10835.00",
+ "0.09675945"
+ ],
+ [
+ "10839.80",
+ "0.00800000"
+ ],
+ [
+ "10847.00",
+ "0.02000000"
+ ],
+ [
+ "10850.00",
+ "0.00072300"
+ ],
+ [
+ "10854.28",
+ "0.00800000"
+ ],
+ [
+ "10862.60",
+ "0.10800000"
+ ],
+ [
+ "10867.00",
+ "0.02000000"
+ ],
+ [
+ "10873.65",
+ "0.00919654"
+ ],
+ [
+ "10874.69",
+ "0.80037771"
+ ],
+ [
+ "10887.00",
+ "0.02000000"
+ ],
+ [
+ "10888.00",
+ "0.01000000"
+ ],
+ [
+ "10890.00",
+ "0.04072030"
+ ],
+ [
+ "10891.45",
+ "0.00098992"
+ ],
+ [
+ "10894.52",
+ "0.18071579"
+ ],
+ [
+ "10895.58",
+ "0.00051900"
+ ],
+ [
+ "10900.00",
+ "0.33812656"
+ ],
+ [
+ "10901.62",
+ "0.00800000"
+ ],
+ [
+ "10907.00",
+ "0.02000000"
+ ],
+ [
+ "10910.00",
+ "0.00080000"
+ ],
+ [
+ "10920.00",
+ "0.00430000"
+ ],
+ [
+ "10927.00",
+ "0.02000000"
+ ],
+ [
+ "10930.00",
+ "0.00071761"
+ ],
+ [
+ "10936.83",
+ "0.34460000"
+ ],
+ [
+ "10940.00",
+ "0.62000000"
+ ],
+ [
+ "10943.53",
+ "0.04314842"
+ ],
+ [
+ "10945.00",
+ "0.10000000"
+ ],
+ [
+ "10947.00",
+ "0.02000000"
+ ],
+ [
+ "10948.97",
+ "0.25000000"
+ ],
+ [
+ "10949.00",
+ "1.00000000"
+ ],
+ [
+ "10949.28",
+ "0.00500000"
+ ],
+ [
+ "10950.00",
+ "1.00000000"
+ ],
+ [
+ "10953.00",
+ "0.23000000"
+ ],
+ [
+ "10962.00",
+ "0.40000000"
+ ],
+ [
+ "10967.00",
+ "0.02000000"
+ ],
+ [
+ "10970.00",
+ "0.00072165"
+ ],
+ [
+ "10971.71",
+ "0.00200000"
+ ],
+ [
+ "10973.65",
+ "0.00911274"
+ ],
+ [
+ "10978.55",
+ "0.01260000"
+ ],
+ [
+ "10981.75",
+ "0.00800000"
+ ],
+ [
+ "10982.00",
+ "0.00088933"
+ ],
+ [
+ "10987.00",
+ "0.53000000"
+ ],
+ [
+ "10987.99",
+ "0.00190000"
+ ],
+ [
+ "10998.00",
+ "5.00000000"
+ ],
+ [
+ "10998.75",
+ "1.44985494"
+ ],
+ [
+ "10998.98",
+ "1.00000000"
+ ],
+ [
+ "10999.00",
+ "0.32203112"
+ ],
+ [
+ "11000.00",
+ "8.96422425"
+ ],
+ [
+ "11000.21",
+ "0.10000000"
+ ],
+ [
+ "11006.55",
+ "0.00800000"
+ ],
+ [
+ "11007.00",
+ "0.02000000"
+ ],
+ [
+ "11010.00",
+ "0.00070000"
+ ],
+ [
+ "11015.60",
+ "0.11000000"
+ ],
+ [
+ "11016.57",
+ "0.00500000"
+ ],
+ [
+ "11018.92",
+ "0.00269726"
+ ],
+ [
+ "11020.00",
+ "0.00071828"
+ ],
+ [
+ "11021.00",
+ "0.00402112"
+ ],
+ [
+ "11027.00",
+ "0.02000000"
+ ],
+ [
+ "11039.67",
+ "0.00800000"
+ ],
+ [
+ "11040.00",
+ "0.10000000"
+ ],
+ [
+ "11047.00",
+ "0.02000000"
+ ],
+ [
+ "11048.66",
+ "0.01000000"
+ ],
+ [
+ "11060.00",
+ "0.23786227"
+ ],
+ [
+ "11065.00",
+ "0.11500000"
+ ],
+ [
+ "11067.00",
+ "0.02000000"
+ ],
+ [
+ "11067.38",
+ "0.01000000"
+ ],
+ [
+ "11070.00",
+ "0.00071495"
+ ],
+ [
+ "11079.00",
+ "0.00396370"
+ ],
+ [
+ "11087.00",
+ "0.02000000"
+ ],
+ [
+ "11088.00",
+ "0.11880000"
+ ],
+ [
+ "11091.00",
+ "0.05900000"
+ ],
+ [
+ "11095.00",
+ "10.63200000"
+ ],
+ [
+ "11100.00",
+ "0.45540973"
+ ],
+ [
+ "11103.00",
+ "0.02000000"
+ ],
+ [
+ "11107.00",
+ "0.02000000"
+ ],
+ [
+ "11109.83",
+ "0.22580000"
+ ],
+ [
+ "11111.00",
+ "0.81931564"
+ ],
+ [
+ "11120.00",
+ "0.00071165"
+ ],
+ [
+ "11121.00",
+ "0.00107613"
+ ],
+ [
+ "11122.00",
+ "0.00800000"
+ ],
+ [
+ "11125.24",
+ "0.00390000"
+ ],
+ [
+ "11127.00",
+ "0.02000000"
+ ],
+ [
+ "11128.00",
+ "0.00097200"
+ ],
+ [
+ "11134.40",
+ "0.89736403"
+ ],
+ [
+ "11135.01",
+ "0.10458500"
+ ],
+ [
+ "11140.00",
+ "0.10000000"
+ ],
+ [
+ "11147.00",
+ "0.02000000"
+ ],
+ [
+ "11149.90",
+ "13.57851685"
+ ],
+ [
+ "11162.47",
+ "0.00050500"
+ ],
+ [
+ "11167.00",
+ "0.02000000"
+ ],
+ [
+ "11168.60",
+ "0.11200000"
+ ],
+ [
+ "11170.00",
+ "0.00070837"
+ ],
+ [
+ "11172.44",
+ "0.02825244"
+ ],
+ [
+ "11187.00",
+ "0.03000000"
+ ],
+ [
+ "11190.12",
+ "0.00462461"
+ ],
+ [
+ "11199.00",
+ "0.10000000"
+ ],
+ [
+ "11200.00",
+ "2.47530000"
+ ],
+ [
+ "11205.00",
+ "0.06542701"
+ ],
+ [
+ "11207.00",
+ "0.02000000"
+ ],
+ [
+ "11212.45",
+ "0.00048500"
+ ],
+ [
+ "11220.00",
+ "0.00070513"
+ ],
+ [
+ "11226.75",
+ "0.00800000"
+ ],
+ [
+ "11227.00",
+ "0.02000000"
+ ],
+ [
+ "11230.00",
+ "0.35000000"
+ ],
+ [
+ "11236.92",
+ "0.00600000"
+ ],
+ [
+ "11240.00",
+ "0.10000000"
+ ],
+ [
+ "11246.26",
+ "0.05000000"
+ ],
+ [
+ "11247.00",
+ "0.02430000"
+ ],
+ [
+ "11248.00",
+ "0.00250000"
+ ],
+ [
+ "11250.00",
+ "2.00000000"
+ ],
+ [
+ "11251.10",
+ "0.22313953"
+ ],
+ [
+ "11261.37",
+ "0.00361920"
+ ],
+ [
+ "11267.00",
+ "0.02000000"
+ ],
+ [
+ "11270.00",
+ "0.00070191"
+ ],
+ [
+ "11273.00",
+ "0.35000000"
+ ],
+ [
+ "11275.00",
+ "0.05234900"
+ ],
+ [
+ "11282.83",
+ "0.23120000"
+ ],
+ [
+ "11285.00",
+ "0.01333000"
+ ],
+ [
+ "11287.00",
+ "0.03000000"
+ ],
+ [
+ "11288.43",
+ "0.27499166"
+ ],
+ [
+ "11300.00",
+ "50.46862968"
+ ],
+ [
+ "11303.65",
+ "0.00884721"
+ ],
+ [
+ "11307.00",
+ "0.02000000"
+ ],
+ [
+ "11314.55",
+ "0.00442969"
+ ],
+ [
+ "11320.00",
+ "0.00069873"
+ ],
+ [
+ "11321.60",
+ "0.11400000"
+ ],
+ [
+ "11324.00",
+ "1.00000000"
+ ],
+ [
+ "11324.84",
+ "0.00800000"
+ ],
+ [
+ "11327.00",
+ "0.52000000"
+ ],
+ [
+ "11334.04",
+ "0.00800000"
+ ],
+ [
+ "11336.36",
+ "0.00800000"
+ ],
+ [
+ "11340.00",
+ "0.15000000"
+ ],
+ [
+ "11342.00",
+ "0.12500000"
+ ],
+ [
+ "11347.00",
+ "0.02000000"
+ ],
+ [
+ "11348.45",
+ "0.00441646"
+ ],
+ [
+ "11350.00",
+ "0.17702875"
+ ],
+ [
+ "11359.00",
+ "0.10000000"
+ ],
+ [
+ "11360.00",
+ "0.00069620"
+ ],
+ [
+ "11367.00",
+ "0.02000000"
+ ],
+ [
+ "11369.00",
+ "8.99204314"
+ ],
+ [
+ "11383.00",
+ "0.15000000"
+ ],
+ [
+ "11387.00",
+ "0.03000000"
+ ],
+ [
+ "11387.79",
+ "0.00800000"
+ ],
+ [
+ "11388.00",
+ "0.46106478"
+ ],
+ [
+ "11394.41",
+ "0.00800000"
+ ],
+ [
+ "11400.00",
+ "0.09223759"
+ ],
+ [
+ "11402.47",
+ "0.01840541"
+ ],
+ [
+ "11402.58",
+ "0.00439550"
+ ],
+ [
+ "11407.00",
+ "0.02000000"
+ ],
+ [
+ "11407.80",
+ "0.20000000"
+ ],
+ [
+ "11420.00",
+ "0.10000000"
+ ],
+ [
+ "11424.68",
+ "1.00000000"
+ ],
+ [
+ "11424.90",
+ "0.00049100"
+ ],
+ [
+ "11427.00",
+ "0.02000000"
+ ],
+ [
+ "11431.24",
+ "0.06000000"
+ ],
+ [
+ "11436.79",
+ "0.06398632"
+ ],
+ [
+ "11440.00",
+ "0.00069120"
+ ],
+ [
+ "11447.00",
+ "0.02000000"
+ ],
+ [
+ "11447.31",
+ "0.16200000"
+ ],
+ [
+ "11448.00",
+ "0.20000000"
+ ],
+ [
+ "11448.97",
+ "0.25000000"
+ ],
+ [
+ "11455.83",
+ "0.23660000"
+ ],
+ [
+ "11467.00",
+ "0.02000000"
+ ],
+ [
+ "11473.65",
+ "0.00871562"
+ ],
+ [
+ "11474.60",
+ "0.11600000"
+ ],
+ [
+ "11480.00",
+ "0.00068873"
+ ],
+ [
+ "11487.00",
+ "0.38059080"
+ ],
+ [
+ "11489.48",
+ "0.00800000"
+ ],
+ [
+ "11498.00",
+ "0.01000000"
+ ],
+ [
+ "11499.00",
+ "0.01364500"
+ ],
+ [
+ "11500.00",
+ "10.11790043"
+ ],
+ [
+ "11507.00",
+ "0.29000000"
+ ],
+ [
+ "11508.00",
+ "0.20000000"
+ ],
+ [
+ "11520.00",
+ "0.00068627"
+ ],
+ [
+ "11527.00",
+ "0.02000000"
+ ],
+ [
+ "11535.00",
+ "0.36038916"
+ ],
+ [
+ "11547.00",
+ "0.02000000"
+ ],
+ [
+ "11555.00",
+ "0.10000000"
+ ],
+ [
+ "11560.00",
+ "0.00068384"
+ ],
+ [
+ "11567.00",
+ "0.02000000"
+ ],
+ [
+ "11581.78",
+ "0.00446823"
+ ],
+ [
+ "11585.00",
+ "0.38930000"
+ ],
+ [
+ "11587.00",
+ "0.03000000"
+ ],
+ [
+ "11589.10",
+ "0.00600000"
+ ],
+ [
+ "11592.91",
+ "0.00273226"
+ ],
+ [
+ "11596.00",
+ "11.16000000"
+ ],
+ [
+ "11597.07",
+ "0.30580300"
+ ],
+ [
+ "11600.00",
+ "2.15068142"
+ ],
+ [
+ "11607.00",
+ "0.02000000"
+ ],
+ [
+ "11610.00",
+ "0.22573325"
+ ],
+ [
+ "11627.00",
+ "0.02000000"
+ ],
+ [
+ "11627.60",
+ "0.11800000"
+ ],
+ [
+ "11628.83",
+ "0.06600000"
+ ],
+ [
+ "11630.00",
+ "1.09859489"
+ ],
+ [
+ "11639.00",
+ "0.50000000"
+ ],
+ [
+ "11640.00",
+ "0.08653434"
+ ],
+ [
+ "11645.00",
+ "0.11054362"
+ ],
+ [
+ "11647.00",
+ "0.02000000"
+ ],
+ [
+ "11667.00",
+ "0.02000000"
+ ],
+ [
+ "11670.00",
+ "0.05000000"
+ ],
+ [
+ "11675.06",
+ "0.00800000"
+ ],
+ [
+ "11680.00",
+ "0.00567663"
+ ],
+ [
+ "11682.86",
+ "0.00047900"
+ ],
+ [
+ "11687.00",
+ "0.02000000"
+ ],
+ [
+ "11690.00",
+ "0.17276292"
+ ],
+ [
+ "11699.97",
+ "0.01632662"
+ ],
+ [
+ "11700.00",
+ "2.54132167"
+ ],
+ [
+ "11700.94",
+ "0.01356696"
+ ],
+ [
+ "11707.00",
+ "0.02000000"
+ ],
+ [
+ "11712.00",
+ "0.02343789"
+ ],
+ [
+ "11713.00",
+ "0.00078100"
+ ],
+ [
+ "11716.00",
+ "0.03319539"
+ ],
+ [
+ "11717.22",
+ "0.19000000"
+ ],
+ [
+ "11719.09",
+ "0.01351000"
+ ],
+ [
+ "11720.00",
+ "2.24068259"
+ ],
+ [
+ "11723.06",
+ "3.00000000"
+ ],
+ [
+ "11724.91",
+ "0.29123471"
+ ],
+ [
+ "11727.00",
+ "0.02000000"
+ ],
+ [
+ "11732.58",
+ "0.17135000"
+ ],
+ [
+ "11732.85",
+ "0.09571777"
+ ],
+ [
+ "11744.45",
+ "0.07000000"
+ ],
+ [
+ "11745.00",
+ "0.00200000"
+ ],
+ [
+ "11745.90",
+ "0.00500000"
+ ],
+ [
+ "11745.99",
+ "0.00347932"
+ ],
+ [
+ "11747.00",
+ "0.02000000"
+ ],
+ [
+ "11750.00",
+ "0.60479521"
+ ],
+ [
+ "11760.00",
+ "0.00114027"
+ ],
+ [
+ "11762.30",
+ "0.00043800"
+ ],
+ [
+ "11767.00",
+ "0.02000000"
+ ],
+ [
+ "11770.00",
+ "0.13800000"
+ ],
+ [
+ "11777.77",
+ "0.03300000"
+ ],
+ [
+ "11780.60",
+ "0.12000000"
+ ],
+ [
+ "11785.00",
+ "0.01276000"
+ ],
+ [
+ "11786.00",
+ "1.00000000"
+ ],
+ [
+ "11786.28",
+ "0.00566629"
+ ],
+ [
+ "11787.00",
+ "0.02000000"
+ ],
+ [
+ "11789.34",
+ "0.10161563"
+ ],
+ [
+ "11799.87",
+ "0.20000000"
+ ],
+ [
+ "11800.00",
+ "4.07141217"
+ ],
+ [
+ "11801.00",
+ "2.42154670"
+ ],
+ [
+ "11801.83",
+ "0.06720000"
+ ],
+ [
+ "11807.00",
+ "0.02000000"
+ ],
+ [
+ "11812.50",
+ "0.01000000"
+ ],
+ [
+ "11820.00",
+ "0.00180000"
+ ],
+ [
+ "11827.00",
+ "0.02000000"
+ ],
+ [
+ "11828.37",
+ "0.00071910"
+ ],
+ [
+ "11832.52",
+ "0.00128374"
+ ],
+ [
+ "11847.00",
+ "0.02000000"
+ ],
+ [
+ "11847.05",
+ "0.00500000"
+ ],
+ [
+ "11850.00",
+ "0.45000000"
+ ],
+ [
+ "11867.00",
+ "0.02000000"
+ ],
+ [
+ "11867.09",
+ "0.00043000"
+ ],
+ [
+ "11870.51",
+ "0.00085956"
+ ],
+ [
+ "11876.50",
+ "0.03165054"
+ ],
+ [
+ "11876.54",
+ "0.02500000"
+ ],
+ [
+ "11878.14",
+ "0.00051018"
+ ],
+ [
+ "11880.00",
+ "0.50364944"
+ ],
+ [
+ "11885.00",
+ "0.06870000"
+ ],
+ [
+ "11887.00",
+ "0.02000000"
+ ],
+ [
+ "11888.00",
+ "0.01000000"
+ ],
+ [
+ "11890.00",
+ "0.16040000"
+ ],
+ [
+ "11894.00",
+ "0.03127359"
+ ],
+ [
+ "11900.00",
+ "1.37045200"
+ ],
+ [
+ "11900.44",
+ "0.50000000"
+ ],
+ [
+ "11900.68",
+ "0.00108365"
+ ],
+ [
+ "11907.00",
+ "0.02000000"
+ ],
+ [
+ "11910.24",
+ "0.00178954"
+ ],
+ [
+ "11915.00",
+ "0.00600000"
+ ],
+ [
+ "11923.00",
+ "5.00000000"
+ ],
+ [
+ "11927.00",
+ "0.02000000"
+ ],
+ [
+ "11930.00",
+ "0.00411500"
+ ],
+ [
+ "11932.00",
+ "0.00430000"
+ ],
+ [
+ "11935.00",
+ "0.00144478"
+ ],
+ [
+ "11936.37",
+ "0.00046700"
+ ],
+ [
+ "11946.26",
+ "0.00241200"
+ ],
+ [
+ "11947.00",
+ "0.02000000"
+ ],
+ [
+ "11947.61",
+ "0.00500000"
+ ],
+ [
+ "11948.97",
+ "0.25000000"
+ ],
+ [
+ "11950.00",
+ "0.41997426"
+ ],
+ [
+ "11967.00",
+ "0.02000000"
+ ],
+ [
+ "11970.00",
+ "0.01000000"
+ ],
+ [
+ "11974.83",
+ "0.06840000"
+ ],
+ [
+ "11980.00",
+ "0.05000000"
+ ],
+ [
+ "11987.00",
+ "0.05500000"
+ ],
+ [
+ "11987.14",
+ "0.00431713"
+ ],
+ [
+ "11988.00",
+ "0.00986701"
+ ],
+ [
+ "11989.00",
+ "0.14774800"
+ ],
+ [
+ "11990.00",
+ "0.00066722"
+ ],
+ [
+ "11990.55",
+ "0.00700000"
+ ],
+ [
+ "11990.92",
+ "0.00836000"
+ ],
+ [
+ "11994.94",
+ "0.01000000"
+ ],
+ [
+ "11998.00",
+ "10.80000000"
+ ],
+ [
+ "11998.71",
+ "0.00254198"
+ ],
+ [
+ "11998.90",
+ "2.00000000"
+ ],
+ [
+ "11999.00",
+ "0.79098409"
+ ],
+ [
+ "12000.00",
+ "5.34790186"
+ ],
+ [
+ "12000.31",
+ "0.18112875"
+ ],
+ [
+ "12007.00",
+ "0.02000000"
+ ],
+ [
+ "12012.12",
+ "0.05000000"
+ ],
+ [
+ "12027.00",
+ "0.02000000"
+ ],
+ [
+ "12046.27",
+ "0.00050306"
+ ],
+ [
+ "12047.00",
+ "0.02000000"
+ ],
+ [
+ "12050.00",
+ "3.02284672"
+ ],
+ [
+ "12060.00",
+ "0.10000867"
+ ],
+ [
+ "12067.00",
+ "0.02000000"
+ ],
+ [
+ "12070.20",
+ "1.51655496"
+ ],
+ [
+ "12074.74",
+ "0.00068083"
+ ],
+ [
+ "12081.00",
+ "0.80615533"
+ ],
+ [
+ "12087.00",
+ "0.02000000"
+ ],
+ [
+ "12089.00",
+ "0.03622277"
+ ],
+ [
+ "12095.14",
+ "0.00248726"
+ ],
+ [
+ "12100.00",
+ "1.03000000"
+ ],
+ [
+ "12107.00",
+ "0.02000000"
+ ],
+ [
+ "12119.96",
+ "0.00324084"
+ ],
+ [
+ "12120.00",
+ "0.18650000"
+ ],
+ [
+ "12125.00",
+ "0.73367049"
+ ],
+ [
+ "12127.00",
+ "0.02000000"
+ ],
+ [
+ "12131.00",
+ "0.00500000"
+ ],
+ [
+ "12138.51",
+ "0.00700000"
+ ],
+ [
+ "12140.20",
+ "4.79284132"
+ ],
+ [
+ "12140.76",
+ "0.00800000"
+ ],
+ [
+ "12147.00",
+ "0.02000000"
+ ],
+ [
+ "12147.83",
+ "0.06960000"
+ ],
+ [
+ "12167.00",
+ "0.02000000"
+ ],
+ [
+ "12173.65",
+ "0.00821241"
+ ],
+ [
+ "12177.48",
+ "0.00700000"
+ ],
+ [
+ "12185.42",
+ "0.00045600"
+ ],
+ [
+ "12187.00",
+ "0.02000000"
+ ],
+ [
+ "12188.00",
+ "0.08880000"
+ ],
+ [
+ "12190.00",
+ "0.15042000"
+ ],
+ [
+ "12195.00",
+ "1.81000000"
+ ],
+ [
+ "12200.00",
+ "22.09815560"
+ ],
+ [
+ "12206.82",
+ "0.05000000"
+ ],
+ [
+ "12207.00",
+ "0.02000000"
+ ],
+ [
+ "12212.25",
+ "0.00500000"
+ ],
+ [
+ "12220.00",
+ "0.00172000"
+ ],
+ [
+ "12222.00",
+ "0.06667898"
+ ],
+ [
+ "12226.42",
+ "0.00100230"
+ ],
+ [
+ "12227.00",
+ "0.02000000"
+ ],
+ [
+ "12233.00",
+ "0.07880000"
+ ],
+ [
+ "12247.00",
+ "0.02000000"
+ ],
+ [
+ "12258.42",
+ "0.00250000"
+ ],
+ [
+ "12260.00",
+ "0.10000000"
+ ],
+ [
+ "12267.00",
+ "0.02000000"
+ ],
+ [
+ "12285.00",
+ "0.01282800"
+ ],
+ [
+ "12287.00",
+ "0.02000000"
+ ],
+ [
+ "12290.00",
+ "0.00430000"
+ ],
+ [
+ "12292.82",
+ "0.00500000"
+ ],
+ [
+ "12297.82",
+ "0.00700000"
+ ],
+ [
+ "12299.00",
+ "0.02000000"
+ ],
+ [
+ "12300.00",
+ "0.03340000"
+ ],
+ [
+ "12307.00",
+ "0.02000000"
+ ],
+ [
+ "12309.96",
+ "0.01000000"
+ ],
+ [
+ "12320.83",
+ "0.07080000"
+ ],
+ [
+ "12326.21",
+ "0.00065704"
+ ],
+ [
+ "12327.00",
+ "0.02000000"
+ ],
+ [
+ "12342.27",
+ "0.00612170"
+ ],
+ [
+ "12345.67",
+ "0.20000000"
+ ],
+ [
+ "12347.00",
+ "0.02000000"
+ ],
+ [
+ "12367.00",
+ "0.02000000"
+ ],
+ [
+ "12387.00",
+ "0.02000000"
+ ],
+ [
+ "12398.00",
+ "0.08000000"
+ ],
+ [
+ "12398.09",
+ "0.00484699"
+ ],
+ [
+ "12399.00",
+ "0.10000000"
+ ],
+ [
+ "12400.00",
+ "0.28029369"
+ ],
+ [
+ "12407.00",
+ "0.02000000"
+ ],
+ [
+ "12427.00",
+ "0.02000000"
+ ],
+ [
+ "12430.01",
+ "0.00044500"
+ ],
+ [
+ "12447.00",
+ "0.02000000"
+ ],
+ [
+ "12448.97",
+ "0.25000000"
+ ],
+ [
+ "12450.00",
+ "0.12556350"
+ ],
+ [
+ "12467.00",
+ "0.02000000"
+ ],
+ [
+ "12485.00",
+ "0.00350000"
+ ],
+ [
+ "12487.00",
+ "0.02000000"
+ ],
+ [
+ "12491.55",
+ "0.00041300"
+ ],
+ [
+ "12493.83",
+ "0.07200000"
+ ],
+ [
+ "12496.00",
+ "12.56000000"
+ ],
+ [
+ "12498.98",
+ "1.00000000"
+ ],
+ [
+ "12498.99",
+ "1.00000000"
+ ],
+ [
+ "12500.00",
+ "1.14555652"
+ ],
+ [
+ "12507.00",
+ "0.02000000"
+ ],
+ [
+ "12521.00",
+ "0.50000000"
+ ],
+ [
+ "12527.00",
+ "0.02000000"
+ ],
+ [
+ "12547.00",
+ "0.02000000"
+ ],
+ [
+ "12550.00",
+ "1.00000000"
+ ],
+ [
+ "12558.42",
+ "0.00400000"
+ ],
+ [
+ "12567.00",
+ "0.02000000"
+ ],
+ [
+ "12578.00",
+ "0.10000000"
+ ],
+ [
+ "12579.00",
+ "0.00700000"
+ ],
+ [
+ "12582.83",
+ "0.00064364"
+ ],
+ [
+ "12587.00",
+ "0.02000000"
+ ],
+ [
+ "12600.00",
+ "1.05590656"
+ ],
+ [
+ "12607.00",
+ "0.02000000"
+ ],
+ [
+ "12619.45",
+ "0.00118274"
+ ],
+ [
+ "12627.00",
+ "0.02000000"
+ ],
+ [
+ "12641.94",
+ "0.03000000"
+ ],
+ [
+ "12647.00",
+ "0.02000000"
+ ],
+ [
+ "12647.63",
+ "0.00309929"
+ ],
+ [
+ "12648.42",
+ "0.00250000"
+ ],
+ [
+ "12659.00",
+ "0.00430000"
+ ],
+ [
+ "12666.00",
+ "0.01000000"
+ ],
+ [
+ "12666.83",
+ "0.07320000"
+ ],
+ [
+ "12667.00",
+ "0.02000000"
+ ],
+ [
+ "12675.48",
+ "0.00225986"
+ ],
+ [
+ "12687.00",
+ "0.02000000"
+ ],
+ [
+ "12696.06",
+ "0.00040600"
+ ],
+ [
+ "12700.00",
+ "2.79330266"
+ ],
+ [
+ "12700.33",
+ "0.00238000"
+ ],
+ [
+ "12702.90",
+ "0.19034000"
+ ],
+ [
+ "12707.00",
+ "0.02000000"
+ ],
+ [
+ "12719.40",
+ "0.00040800"
+ ],
+ [
+ "12727.00",
+ "0.02000000"
+ ],
+ [
+ "12731.00",
+ "0.20000000"
+ ],
+ [
+ "12735.00",
+ "0.10000000"
+ ],
+ [
+ "12740.00",
+ "0.00062794"
+ ],
+ [
+ "12747.00",
+ "0.02000000"
+ ],
+ [
+ "12767.00",
+ "0.02000000"
+ ],
+ [
+ "12777.26",
+ "0.05000000"
+ ],
+ [
+ "12785.00",
+ "0.01176400"
+ ],
+ [
+ "12785.54",
+ "0.00172445"
+ ],
+ [
+ "12787.00",
+ "0.02000000"
+ ],
+ [
+ "12794.00",
+ "0.01217732"
+ ],
+ [
+ "12800.00",
+ "5.95568960"
+ ],
+ [
+ "12807.00",
+ "0.02000000"
+ ],
+ [
+ "12823.00",
+ "0.00600000"
+ ],
+ [
+ "12827.00",
+ "0.02000000"
+ ],
+ [
+ "12839.83",
+ "0.07440000"
+ ],
+ [
+ "12844.01",
+ "0.08000000"
+ ],
+ [
+ "12844.93",
+ "0.00062971"
+ ],
+ [
+ "12846.85",
+ "0.00040000"
+ ],
+ [
+ "12847.00",
+ "0.02000000"
+ ],
+ [
+ "12850.00",
+ "0.00931334"
+ ],
+ [
+ "12867.00",
+ "0.02000000"
+ ],
+ [
+ "12869.00",
+ "0.13000000"
+ ],
+ [
+ "12875.00",
+ "0.04000000"
+ ],
+ [
+ "12887.00",
+ "0.02000000"
+ ],
+ [
+ "12888.00",
+ "0.09880000"
+ ],
+ [
+ "12894.66",
+ "0.01000000"
+ ],
+ [
+ "12898.00",
+ "0.38030000"
+ ],
+ [
+ "12899.00",
+ "12.00000000"
+ ],
+ [
+ "12900.00",
+ "0.09600000"
+ ],
+ [
+ "12901.01",
+ "0.00700000"
+ ],
+ [
+ "12907.00",
+ "0.02000000"
+ ],
+ [
+ "12911.00",
+ "0.05588800"
+ ],
+ [
+ "12922.00",
+ "0.01100000"
+ ],
+ [
+ "12927.00",
+ "0.02000000"
+ ],
+ [
+ "12938.92",
+ "0.00774000"
+ ],
+ [
+ "12947.00",
+ "0.02000000"
+ ],
+ [
+ "12948.97",
+ "0.25000000"
+ ],
+ [
+ "12950.00",
+ "0.35000000"
+ ],
+ [
+ "12967.00",
+ "0.02000000"
+ ],
+ [
+ "12973.64",
+ "0.00700000"
+ ],
+ [
+ "12980.00",
+ "0.11609570"
+ ],
+ [
+ "12987.00",
+ "0.44509144"
+ ],
+ [
+ "12994.94",
+ "0.01000000"
+ ],
+ [
+ "12999.00",
+ "0.03573051"
+ ],
+ [
+ "13000.00",
+ "3.24797430"
+ ],
+ [
+ "13000.65",
+ "0.00139563"
+ ],
+ [
+ "13003.45",
+ "0.11625312"
+ ],
+ [
+ "13004.19",
+ "0.00154000"
+ ],
+ [
+ "13004.54",
+ "0.00700000"
+ ],
+ [
+ "13007.00",
+ "0.02000000"
+ ],
+ [
+ "13007.39",
+ "1.00000000"
+ ],
+ [
+ "13012.83",
+ "0.07560000"
+ ],
+ [
+ "13027.00",
+ "0.02000000"
+ ],
+ [
+ "13031.00",
+ "0.07880000"
+ ],
+ [
+ "13039.00",
+ "0.00430000"
+ ],
+ [
+ "13046.77",
+ "0.00543404"
+ ],
+ [
+ "13047.00",
+ "0.02000000"
+ ],
+ [
+ "13067.00",
+ "0.02000000"
+ ],
+ [
+ "13076.00",
+ "0.00500000"
+ ],
+ [
+ "13087.00",
+ "0.02000000"
+ ],
+ [
+ "13107.00",
+ "0.02000000"
+ ],
+ [
+ "13112.33",
+ "0.00060911"
+ ],
+ [
+ "13122.53",
+ "0.00046180"
+ ],
+ [
+ "13127.00",
+ "0.02000000"
+ ],
+ [
+ "13131.00",
+ "0.07130000"
+ ],
+ [
+ "13147.00",
+ "0.02000000"
+ ],
+ [
+ "13167.00",
+ "0.02000000"
+ ],
+ [
+ "13187.00",
+ "0.02000000"
+ ],
+ [
+ "13190.00",
+ "0.15000000"
+ ],
+ [
+ "13200.00",
+ "0.10500000"
+ ],
+ [
+ "13207.00",
+ "0.02000000"
+ ],
+ [
+ "13220.00",
+ "0.20915912"
+ ],
+ [
+ "13227.00",
+ "0.02000000"
+ ],
+ [
+ "13231.00",
+ "0.50000000"
+ ],
+ [
+ "13247.00",
+ "0.02000000"
+ ],
+ [
+ "13250.00",
+ "0.74100699"
+ ],
+ [
+ "13260.65",
+ "0.01538462"
+ ],
+ [
+ "13261.00",
+ "0.07130000"
+ ],
+ [
+ "13267.00",
+ "0.02000000"
+ ],
+ [
+ "13270.00",
+ "0.02000000"
+ ],
+ [
+ "13273.00",
+ "0.00500000"
+ ],
+ [
+ "13285.00",
+ "0.01132000"
+ ],
+ [
+ "13287.00",
+ "0.02000000"
+ ],
+ [
+ "13296.35",
+ "0.01534331"
+ ],
+ [
+ "13299.00",
+ "0.00100000"
+ ],
+ [
+ "13300.00",
+ "22.12941679"
+ ],
+ [
+ "13307.00",
+ "0.02000000"
+ ],
+ [
+ "13327.00",
+ "0.02000000"
+ ],
+ [
+ "13332.06",
+ "0.01530222"
+ ],
+ [
+ "13333.00",
+ "0.79452840"
+ ],
+ [
+ "13346.85",
+ "0.00500000"
+ ],
+ [
+ "13347.00",
+ "0.02000000"
+ ],
+ [
+ "13350.00",
+ "0.06000000"
+ ],
+ [
+ "13359.00",
+ "0.10000000"
+ ],
+ [
+ "13359.04",
+ "0.00500000"
+ ],
+ [
+ "13367.00",
+ "0.02000000"
+ ],
+ [
+ "13376.74",
+ "0.00158564"
+ ],
+ [
+ "13377.00",
+ "0.00218899"
+ ],
+ [
+ "13385.38",
+ "0.00059365"
+ ],
+ [
+ "13387.00",
+ "0.02000000"
+ ],
+ [
+ "13391.00",
+ "0.07130000"
+ ],
+ [
+ "13400.00",
+ "0.79582816"
+ ],
+ [
+ "13403.46",
+ "0.01522070"
+ ],
+ [
+ "13407.00",
+ "0.02000000"
+ ],
+ [
+ "13411.37",
+ "0.01267700"
+ ],
+ [
+ "13421.48",
+ "0.00039784"
+ ],
+ [
+ "13421.76",
+ "0.05571031"
+ ],
+ [
+ "13422.88",
+ "0.00293657"
+ ],
+ [
+ "13427.00",
+ "0.02000000"
+ ],
+ [
+ "13439.16",
+ "0.01518027"
+ ],
+ [
+ "13447.00",
+ "0.02000000"
+ ],
+ [
+ "13450.00",
+ "0.13000000"
+ ],
+ [
+ "13458.17",
+ "0.00700000"
+ ],
+ [
+ "13467.00",
+ "0.02000000"
+ ],
+ [
+ "13474.86",
+ "0.01514005"
+ ],
+ [
+ "13487.00",
+ "0.02000000"
+ ],
+ [
+ "13490.00",
+ "0.02897050"
+ ],
+ [
+ "13494.78",
+ "0.00700000"
+ ],
+ [
+ "13500.00",
+ "4.59001017"
+ ],
+ [
+ "13501.00",
+ "0.07130000"
+ ],
+ [
+ "13505.00",
+ "0.31815837"
+ ],
+ [
+ "13507.00",
+ "0.02000000"
+ ],
+ [
+ "13510.56",
+ "0.01510004"
+ ],
+ [
+ "13527.00",
+ "0.02000000"
+ ],
+ [
+ "13546.27",
+ "0.01506024"
+ ],
+ [
+ "13547.00",
+ "0.02000000"
+ ],
+ [
+ "13552.00",
+ "0.01000000"
+ ],
+ [
+ "13556.79",
+ "0.01000000"
+ ],
+ [
+ "13566.00",
+ "0.00700000"
+ ],
+ [
+ "13567.00",
+ "0.02000000"
+ ],
+ [
+ "13569.56",
+ "0.01000000"
+ ],
+ [
+ "13581.97",
+ "0.01502065"
+ ],
+ [
+ "13587.00",
+ "0.02000000"
+ ],
+ [
+ "13587.57",
+ "0.00500000"
+ ],
+ [
+ "13590.80",
+ "0.00500000"
+ ],
+ [
+ "13597.92",
+ "0.00700000"
+ ],
+ [
+ "13599.30",
+ "0.00700000"
+ ],
+ [
+ "13600.00",
+ "0.51000000"
+ ],
+ [
+ "13604.10",
+ "0.00218247"
+ ],
+ [
+ "13607.00",
+ "0.02000000"
+ ],
+ [
+ "13617.67",
+ "0.01498127"
+ ],
+ [
+ "13618.00",
+ "0.00500000"
+ ],
+ [
+ "13627.00",
+ "0.02000000"
+ ],
+ [
+ "13632.58",
+ "0.00138000"
+ ],
+ [
+ "13647.00",
+ "0.02000000"
+ ],
+ [
+ "13653.37",
+ "0.01494210"
+ ],
+ [
+ "13664.20",
+ "0.00058004"
+ ],
+ [
+ "13667.00",
+ "0.02000000"
+ ],
+ [
+ "13676.31",
+ "0.03040500"
+ ],
+ [
+ "13687.00",
+ "0.02000000"
+ ],
+ [
+ "13689.07",
+ "0.01490313"
+ ],
+ [
+ "13700.50",
+ "0.00038769"
+ ],
+ [
+ "13707.00",
+ "0.02000000"
+ ],
+ [
+ "13724.77",
+ "0.01486436"
+ ],
+ [
+ "13727.00",
+ "0.02000000"
+ ],
+ [
+ "13730.14",
+ "0.00200000"
+ ],
+ [
+ "13737.00",
+ "0.20000000"
+ ],
+ [
+ "13743.63",
+ "0.22430542"
+ ],
+ [
+ "13747.00",
+ "0.02500000"
+ ],
+ [
+ "13760.48",
+ "0.01482580"
+ ],
+ [
+ "13767.00",
+ "0.02000000"
+ ],
+ [
+ "13781.00",
+ "0.07130000"
+ ],
+ [
+ "13785.00",
+ "0.01091000"
+ ],
+ [
+ "13787.00",
+ "0.02000000"
+ ],
+ [
+ "13789.95",
+ "0.01000000"
+ ],
+ [
+ "13796.18",
+ "0.01478743"
+ ],
+ [
+ "13800.00",
+ "2.00000000"
+ ],
+ [
+ "13800.59",
+ "0.00399285"
+ ],
+ [
+ "13807.00",
+ "0.02000000"
+ ],
+ [
+ "13810.11",
+ "0.26244000"
+ ],
+ [
+ "13827.00",
+ "0.02000000"
+ ],
+ [
+ "13834.04",
+ "0.00278445"
+ ],
+ [
+ "13834.10",
+ "0.00131199"
+ ],
+ [
+ "13836.00",
+ "0.01000000"
+ ],
+ [
+ "13846.11",
+ "0.01838500"
+ ],
+ [
+ "13847.00",
+ "0.02000000"
+ ],
+ [
+ "13850.00",
+ "0.02500000"
+ ],
+ [
+ "13860.00",
+ "0.10000000"
+ ],
+ [
+ "13867.00",
+ "0.02000000"
+ ],
+ [
+ "13867.58",
+ "0.01471129"
+ ],
+ [
+ "13887.00",
+ "0.02000000"
+ ],
+ [
+ "13888.00",
+ "0.01000000"
+ ],
+ [
+ "13898.69",
+ "0.00398700"
+ ],
+ [
+ "13900.00",
+ "0.01000000"
+ ],
+ [
+ "13903.28",
+ "0.01467351"
+ ],
+ [
+ "13907.00",
+ "0.02000000"
+ ],
+ [
+ "13911.00",
+ "0.07130000"
+ ],
+ [
+ "13912.88",
+ "0.10000000"
+ ],
+ [
+ "13927.00",
+ "0.02000000"
+ ],
+ [
+ "13938.98",
+ "0.01463593"
+ ],
+ [
+ "13940.00",
+ "0.13000000"
+ ],
+ [
+ "13947.00",
+ "0.02000000"
+ ],
+ [
+ "13948.66",
+ "0.00056822"
+ ],
+ [
+ "13948.97",
+ "0.35000000"
+ ],
+ [
+ "13956.79",
+ "0.03000000"
+ ],
+ [
+ "13967.00",
+ "0.02000000"
+ ],
+ [
+ "13974.69",
+ "0.01459854"
+ ],
+ [
+ "13980.00",
+ "0.08440603"
+ ],
+ [
+ "13987.00",
+ "0.02000000"
+ ],
+ [
+ "13994.74",
+ "0.01000000"
+ ],
+ [
+ "14000.00",
+ "4.95355605"
+ ],
+ [
+ "14000.39",
+ "0.00600000"
+ ],
+ [
+ "14001.00",
+ "0.50000000"
+ ],
+ [
+ "14004.56",
+ "0.00773130"
+ ],
+ [
+ "14007.00",
+ "0.02000000"
+ ],
+ [
+ "14007.32",
+ "0.10788102"
+ ],
+ [
+ "14010.39",
+ "0.01456134"
+ ],
+ [
+ "14016.37",
+ "0.04000000"
+ ],
+ [
+ "14027.00",
+ "0.02000000"
+ ],
+ [
+ "14037.38",
+ "0.00428151"
+ ],
+ [
+ "14041.00",
+ "0.07130000"
+ ],
+ [
+ "14046.09",
+ "0.01452433"
+ ],
+ [
+ "14047.00",
+ "0.02000000"
+ ],
+ [
+ "14050.00",
+ "0.02000000"
+ ],
+ [
+ "14051.55",
+ "0.15736300"
+ ],
+ [
+ "14067.00",
+ "0.02000000"
+ ],
+ [
+ "14081.79",
+ "0.01448750"
+ ],
+ [
+ "14087.00",
+ "0.02000000"
+ ],
+ [
+ "14089.74",
+ "0.01806358"
+ ],
+ [
+ "14093.97",
+ "0.00052568"
+ ],
+ [
+ "14100.00",
+ "2.37900000"
+ ],
+ [
+ "14107.00",
+ "0.02000000"
+ ],
+ [
+ "14120.06",
+ "0.20909886"
+ ],
+ [
+ "14120.98",
+ "0.00198836"
+ ],
+ [
+ "14121.00",
+ "0.00500000"
+ ],
+ [
+ "14125.38",
+ "0.01801802"
+ ],
+ [
+ "14127.00",
+ "0.02000000"
+ ],
+ [
+ "14147.00",
+ "0.02000000"
+ ],
+ [
+ "14150.00",
+ "0.01073284"
+ ],
+ [
+ "14161.01",
+ "0.01797268"
+ ],
+ [
+ "14167.00",
+ "0.02000000"
+ ],
+ [
+ "14171.00",
+ "0.07130000"
+ ],
+ [
+ "14187.00",
+ "0.02000000"
+ ],
+ [
+ "14190.00",
+ "0.30000000"
+ ],
+ [
+ "14196.64",
+ "0.01792757"
+ ],
+ [
+ "14200.00",
+ "0.10000000"
+ ],
+ [
+ "14203.33",
+ "0.22287000"
+ ],
+ [
+ "14207.00",
+ "0.02000000"
+ ],
+ [
+ "14208.00",
+ "0.05000000"
+ ],
+ [
+ "14211.63",
+ "0.00141000"
+ ],
+ [
+ "14211.76",
+ "0.01000000"
+ ],
+ [
+ "14212.27",
+ "0.00037360"
+ ],
+ [
+ "14227.00",
+ "0.02000000"
+ ],
+ [
+ "14232.27",
+ "0.01788269"
+ ],
+ [
+ "14239.27",
+ "0.00055662"
+ ],
+ [
+ "14240.00",
+ "0.00056180"
+ ],
+ [
+ "14247.00",
+ "0.02000000"
+ ],
+ [
+ "14247.59",
+ "0.00703000"
+ ],
+ [
+ "14250.00",
+ "0.06300000"
+ ],
+ [
+ "14267.00",
+ "0.02000000"
+ ],
+ [
+ "14267.90",
+ "0.01783803"
+ ],
+ [
+ "14276.66",
+ "0.00381010"
+ ],
+ [
+ "14285.00",
+ "0.01053000"
+ ],
+ [
+ "14287.00",
+ "0.02000000"
+ ],
+ [
+ "14299.00",
+ "0.05000000"
+ ],
+ [
+ "14301.00",
+ "0.07130000"
+ ],
+ [
+ "14303.53",
+ "0.03558718"
+ ],
+ [
+ "14307.00",
+ "0.02000000"
+ ],
+ [
+ "14327.00",
+ "0.02000000"
+ ],
+ [
+ "14331.62",
+ "0.07000000"
+ ],
+ [
+ "14335.23",
+ "0.00202221"
+ ],
+ [
+ "14343.00",
+ "0.09000000"
+ ],
+ [
+ "14347.00",
+ "0.02000000"
+ ],
+ [
+ "14350.00",
+ "0.09638581"
+ ],
+ [
+ "14355.00",
+ "0.14004550"
+ ],
+ [
+ "14358.01",
+ "1.00000000"
+ ],
+ [
+ "14367.00",
+ "0.02000000"
+ ],
+ [
+ "14375.00",
+ "0.13809487"
+ ],
+ [
+ "14387.00",
+ "0.02000000"
+ ],
+ [
+ "14400.00",
+ "0.01000000"
+ ],
+ [
+ "14407.00",
+ "0.02000000"
+ ],
+ [
+ "14408.00",
+ "0.05000000"
+ ],
+ [
+ "14410.43",
+ "0.01766160"
+ ],
+ [
+ "14427.00",
+ "0.02000000"
+ ],
+ [
+ "14445.46",
+ "0.00035500"
+ ],
+ [
+ "14446.06",
+ "0.01761804"
+ ],
+ [
+ "14447.00",
+ "0.02000000"
+ ],
+ [
+ "14449.00",
+ "3.00000000"
+ ],
+ [
+ "14461.48",
+ "0.67000000"
+ ],
+ [
+ "14467.00",
+ "0.02000000"
+ ],
+ [
+ "14475.00",
+ "0.00416121"
+ ],
+ [
+ "14480.00",
+ "5.03993525"
+ ],
+ [
+ "14481.69",
+ "0.01757469"
+ ],
+ [
+ "14487.00",
+ "0.02000000"
+ ],
+ [
+ "14489.00",
+ "0.10000000"
+ ],
+ [
+ "14500.00",
+ "0.86822844"
+ ],
+ [
+ "14501.93",
+ "0.00035000"
+ ],
+ [
+ "14507.00",
+ "0.02000000"
+ ],
+ [
+ "14508.00",
+ "0.05000000"
+ ],
+ [
+ "14517.32",
+ "0.01753156"
+ ],
+ [
+ "14527.00",
+ "0.02000000"
+ ],
+ [
+ "14534.00",
+ "0.13000000"
+ ],
+ [
+ "14535.71",
+ "0.00054037"
+ ],
+ [
+ "14538.29",
+ "0.00267910"
+ ],
+ [
+ "14544.84",
+ "0.00500000"
+ ],
+ [
+ "14547.00",
+ "0.02000000"
+ ],
+ [
+ "14552.95",
+ "0.01748863"
+ ],
+ [
+ "14560.00",
+ "0.00690000"
+ ],
+ [
+ "14567.00",
+ "0.02000000"
+ ],
+ [
+ "14587.00",
+ "0.02000000"
+ ],
+ [
+ "14600.00",
+ "0.71956932"
+ ],
+ [
+ "14607.00",
+ "0.02000000"
+ ],
+ [
+ "14624.00",
+ "0.01500000"
+ ],
+ [
+ "14627.00",
+ "0.02000000"
+ ],
+ [
+ "14640.71",
+ "0.00035000"
+ ],
+ [
+ "14647.00",
+ "0.02000000"
+ ],
+ [
+ "14650.00",
+ "0.36000000"
+ ],
+ [
+ "14667.00",
+ "0.02000000"
+ ],
+ [
+ "14687.00",
+ "0.02000000"
+ ],
+ [
+ "14700.00",
+ "10.88500000"
+ ],
+ [
+ "14707.00",
+ "0.02000000"
+ ],
+ [
+ "14708.94",
+ "0.00132000"
+ ],
+ [
+ "14722.22",
+ "0.25000000"
+ ],
+ [
+ "14723.00",
+ "0.10000000"
+ ],
+ [
+ "14727.00",
+ "0.02000000"
+ ],
+ [
+ "14740.33",
+ "0.00212444"
+ ],
+ [
+ "14747.00",
+ "0.02000000"
+ ],
+ [
+ "14753.40",
+ "0.00274319"
+ ],
+ [
+ "14763.27",
+ "0.00226745"
+ ],
+ [
+ "14767.00",
+ "0.02000000"
+ ],
+ [
+ "14777.26",
+ "0.05000000"
+ ],
+ [
+ "14785.00",
+ "0.01017100"
+ ],
+ [
+ "14787.00",
+ "0.02000000"
+ ],
+ [
+ "14787.13",
+ "0.51919623"
+ ],
+ [
+ "14800.00",
+ "1.02080000"
+ ],
+ [
+ "14803.00",
+ "0.03000000"
+ ],
+ [
+ "14805.00",
+ "0.10000000"
+ ],
+ [
+ "14807.00",
+ "0.02000000"
+ ],
+ [
+ "14827.00",
+ "0.02000000"
+ ],
+ [
+ "14838.35",
+ "0.00051837"
+ ],
+ [
+ "14847.00",
+ "0.02000000"
+ ],
+ [
+ "14865.29",
+ "0.45583602"
+ ],
+ [
+ "14867.00",
+ "0.02000000"
+ ],
+ [
+ "14887.00",
+ "0.02000000"
+ ],
+ [
+ "14892.00",
+ "4.00000000"
+ ],
+ [
+ "14899.90",
+ "0.00450000"
+ ],
+ [
+ "14900.00",
+ "2.25048490"
+ ],
+ [
+ "14907.00",
+ "0.02000000"
+ ],
+ [
+ "14918.32",
+ "0.00892716"
+ ],
+ [
+ "14927.00",
+ "0.02000000"
+ ],
+ [
+ "14947.00",
+ "0.02000000"
+ ],
+ [
+ "14948.97",
+ "0.34000000"
+ ],
+ [
+ "14949.89",
+ "0.25000000"
+ ],
+ [
+ "14967.00",
+ "0.10929350"
+ ],
+ [
+ "14973.52",
+ "1.00000000"
+ ],
+ [
+ "14987.00",
+ "0.02000000"
+ ],
+ [
+ "14990.00",
+ "0.00200000"
+ ],
+ [
+ "14995.00",
+ "1.02000000"
+ ],
+ [
+ "14998.50",
+ "0.00100000"
+ ],
+ [
+ "14999.99",
+ "0.06000000"
+ ],
+ [
+ "15000.00",
+ "17.75924732"
+ ],
+ [
+ "15000.78",
+ "0.14114187"
+ ],
+ [
+ "15007.00",
+ "0.02000000"
+ ],
+ [
+ "15025.68",
+ "0.02500000"
+ ],
+ [
+ "15027.00",
+ "0.02000000"
+ ],
+ [
+ "15034.44",
+ "0.00364875"
+ ],
+ [
+ "15046.60",
+ "0.00055521"
+ ],
+ [
+ "15047.00",
+ "0.02000000"
+ ],
+ [
+ "15067.00",
+ "0.02000000"
+ ],
+ [
+ "15077.72",
+ "0.00034720"
+ ],
+ [
+ "15079.00",
+ "0.12000000"
+ ],
+ [
+ "15087.00",
+ "0.02000000"
+ ],
+ [
+ "15091.44",
+ "0.00800000"
+ ],
+ [
+ "15095.00",
+ "1.00000000"
+ ],
+ [
+ "15100.00",
+ "0.09170622"
+ ],
+ [
+ "15107.00",
+ "0.02000000"
+ ],
+ [
+ "15114.63",
+ "0.00272178"
+ ],
+ [
+ "15116.31",
+ "0.01000000"
+ ],
+ [
+ "15125.00",
+ "0.68300000"
+ ],
+ [
+ "15125.12",
+ "0.00190848"
+ ],
+ [
+ "15147.33",
+ "0.00050310"
+ ],
+ [
+ "15147.84",
+ "0.02500000"
+ ],
+ [
+ "15164.02",
+ "0.02850000"
+ ],
+ [
+ "15183.09",
+ "0.00258348"
+ ],
+ [
+ "15190.00",
+ "0.15000000"
+ ],
+ [
+ "15190.52",
+ "0.00500000"
+ ],
+ [
+ "15195.00",
+ "1.00000000"
+ ],
+ [
+ "15200.00",
+ "0.10342423"
+ ],
+ [
+ "15211.61",
+ "0.40582430"
+ ],
+ [
+ "15212.31",
+ "0.40062000"
+ ],
+ [
+ "15221.48",
+ "0.00549440"
+ ],
+ [
+ "15232.65",
+ "0.24293794"
+ ],
+ [
+ "15250.00",
+ "0.00061620"
+ ],
+ [
+ "15261.23",
+ "0.19952000"
+ ],
+ [
+ "15268.50",
+ "0.02839211"
+ ],
+ [
+ "15270.00",
+ "0.00033000"
+ ],
+ [
+ "15274.00",
+ "0.07130000"
+ ],
+ [
+ "15285.00",
+ "0.01000000"
+ ],
+ [
+ "15295.00",
+ "1.00000000"
+ ],
+ [
+ "15300.00",
+ "0.25998341"
+ ],
+ [
+ "15326.00",
+ "0.03465975"
+ ],
+ [
+ "15343.80",
+ "0.00658020"
+ ],
+ [
+ "15370.17",
+ "4.00000000"
+ ],
+ [
+ "15374.76",
+ "0.00942253"
+ ],
+ [
+ "15395.00",
+ "1.00000000"
+ ],
+ [
+ "15400.00",
+ "0.02831955"
+ ],
+ [
+ "15420.00",
+ "0.00548768"
+ ],
+ [
+ "15448.12",
+ "0.00268530"
+ ],
+ [
+ "15462.78",
+ "0.00048823"
+ ],
+ [
+ "15480.00",
+ "0.02310000"
+ ],
+ [
+ "15494.00",
+ "0.14000000"
+ ],
+ [
+ "15495.00",
+ "1.00000000"
+ ],
+ [
+ "15499.82",
+ "0.00700000"
+ ],
+ [
+ "15500.00",
+ "2.98287455"
+ ],
+ [
+ "15529.44",
+ "0.00650044"
+ ],
+ [
+ "15550.00",
+ "0.00187744"
+ ],
+ [
+ "15553.72",
+ "0.00649047"
+ ],
+ [
+ "15553.80",
+ "0.00649047"
+ ],
+ [
+ "15555.00",
+ "0.77957830"
+ ],
+ [
+ "15564.01",
+ "0.00649047"
+ ],
+ [
+ "15565.97",
+ "0.00649047"
+ ],
+ [
+ "15595.00",
+ "1.00000000"
+ ],
+ [
+ "15600.00",
+ "0.39308935"
+ ],
+ [
+ "15600.72",
+ "0.00038844"
+ ],
+ [
+ "15662.21",
+ "0.00038691"
+ ],
+ [
+ "15694.69",
+ "0.00700000"
+ ],
+ [
+ "15695.00",
+ "1.00000000"
+ ],
+ [
+ "15695.26",
+ "1.00000000"
+ ],
+ [
+ "15695.28",
+ "0.00500000"
+ ],
+ [
+ "15723.35",
+ "0.00289830"
+ ],
+ [
+ "15740.00",
+ "0.00050826"
+ ],
+ [
+ "15750.00",
+ "0.50000000"
+ ],
+ [
+ "15753.00",
+ "0.00472144"
+ ],
+ [
+ "15761.16",
+ "0.00700000"
+ ],
+ [
+ "15777.26",
+ "0.05000000"
+ ],
+ [
+ "15784.70",
+ "0.00047763"
+ ],
+ [
+ "15785.00",
+ "0.01000000"
+ ],
+ [
+ "15795.00",
+ "1.00000000"
+ ],
+ [
+ "15820.00",
+ "0.52673918"
+ ],
+ [
+ "15831.00",
+ "2.00000000"
+ ],
+ [
+ "15850.00",
+ "0.10000000"
+ ],
+ [
+ "15850.05",
+ "0.00035520"
+ ],
+ [
+ "15867.00",
+ "0.01000000"
+ ],
+ [
+ "15875.00",
+ "0.05000000"
+ ],
+ [
+ "15893.54",
+ "0.00700000"
+ ],
+ [
+ "15895.00",
+ "1.00000000"
+ ],
+ [
+ "15898.56",
+ "0.04000000"
+ ],
+ [
+ "15900.00",
+ "0.10000000"
+ ],
+ [
+ "15948.97",
+ "0.31500000"
+ ],
+ [
+ "15950.00",
+ "0.50000000"
+ ],
+ [
+ "15953.23",
+ "1.00000000"
+ ],
+ [
+ "15962.55",
+ "0.66067033"
+ ],
+ [
+ "15988.71",
+ "0.10000000"
+ ],
+ [
+ "15989.00",
+ "0.01000000"
+ ],
+ [
+ "15990.00",
+ "0.00050031"
+ ],
+ [
+ "15995.00",
+ "1.00000000"
+ ],
+ [
+ "15999.00",
+ "0.22288000"
+ ],
+ [
+ "16000.00",
+ "7.97594916"
+ ],
+ [
+ "16001.00",
+ "0.10980000"
+ ],
+ [
+ "16002.00",
+ "0.11290000"
+ ],
+ [
+ "16023.00",
+ "0.48710000"
+ ],
+ [
+ "16042.04",
+ "0.00629107"
+ ],
+ [
+ "16074.51",
+ "0.00628110"
+ ],
+ [
+ "16074.69",
+ "0.00628110"
+ ],
+ [
+ "16095.00",
+ "1.05000000"
+ ],
+ [
+ "16100.00",
+ "0.05000000"
+ ],
+ [
+ "16100.20",
+ "0.00627113"
+ ],
+ [
+ "16117.46",
+ "0.00046713"
+ ],
+ [
+ "16150.00",
+ "0.01000000"
+ ],
+ [
+ "16153.98",
+ "0.00241739"
+ ],
+ [
+ "16167.65",
+ "0.11500007"
+ ],
+ [
+ "16179.69",
+ "0.04545199"
+ ],
+ [
+ "16180.00",
+ "0.70000000"
+ ],
+ [
+ "16185.53",
+ "0.00624122"
+ ],
+ [
+ "16195.00",
+ "1.00000000"
+ ],
+ [
+ "16200.02",
+ "0.06400000"
+ ],
+ [
+ "16227.58",
+ "0.00037343"
+ ],
+ [
+ "16239.00",
+ "0.00600000"
+ ],
+ [
+ "16250.00",
+ "1.30000000"
+ ],
+ [
+ "16270.52",
+ "0.01000000"
+ ],
+ [
+ "16274.11",
+ "0.00620134"
+ ],
+ [
+ "16297.39",
+ "0.00300000"
+ ],
+ [
+ "16300.00",
+ "0.07800000"
+ ],
+ [
+ "16319.04",
+ "0.75255384"
+ ],
+ [
+ "16320.75",
+ "0.22274669"
+ ],
+ [
+ "16345.00",
+ "1.00000000"
+ ],
+ [
+ "16363.52",
+ "0.00321099"
+ ],
+ [
+ "16416.00",
+ "0.02967987"
+ ],
+ [
+ "16428.87",
+ "0.00036886"
+ ],
+ [
+ "16449.00",
+ "0.39700467"
+ ],
+ [
+ "16450.00",
+ "0.10000000"
+ ],
+ [
+ "16453.15",
+ "0.00045760"
+ ],
+ [
+ "16456.00",
+ "0.01000000"
+ ],
+ [
+ "16484.00",
+ "0.20000000"
+ ],
+ [
+ "16495.00",
+ "1.00000000"
+ ],
+ [
+ "16500.00",
+ "2.88107774"
+ ],
+ [
+ "16512.98",
+ "0.00500000"
+ ],
+ [
+ "16530.00",
+ "1.60000000"
+ ],
+ [
+ "16550.00",
+ "0.10000000"
+ ],
+ [
+ "16563.22",
+ "0.00924488"
+ ],
+ [
+ "16566.27",
+ "0.00171113"
+ ],
+ [
+ "16576.26",
+ "0.00030300"
+ ],
+ [
+ "16579.69",
+ "0.00500000"
+ ],
+ [
+ "16580.90",
+ "0.06524197"
+ ],
+ [
+ "16655.00",
+ "0.10000000"
+ ],
+ [
+ "16657.00",
+ "0.50000000"
+ ],
+ [
+ "16661.00",
+ "0.03020000"
+ ],
+ [
+ "16667.00",
+ "0.75000000"
+ ],
+ [
+ "16700.20",
+ "0.12142526"
+ ],
+ [
+ "16719.13",
+ "0.01049151"
+ ],
+ [
+ "16742.08",
+ "0.00940638"
+ ],
+ [
+ "16745.00",
+ "1.00000000"
+ ],
+ [
+ "16750.00",
+ "0.10500000"
+ ],
+ [
+ "16761.99",
+ "0.18469000"
+ ],
+ [
+ "16777.26",
+ "0.05000000"
+ ],
+ [
+ "16785.00",
+ "0.01000000"
+ ],
+ [
+ "16788.77",
+ "0.00029900"
+ ],
+ [
+ "16795.68",
+ "0.00044767"
+ ],
+ [
+ "16800.00",
+ "0.70026252"
+ ],
+ [
+ "16802.22",
+ "0.00036066"
+ ],
+ [
+ "16824.80",
+ "0.00059049"
+ ],
+ [
+ "16830.85",
+ "0.00500000"
+ ],
+ [
+ "16833.00",
+ "1.00000000"
+ ],
+ [
+ "16866.66",
+ "0.01609000"
+ ],
+ [
+ "16866.97",
+ "0.00356357"
+ ],
+ [
+ "16884.56",
+ "0.52848000"
+ ],
+ [
+ "16888.00",
+ "0.07000000"
+ ],
+ [
+ "16890.00",
+ "0.10000000"
+ ],
+ [
+ "16900.00",
+ "0.05000000"
+ ],
+ [
+ "16906.50",
+ "0.02200000"
+ ],
+ [
+ "16921.91",
+ "0.00755900"
+ ],
+ [
+ "16931.00",
+ "1.00000000"
+ ],
+ [
+ "16948.97",
+ "0.29500000"
+ ],
+ [
+ "16950.00",
+ "0.01304861"
+ ],
+ [
+ "16985.00",
+ "0.05000000"
+ ],
+ [
+ "16989.00",
+ "0.01000000"
+ ],
+ [
+ "16994.40",
+ "0.53444176"
+ ],
+ [
+ "16995.00",
+ "1.00000000"
+ ],
+ [
+ "16998.00",
+ "0.30000000"
+ ],
+ [
+ "16998.90",
+ "0.02731427"
+ ],
+ [
+ "16999.00",
+ "1.45837340"
+ ],
+ [
+ "17000.00",
+ "3.43808601"
+ ],
+ [
+ "17035.76",
+ "0.04000000"
+ ],
+ [
+ "17036.00",
+ "0.09790000"
+ ],
+ [
+ "17071.91",
+ "0.00029400"
+ ],
+ [
+ "17077.07",
+ "0.44298000"
+ ],
+ [
+ "17085.00",
+ "0.00360000"
+ ],
+ [
+ "17095.00",
+ "0.06862161"
+ ],
+ [
+ "17099.00",
+ "0.05000000"
+ ],
+ [
+ "17099.97",
+ "0.15675382"
+ ],
+ [
+ "17100.00",
+ "0.13180509"
+ ],
+ [
+ "17120.11",
+ "0.01000000"
+ ],
+ [
+ "17123.30",
+ "0.01100000"
+ ],
+ [
+ "17135.76",
+ "0.04000000"
+ ],
+ [
+ "17140.33",
+ "0.00035355"
+ ],
+ [
+ "17176.75",
+ "0.20000000"
+ ],
+ [
+ "17180.00",
+ "0.00600000"
+ ],
+ [
+ "17200.00",
+ "1.14062871"
+ ],
+ [
+ "17212.00",
+ "0.02343789"
+ ],
+ [
+ "17221.58",
+ "0.04003847"
+ ],
+ [
+ "17234.00",
+ "0.10000000"
+ ],
+ [
+ "17240.00",
+ "0.00046404"
+ ],
+ [
+ "17245.00",
+ "1.00000000"
+ ],
+ [
+ "17250.00",
+ "0.53454735"
+ ],
+ [
+ "17265.00",
+ "0.57500000"
+ ],
+ [
+ "17300.00",
+ "0.03368631"
+ ],
+ [
+ "17305.01",
+ "0.06000000"
+ ],
+ [
+ "17327.24",
+ "0.00034973"
+ ],
+ [
+ "17334.57",
+ "0.00347296"
+ ],
+ [
+ "17350.00",
+ "0.10000000"
+ ],
+ [
+ "17363.02",
+ "0.06000000"
+ ],
+ [
+ "17388.00",
+ "0.01000000"
+ ],
+ [
+ "17395.00",
+ "0.50000000"
+ ],
+ [
+ "17399.00",
+ "0.00900000"
+ ],
+ [
+ "17400.49",
+ "0.00028900"
+ ],
+ [
+ "17403.97",
+ "0.51654000"
+ ],
+ [
+ "17412.00",
+ "0.16000000"
+ ],
+ [
+ "17422.46",
+ "0.00162825"
+ ],
+ [
+ "17423.52",
+ "0.00100000"
+ ],
+ [
+ "17430.00",
+ "0.05000000"
+ ],
+ [
+ "17440.00",
+ "1.00000000"
+ ],
+ [
+ "17462.00",
+ "0.15800000"
+ ],
+ [
+ "17495.00",
+ "1.09394342"
+ ],
+ [
+ "17498.70",
+ "0.00080000"
+ ],
+ [
+ "17499.00",
+ "1.10000000"
+ ],
+ [
+ "17500.00",
+ "2.12499918"
+ ],
+ [
+ "17509.00",
+ "0.48710000"
+ ],
+ [
+ "17532.00",
+ "0.10000000"
+ ],
+ [
+ "17560.00",
+ "0.00033289"
+ ],
+ [
+ "17561.07",
+ "0.14250106"
+ ],
+ [
+ "17571.96",
+ "0.00221747"
+ ],
+ [
+ "17582.50",
+ "0.00500000"
+ ],
+ [
+ "17600.00",
+ "1.03857865"
+ ],
+ [
+ "17632.00",
+ "0.10000000"
+ ],
+ [
+ "17686.00",
+ "0.03100000"
+ ],
+ [
+ "17688.00",
+ "0.61695627"
+ ],
+ [
+ "17700.00",
+ "0.03615625"
+ ],
+ [
+ "17700.77",
+ "0.95000000"
+ ],
+ [
+ "17735.21",
+ "0.00054092"
+ ],
+ [
+ "17738.00",
+ "0.10000000"
+ ],
+ [
+ "17741.18",
+ "0.00054093"
+ ],
+ [
+ "17745.00",
+ "1.00000000"
+ ],
+ [
+ "17747.16",
+ "0.00054094"
+ ],
+ [
+ "17750.00",
+ "0.02500000"
+ ],
+ [
+ "17753.13",
+ "0.00054095"
+ ],
+ [
+ "17759.10",
+ "0.00054096"
+ ],
+ [
+ "17760.00",
+ "0.03000000"
+ ],
+ [
+ "17765.07",
+ "0.00054097"
+ ],
+ [
+ "17770.12",
+ "0.07000000"
+ ],
+ [
+ "17771.04",
+ "0.00054098"
+ ],
+ [
+ "17775.00",
+ "0.10000000"
+ ],
+ [
+ "17777.00",
+ "0.04560000"
+ ],
+ [
+ "17777.01",
+ "0.00054099"
+ ],
+ [
+ "17777.26",
+ "0.05000000"
+ ],
+ [
+ "17782.99",
+ "0.00054100"
+ ],
+ [
+ "17785.00",
+ "0.01000000"
+ ],
+ [
+ "17786.00",
+ "0.17000000"
+ ],
+ [
+ "17788.96",
+ "0.00054101"
+ ],
+ [
+ "17794.93",
+ "0.00054102"
+ ],
+ [
+ "17800.00",
+ "0.28068221"
+ ],
+ [
+ "17800.90",
+ "0.00054103"
+ ],
+ [
+ "17803.12",
+ "0.01000000"
+ ],
+ [
+ "17806.87",
+ "0.00054104"
+ ],
+ [
+ "17812.85",
+ "0.00054105"
+ ],
+ [
+ "17818.82",
+ "0.00054106"
+ ],
+ [
+ "17824.79",
+ "0.00054107"
+ ],
+ [
+ "17826.70",
+ "0.30000000"
+ ],
+ [
+ "17830.76",
+ "0.00054108"
+ ],
+ [
+ "17836.73",
+ "0.00054109"
+ ],
+ [
+ "17838.00",
+ "0.10000000"
+ ],
+ [
+ "17842.70",
+ "0.00054110"
+ ],
+ [
+ "17848.68",
+ "0.00054111"
+ ],
+ [
+ "17850.00",
+ "0.00500000"
+ ],
+ [
+ "17854.65",
+ "0.00054112"
+ ],
+ [
+ "17860.62",
+ "0.00054113"
+ ],
+ [
+ "17862.64",
+ "0.00373482"
+ ],
+ [
+ "17863.21",
+ "0.06000000"
+ ],
+ [
+ "17866.59",
+ "0.00054114"
+ ],
+ [
+ "17872.56",
+ "0.00054115"
+ ],
+ [
+ "17878.53",
+ "0.00054116"
+ ],
+ [
+ "17880.00",
+ "0.01000000"
+ ],
+ [
+ "17884.51",
+ "0.00054117"
+ ],
+ [
+ "17888.00",
+ "0.02000000"
+ ],
+ [
+ "17889.00",
+ "0.01000000"
+ ],
+ [
+ "17890.48",
+ "0.00054118"
+ ],
+ [
+ "17896.45",
+ "0.00054119"
+ ],
+ [
+ "17897.39",
+ "0.01000000"
+ ],
+ [
+ "17900.00",
+ "0.44319995"
+ ],
+ [
+ "17902.42",
+ "0.00054120"
+ ],
+ [
+ "17908.39",
+ "0.00054121"
+ ],
+ [
+ "17912.07",
+ "0.01213300"
+ ],
+ [
+ "17914.37",
+ "0.00054122"
+ ],
+ [
+ "17920.34",
+ "0.00054123"
+ ],
+ [
+ "17926.31",
+ "0.00054124"
+ ],
+ [
+ "17932.28",
+ "0.00054125"
+ ],
+ [
+ "17938.00",
+ "0.10000000"
+ ],
+ [
+ "17938.25",
+ "0.00053126"
+ ],
+ [
+ "17938.58",
+ "0.00057859"
+ ],
+ [
+ "17944.22",
+ "0.00053127"
+ ],
+ [
+ "17948.97",
+ "0.29500000"
+ ],
+ [
+ "17950.00",
+ "0.28263464"
+ ],
+ [
+ "17950.20",
+ "0.00053128"
+ ],
+ [
+ "17956.17",
+ "0.00053129"
+ ],
+ [
+ "17957.76",
+ "0.00057862"
+ ],
+ [
+ "17960.00",
+ "0.17259130"
+ ],
+ [
+ "17962.14",
+ "0.00053130"
+ ],
+ [
+ "17968.11",
+ "0.00053131"
+ ],
+ [
+ "17974.08",
+ "0.00053132"
+ ],
+ [
+ "17976.94",
+ "0.00057865"
+ ],
+ [
+ "17980.05",
+ "0.00053133"
+ ],
+ [
+ "17986.03",
+ "0.00053134"
+ ],
+ [
+ "17987.30",
+ "0.00500000"
+ ],
+ [
+ "17988.00",
+ "0.10000000"
+ ],
+ [
+ "17990.00",
+ "0.05904634"
+ ],
+ [
+ "17992.00",
+ "0.00053135"
+ ],
+ [
+ "17995.00",
+ "1.00000000"
+ ],
+ [
+ "17996.11",
+ "0.00057868"
+ ],
+ [
+ "17997.97",
+ "0.00053136"
+ ],
+ [
+ "17999.00",
+ "0.11892785"
+ ],
+ [
+ "17999.99",
+ "0.29360393"
+ ],
+ [
+ "18000.00",
+ "4.47287845"
+ ],
+ [
+ "18000.02",
+ "0.05730379"
+ ],
+ [
+ "18000.99",
+ "0.00028439"
+ ],
+ [
+ "18002.00",
+ "0.11290000"
+ ],
+ [
+ "18003.94",
+ "0.00053137"
+ ],
+ [
+ "18009.91",
+ "0.00053138"
+ ],
+ [
+ "18015.29",
+ "0.00057871"
+ ],
+ [
+ "18015.89",
+ "0.00053139"
+ ],
+ [
+ "18020.00",
+ "0.00155800"
+ ],
+ [
+ "18021.86",
+ "0.00053140"
+ ],
+ [
+ "18027.83",
+ "0.00053141"
+ ],
+ [
+ "18028.50",
+ "0.02000000"
+ ],
+ [
+ "18033.80",
+ "0.00053142"
+ ],
+ [
+ "18039.77",
+ "0.00053143"
+ ],
+ [
+ "18045.74",
+ "0.00053144"
+ ],
+ [
+ "18051.72",
+ "0.00053145"
+ ],
+ [
+ "18054.00",
+ "0.02000000"
+ ],
+ [
+ "18057.69",
+ "0.00053146"
+ ],
+ [
+ "18063.66",
+ "0.00053147"
+ ],
+ [
+ "18069.63",
+ "0.00053148"
+ ],
+ [
+ "18075.60",
+ "0.00053149"
+ ],
+ [
+ "18079.50",
+ "0.02000000"
+ ],
+ [
+ "18081.45",
+ "0.32836000"
+ ],
+ [
+ "18081.58",
+ "0.00053150"
+ ],
+ [
+ "18087.55",
+ "0.00053151"
+ ],
+ [
+ "18088.00",
+ "0.10000000"
+ ],
+ [
+ "18093.52",
+ "0.00053152"
+ ],
+ [
+ "18099.49",
+ "0.00053153"
+ ],
+ [
+ "18101.00",
+ "0.00440000"
+ ],
+ [
+ "18105.00",
+ "0.02000000"
+ ],
+ [
+ "18105.46",
+ "0.00053154"
+ ],
+ [
+ "18110.00",
+ "0.05000000"
+ ],
+ [
+ "18110.06",
+ "0.00798530"
+ ],
+ [
+ "18111.43",
+ "0.00053155"
+ ],
+ [
+ "18117.41",
+ "0.00053156"
+ ],
+ [
+ "18117.50",
+ "0.61840441"
+ ],
+ [
+ "18123.38",
+ "0.00053157"
+ ],
+ [
+ "18126.31",
+ "0.02000000"
+ ],
+ [
+ "18129.35",
+ "0.00053158"
+ ],
+ [
+ "18130.50",
+ "0.02000000"
+ ],
+ [
+ "18135.32",
+ "0.00053159"
+ ],
+ [
+ "18135.72",
+ "0.00226646"
+ ],
+ [
+ "18141.29",
+ "0.00053160"
+ ],
+ [
+ "18147.26",
+ "0.00053161"
+ ],
+ [
+ "18153.24",
+ "0.00053162"
+ ],
+ [
+ "18156.00",
+ "0.02000000"
+ ],
+ [
+ "18157.30",
+ "0.00500000"
+ ],
+ [
+ "18159.21",
+ "0.00053163"
+ ],
+ [
+ "18160.78",
+ "0.00156228"
+ ],
+ [
+ "18165.18",
+ "0.00053164"
+ ],
+ [
+ "18171.15",
+ "0.00053165"
+ ],
+ [
+ "18177.12",
+ "0.00053166"
+ ],
+ [
+ "18181.00",
+ "0.20000000"
+ ],
+ [
+ "18181.50",
+ "0.02000000"
+ ],
+ [
+ "18181.82",
+ "0.50000000"
+ ],
+ [
+ "18183.10",
+ "0.00053167"
+ ],
+ [
+ "18188.00",
+ "0.10000000"
+ ],
+ [
+ "18189.07",
+ "0.00053168"
+ ],
+ [
+ "18195.04",
+ "0.00053169"
+ ],
+ [
+ "18200.00",
+ "0.56060198"
+ ],
+ [
+ "18201.01",
+ "0.00053170"
+ ],
+ [
+ "18206.98",
+ "0.00053171"
+ ],
+ [
+ "18207.00",
+ "0.02000000"
+ ],
+ [
+ "18211.11",
+ "0.05000000"
+ ],
+ [
+ "18212.95",
+ "0.00053172"
+ ],
+ [
+ "18218.93",
+ "0.00053173"
+ ],
+ [
+ "18224.90",
+ "0.00053174"
+ ],
+ [
+ "18230.76",
+ "0.00109782"
+ ],
+ [
+ "18230.87",
+ "0.00053175"
+ ],
+ [
+ "18232.50",
+ "0.02000000"
+ ],
+ [
+ "18236.84",
+ "0.00053176"
+ ],
+ [
+ "18238.00",
+ "0.05000000"
+ ],
+ [
+ "18242.81",
+ "0.00053177"
+ ],
+ [
+ "18248.79",
+ "0.00053178"
+ ],
+ [
+ "18250.00",
+ "0.02500000"
+ ],
+ [
+ "18254.76",
+ "0.00053179"
+ ],
+ [
+ "18255.00",
+ "0.10000000"
+ ],
+ [
+ "18258.00",
+ "0.02000000"
+ ],
+ [
+ "18260.73",
+ "0.00053180"
+ ],
+ [
+ "18266.70",
+ "0.00053181"
+ ],
+ [
+ "18272.67",
+ "0.00053182"
+ ],
+ [
+ "18278.64",
+ "0.00052183"
+ ],
+ [
+ "18283.50",
+ "0.02000000"
+ ],
+ [
+ "18284.62",
+ "0.00052184"
+ ],
+ [
+ "18288.00",
+ "0.06000000"
+ ],
+ [
+ "18290.59",
+ "0.00052185"
+ ],
+ [
+ "18296.56",
+ "0.00052186"
+ ],
+ [
+ "18302.53",
+ "0.00052187"
+ ],
+ [
+ "18308.50",
+ "0.00052188"
+ ],
+ [
+ "18309.00",
+ "0.02000000"
+ ],
+ [
+ "18314.47",
+ "0.00052189"
+ ],
+ [
+ "18320.45",
+ "0.00052190"
+ ],
+ [
+ "18321.20",
+ "1.00000000"
+ ],
+ [
+ "18326.42",
+ "0.00052191"
+ ],
+ [
+ "18332.39",
+ "0.00052192"
+ ],
+ [
+ "18334.50",
+ "0.02000000"
+ ],
+ [
+ "18338.00",
+ "0.05000000"
+ ],
+ [
+ "18338.36",
+ "0.00052193"
+ ],
+ [
+ "18344.33",
+ "0.00052194"
+ ],
+ [
+ "18350.31",
+ "0.00052195"
+ ],
+ [
+ "18356.28",
+ "0.00052196"
+ ],
+ [
+ "18360.00",
+ "0.02000000"
+ ],
+ [
+ "18362.25",
+ "0.00052197"
+ ],
+ [
+ "18368.22",
+ "0.00052198"
+ ],
+ [
+ "18370.00",
+ "0.05000000"
+ ],
+ [
+ "18374.19",
+ "0.00052199"
+ ],
+ [
+ "18380.16",
+ "0.00052200"
+ ],
+ [
+ "18385.50",
+ "0.04000000"
+ ],
+ [
+ "18386.14",
+ "0.00052201"
+ ],
+ [
+ "18392.11",
+ "0.00052202"
+ ],
+ [
+ "18398.08",
+ "0.00052203"
+ ],
+ [
+ "18400.00",
+ "0.75000000"
+ ],
+ [
+ "18404.05",
+ "0.00052204"
+ ],
+ [
+ "18411.00",
+ "0.04000000"
+ ],
+ [
+ "18421.97",
+ "0.00052207"
+ ],
+ [
+ "18422.00",
+ "0.02000000"
+ ],
+ [
+ "18436.50",
+ "0.04000000"
+ ],
+ [
+ "18438.00",
+ "0.05000000"
+ ],
+ [
+ "18439.00",
+ "0.01000000"
+ ],
+ [
+ "18439.88",
+ "0.00052210"
+ ],
+ [
+ "18457.80",
+ "0.00052213"
+ ],
+ [
+ "18459.00",
+ "0.01000000"
+ ],
+ [
+ "18462.00",
+ "0.04000000"
+ ],
+ [
+ "18469.74",
+ "0.00052215"
+ ],
+ [
+ "18472.07",
+ "0.00278972"
+ ],
+ [
+ "18475.71",
+ "0.00052216"
+ ],
+ [
+ "18481.68",
+ "0.00052217"
+ ],
+ [
+ "18487.50",
+ "0.04000000"
+ ],
+ [
+ "18487.66",
+ "0.00052218"
+ ],
+ [
+ "18488.00",
+ "0.05000000"
+ ],
+ [
+ "18493.63",
+ "0.00052219"
+ ],
+ [
+ "18494.56",
+ "0.10000000"
+ ],
+ [
+ "18495.00",
+ "1.00000000"
+ ],
+ [
+ "18495.89",
+ "0.00276107"
+ ],
+ [
+ "18498.50",
+ "0.05171943"
+ ],
+ [
+ "18499.60",
+ "0.00052220"
+ ],
+ [
+ "18500.00",
+ "3.43380001"
+ ],
+ [
+ "18505.57",
+ "0.00052221"
+ ],
+ [
+ "18511.54",
+ "0.00052222"
+ ],
+ [
+ "18513.00",
+ "0.04000000"
+ ],
+ [
+ "18517.52",
+ "0.00052223"
+ ],
+ [
+ "18523.49",
+ "0.00052224"
+ ],
+ [
+ "18529.46",
+ "0.00104450"
+ ],
+ [
+ "18535.43",
+ "0.00052226"
+ ],
+ [
+ "18537.47",
+ "0.00390870"
+ ],
+ [
+ "18538.00",
+ "0.05000000"
+ ],
+ [
+ "18538.50",
+ "0.04000000"
+ ],
+ [
+ "18541.40",
+ "0.00052227"
+ ],
+ [
+ "18547.37",
+ "0.00052228"
+ ],
+ [
+ "18550.00",
+ "10.00000000"
+ ],
+ [
+ "18553.35",
+ "0.00052229"
+ ],
+ [
+ "18559.32",
+ "0.00052230"
+ ],
+ [
+ "18564.00",
+ "0.04000000"
+ ],
+ [
+ "18565.29",
+ "0.00052231"
+ ],
+ [
+ "18571.26",
+ "0.00052232"
+ ],
+ [
+ "18577.23",
+ "0.00052233"
+ ],
+ [
+ "18582.50",
+ "0.00500000"
+ ],
+ [
+ "18583.00",
+ "0.05000000"
+ ],
+ [
+ "18583.20",
+ "0.00052234"
+ ],
+ [
+ "18589.18",
+ "0.00052235"
+ ],
+ [
+ "18589.50",
+ "0.04000000"
+ ],
+ [
+ "18595.15",
+ "0.00052236"
+ ],
+ [
+ "18600.00",
+ "0.30000000"
+ ],
+ [
+ "18601.12",
+ "0.00052237"
+ ],
+ [
+ "18607.09",
+ "0.00052238"
+ ],
+ [
+ "18613.06",
+ "0.00052239"
+ ],
+ [
+ "18615.00",
+ "0.04000000"
+ ],
+ [
+ "18619.04",
+ "0.00052240"
+ ],
+ [
+ "18625.01",
+ "0.00052241"
+ ],
+ [
+ "18630.00",
+ "0.50000000"
+ ],
+ [
+ "18630.98",
+ "0.00052242"
+ ],
+ [
+ "18633.00",
+ "0.05000000"
+ ],
+ [
+ "18636.95",
+ "0.00051243"
+ ],
+ [
+ "18640.50",
+ "0.04000000"
+ ],
+ [
+ "18642.92",
+ "0.00051244"
+ ],
+ [
+ "18648.89",
+ "0.00051245"
+ ],
+ [
+ "18650.00",
+ "0.20000000"
+ ],
+ [
+ "18654.87",
+ "0.00051246"
+ ],
+ [
+ "18660.84",
+ "0.00051247"
+ ],
+ [
+ "18662.25",
+ "0.00363063"
+ ],
+ [
+ "18666.00",
+ "0.04000000"
+ ],
+ [
+ "18666.81",
+ "0.00051248"
+ ],
+ [
+ "18672.78",
+ "0.00051249"
+ ],
+ [
+ "18678.75",
+ "0.00051250"
+ ],
+ [
+ "18683.00",
+ "0.05000000"
+ ],
+ [
+ "18684.73",
+ "0.00051251"
+ ],
+ [
+ "18690.70",
+ "0.00051252"
+ ],
+ [
+ "18691.50",
+ "0.04000000"
+ ],
+ [
+ "18696.67",
+ "0.00051253"
+ ],
+ [
+ "18700.00",
+ "0.33999988"
+ ],
+ [
+ "18702.64",
+ "0.00051254"
+ ],
+ [
+ "18708.61",
+ "0.00051255"
+ ],
+ [
+ "18714.58",
+ "0.00051256"
+ ],
+ [
+ "18717.00",
+ "0.04000000"
+ ],
+ [
+ "18720.56",
+ "0.00051257"
+ ],
+ [
+ "18721.84",
+ "0.01000000"
+ ],
+ [
+ "18726.53",
+ "0.00051258"
+ ],
+ [
+ "18732.50",
+ "0.00051259"
+ ],
+ [
+ "18732.73",
+ "0.01049151"
+ ],
+ [
+ "18733.00",
+ "0.05000000"
+ ],
+ [
+ "18738.47",
+ "0.00051260"
+ ],
+ [
+ "18742.50",
+ "0.04000000"
+ ],
+ [
+ "18744.44",
+ "0.00051261"
+ ],
+ [
+ "18750.00",
+ "0.79200000"
+ ],
+ [
+ "18750.41",
+ "0.00051262"
+ ],
+ [
+ "18756.39",
+ "0.00051263"
+ ],
+ [
+ "18762.36",
+ "0.00051264"
+ ],
+ [
+ "18763.48",
+ "0.01919348"
+ ],
+ [
+ "18765.00",
+ "0.18352560"
+ ],
+ [
+ "18768.00",
+ "0.04000000"
+ ],
+ [
+ "18768.33",
+ "0.00051265"
+ ],
+ [
+ "18769.00",
+ "0.02963512"
+ ],
+ [
+ "18774.30",
+ "0.00051266"
+ ],
+ [
+ "18777.26",
+ "0.05000000"
+ ],
+ [
+ "18780.00",
+ "1.00000000"
+ ],
+ [
+ "18780.27",
+ "0.00051267"
+ ],
+ [
+ "18781.80",
+ "0.00813018"
+ ],
+ [
+ "18786.25",
+ "0.00051268"
+ ],
+ [
+ "18792.22",
+ "0.00051269"
+ ],
+ [
+ "18793.50",
+ "0.04000000"
+ ],
+ [
+ "18798.19",
+ "0.00051270"
+ ],
+ [
+ "18800.00",
+ "0.03039127"
+ ],
+ [
+ "18804.16",
+ "0.00051271"
+ ],
+ [
+ "18810.13",
+ "0.00051272"
+ ],
+ [
+ "18816.10",
+ "0.00051273"
+ ],
+ [
+ "18819.00",
+ "0.04000000"
+ ],
+ [
+ "18822.08",
+ "0.00051274"
+ ],
+ [
+ "18825.00",
+ "0.37279005"
+ ],
+ [
+ "18828.05",
+ "0.00051275"
+ ],
+ [
+ "18834.02",
+ "0.00051276"
+ ],
+ [
+ "18837.52",
+ "0.00032169"
+ ],
+ [
+ "18839.99",
+ "0.00051277"
+ ],
+ [
+ "18844.50",
+ "0.04000000"
+ ],
+ [
+ "18845.96",
+ "0.00051278"
+ ],
+ [
+ "18851.93",
+ "0.00051279"
+ ],
+ [
+ "18857.91",
+ "0.00051280"
+ ],
+ [
+ "18863.88",
+ "0.00051281"
+ ],
+ [
+ "18866.69",
+ "0.01846683"
+ ],
+ [
+ "18869.85",
+ "0.00051282"
+ ],
+ [
+ "18870.00",
+ "0.04000000"
+ ],
+ [
+ "18875.82",
+ "0.00051283"
+ ],
+ [
+ "18881.79",
+ "0.00051284"
+ ],
+ [
+ "18883.00",
+ "0.10000000"
+ ],
+ [
+ "18887.77",
+ "0.00051285"
+ ],
+ [
+ "18888.00",
+ "2.02000000"
+ ],
+ [
+ "18888.23",
+ "0.34200000"
+ ],
+ [
+ "18892.00",
+ "0.02652234"
+ ],
+ [
+ "18893.74",
+ "0.00051286"
+ ],
+ [
+ "18895.50",
+ "0.04000000"
+ ],
+ [
+ "18897.88",
+ "0.34934000"
+ ],
+ [
+ "18897.89",
+ "0.00270367"
+ ],
+ [
+ "18899.71",
+ "0.00051287"
+ ],
+ [
+ "18900.00",
+ "3.14684635"
+ ],
+ [
+ "18905.68",
+ "0.00051288"
+ ],
+ [
+ "18911.65",
+ "0.00051289"
+ ],
+ [
+ "18917.62",
+ "0.00051290"
+ ],
+ [
+ "18920.00",
+ "0.00148400"
+ ],
+ [
+ "18921.00",
+ "0.04000000"
+ ],
+ [
+ "18923.60",
+ "0.00051291"
+ ],
+ [
+ "18926.20",
+ "0.34619386"
+ ],
+ [
+ "18929.57",
+ "0.00051292"
+ ],
+ [
+ "18930.00",
+ "0.10000000"
+ ],
+ [
+ "18933.00",
+ "0.05000000"
+ ],
+ [
+ "18935.54",
+ "0.00051293"
+ ],
+ [
+ "18941.51",
+ "0.00051294"
+ ],
+ [
+ "18946.50",
+ "0.04000000"
+ ],
+ [
+ "18947.48",
+ "0.00051295"
+ ],
+ [
+ "18948.97",
+ "0.29500000"
+ ],
+ [
+ "18950.00",
+ "1.02726167"
+ ],
+ [
+ "18953.46",
+ "0.00051296"
+ ],
+ [
+ "18959.43",
+ "0.00051297"
+ ],
+ [
+ "18965.40",
+ "0.00051298"
+ ],
+ [
+ "18971.37",
+ "0.00051299"
+ ],
+ [
+ "18972.00",
+ "0.04000000"
+ ],
+ [
+ "18977.34",
+ "0.00051300"
+ ],
+ [
+ "18983.00",
+ "0.05000000"
+ ],
+ [
+ "18983.31",
+ "0.00051301"
+ ],
+ [
+ "18989.29",
+ "0.00051302"
+ ],
+ [
+ "18990.00",
+ "0.00316550"
+ ],
+ [
+ "18995.00",
+ "1.20000000"
+ ],
+ [
+ "18995.26",
+ "0.00051303"
+ ],
+ [
+ "18997.50",
+ "0.04000000"
+ ],
+ [
+ "18999.99",
+ "0.00626999"
+ ],
+ [
+ "19000.00",
+ "31.58215709"
+ ],
+ [
+ "19001.00",
+ "1.00000000"
+ ],
+ [
+ "19001.23",
+ "0.00051304"
+ ],
+ [
+ "19007.20",
+ "0.00051305"
+ ],
+ [
+ "19013.17",
+ "0.00050306"
+ ],
+ [
+ "19016.16",
+ "0.54856916"
+ ],
+ [
+ "19019.14",
+ "0.00050307"
+ ],
+ [
+ "19020.00",
+ "0.02244418"
+ ],
+ [
+ "19023.00",
+ "0.04000000"
+ ],
+ [
+ "19025.12",
+ "0.00050308"
+ ],
+ [
+ "19030.00",
+ "0.00147500"
+ ],
+ [
+ "19031.09",
+ "0.00050309"
+ ],
+ [
+ "19037.06",
+ "0.00050310"
+ ],
+ [
+ "19043.03",
+ "0.00050311"
+ ],
+ [
+ "19044.24",
+ "0.03798613"
+ ],
+ [
+ "19049.00",
+ "0.00050312"
+ ],
+ [
+ "19054.98",
+ "0.00050313"
+ ],
+ [
+ "19057.16",
+ "1.00000000"
+ ],
+ [
+ "19060.95",
+ "0.00050314"
+ ],
+ [
+ "19066.92",
+ "0.00050315"
+ ],
+ [
+ "19068.00",
+ "1.00000000"
+ ],
+ [
+ "19072.89",
+ "0.00050316"
+ ],
+ [
+ "19073.99",
+ "0.05555800"
+ ],
+ [
+ "19074.00",
+ "0.04000000"
+ ],
+ [
+ "19078.46",
+ "0.01712813"
+ ],
+ [
+ "19078.86",
+ "0.00100634"
+ ],
+ [
+ "19084.83",
+ "0.00050318"
+ ],
+ [
+ "19090.81",
+ "0.00050319"
+ ],
+ [
+ "19096.78",
+ "0.00050320"
+ ],
+ [
+ "19099.50",
+ "0.04000000"
+ ],
+ [
+ "19100.00",
+ "1.17036502"
+ ],
+ [
+ "19102.75",
+ "0.00050321"
+ ],
+ [
+ "19108.72",
+ "0.00050322"
+ ],
+ [
+ "19110.00",
+ "0.05000000"
+ ],
+ [
+ "19114.69",
+ "0.00050323"
+ ],
+ [
+ "19120.66",
+ "0.00050324"
+ ],
+ [
+ "19123.45",
+ "0.00100000"
+ ],
+ [
+ "19125.00",
+ "0.04000000"
+ ],
+ [
+ "19126.64",
+ "0.00050325"
+ ],
+ [
+ "19127.00",
+ "0.10000000"
+ ],
+ [
+ "19132.61",
+ "0.00050326"
+ ],
+ [
+ "19138.58",
+ "0.00050327"
+ ],
+ [
+ "19140.00",
+ "0.00146700"
+ ],
+ [
+ "19144.55",
+ "0.00050328"
+ ],
+ [
+ "19148.16",
+ "0.20000000"
+ ],
+ [
+ "19150.50",
+ "0.04000000"
+ ],
+ [
+ "19150.52",
+ "0.00050329"
+ ],
+ [
+ "19152.17",
+ "0.01852186"
+ ],
+ [
+ "19156.50",
+ "0.00050330"
+ ],
+ [
+ "19162.47",
+ "0.00050331"
+ ],
+ [
+ "19168.44",
+ "0.00050332"
+ ],
+ [
+ "19174.41",
+ "0.00050333"
+ ],
+ [
+ "19176.00",
+ "0.04000000"
+ ],
+ [
+ "19179.00",
+ "0.01000000"
+ ],
+ [
+ "19180.38",
+ "0.00050334"
+ ],
+ [
+ "19186.00",
+ "0.09525243"
+ ],
+ [
+ "19186.35",
+ "0.00050335"
+ ],
+ [
+ "19192.33",
+ "0.00050336"
+ ],
+ [
+ "19198.30",
+ "0.00050337"
+ ],
+ [
+ "19200.00",
+ "0.08935354"
+ ],
+ [
+ "19201.50",
+ "0.04000000"
+ ],
+ [
+ "19204.27",
+ "0.00050338"
+ ],
+ [
+ "19208.68",
+ "0.35666641"
+ ],
+ [
+ "19210.24",
+ "0.00050339"
+ ],
+ [
+ "19216.21",
+ "0.00050340"
+ ],
+ [
+ "19222.19",
+ "0.00050341"
+ ],
+ [
+ "19227.00",
+ "0.04000000"
+ ],
+ [
+ "19228.16",
+ "0.00050342"
+ ],
+ [
+ "19233.33",
+ "0.03671000"
+ ],
+ [
+ "19234.13",
+ "0.00050343"
+ ],
+ [
+ "19239.00",
+ "0.01000000"
+ ],
+ [
+ "19239.59",
+ "0.00031497"
+ ],
+ [
+ "19239.89",
+ "0.00500000"
+ ],
+ [
+ "19240.10",
+ "0.00050344"
+ ],
+ [
+ "19245.00",
+ "0.01179226"
+ ],
+ [
+ "19246.07",
+ "0.00050345"
+ ],
+ [
+ "19250.00",
+ "0.42500000"
+ ],
+ [
+ "19252.04",
+ "0.00050346"
+ ],
+ [
+ "19252.50",
+ "0.04000000"
+ ],
+ [
+ "19257.99",
+ "0.39875722"
+ ],
+ [
+ "19258.02",
+ "0.00050347"
+ ],
+ [
+ "19258.96",
+ "0.00383306"
+ ],
+ [
+ "19263.99",
+ "0.00050348"
+ ],
+ [
+ "19266.84",
+ "0.00255753"
+ ],
+ [
+ "19269.96",
+ "0.00050349"
+ ],
+ [
+ "19275.93",
+ "0.00050350"
+ ],
+ [
+ "19278.00",
+ "0.04000000"
+ ],
+ [
+ "19281.90",
+ "0.00050351"
+ ],
+ [
+ "19287.87",
+ "0.00050352"
+ ],
+ [
+ "19288.00",
+ "0.01000000"
+ ],
+ [
+ "19293.85",
+ "0.00050353"
+ ],
+ [
+ "19299.82",
+ "0.00050354"
+ ],
+ [
+ "19300.00",
+ "0.10000000"
+ ],
+ [
+ "19303.50",
+ "0.04000000"
+ ],
+ [
+ "19305.79",
+ "0.00050355"
+ ],
+ [
+ "19311.76",
+ "0.00050356"
+ ],
+ [
+ "19323.71",
+ "0.00050358"
+ ],
+ [
+ "19329.00",
+ "0.04000000"
+ ],
+ [
+ "19333.00",
+ "0.21802803"
+ ],
+ [
+ "19335.65",
+ "0.00050360"
+ ],
+ [
+ "19341.62",
+ "0.00050361"
+ ],
+ [
+ "19347.59",
+ "0.00050362"
+ ],
+ [
+ "19353.56",
+ "0.00050363"
+ ],
+ [
+ "19354.50",
+ "0.04000000"
+ ],
+ [
+ "19359.54",
+ "0.00050364"
+ ],
+ [
+ "19365.51",
+ "0.00050365"
+ ],
+ [
+ "19369.14",
+ "0.00204812"
+ ],
+ [
+ "19369.16",
+ "0.00146324"
+ ],
+ [
+ "19371.48",
+ "0.00050366"
+ ],
+ [
+ "19372.00",
+ "0.10000000"
+ ],
+ [
+ "19375.00",
+ "0.00300000"
+ ],
+ [
+ "19377.45",
+ "0.00050367"
+ ],
+ [
+ "19380.00",
+ "0.04000000"
+ ],
+ [
+ "19383.42",
+ "0.00050368"
+ ],
+ [
+ "19389.00",
+ "0.04000000"
+ ],
+ [
+ "19389.40",
+ "0.00050369"
+ ],
+ [
+ "19395.37",
+ "0.00049370"
+ ],
+ [
+ "19400.00",
+ "1.44161454"
+ ],
+ [
+ "19401.34",
+ "0.00049371"
+ ],
+ [
+ "19405.50",
+ "0.04000000"
+ ],
+ [
+ "19407.31",
+ "0.00049372"
+ ],
+ [
+ "19413.28",
+ "0.00049373"
+ ],
+ [
+ "19419.25",
+ "0.00049374"
+ ],
+ [
+ "19425.23",
+ "0.00049375"
+ ],
+ [
+ "19431.00",
+ "0.04000000"
+ ],
+ [
+ "19431.20",
+ "0.00049376"
+ ],
+ [
+ "19435.67",
+ "0.00100718"
+ ],
+ [
+ "19437.17",
+ "0.00049377"
+ ],
+ [
+ "19440.00",
+ "0.25032019"
+ ],
+ [
+ "19443.14",
+ "0.00049378"
+ ],
+ [
+ "19447.11",
+ "0.01000000"
+ ],
+ [
+ "19449.11",
+ "0.00049379"
+ ],
+ [
+ "19454.00",
+ "0.02980000"
+ ],
+ [
+ "19455.08",
+ "0.00049380"
+ ],
+ [
+ "19456.50",
+ "0.04000000"
+ ],
+ [
+ "19461.06",
+ "0.00049381"
+ ],
+ [
+ "19463.41",
+ "0.00251255"
+ ],
+ [
+ "19467.03",
+ "0.00049382"
+ ],
+ [
+ "19470.00",
+ "1.61000000"
+ ],
+ [
+ "19472.00",
+ "0.10000000"
+ ],
+ [
+ "19473.00",
+ "0.00049383"
+ ],
+ [
+ "19478.97",
+ "0.00049384"
+ ],
+ [
+ "19480.00",
+ "0.02087011"
+ ],
+ [
+ "19482.00",
+ "0.04000000"
+ ],
+ [
+ "19484.94",
+ "0.00049385"
+ ],
+ [
+ "19490.92",
+ "0.00049386"
+ ],
+ [
+ "19495.00",
+ "1.00000000"
+ ],
+ [
+ "19496.89",
+ "0.00049387"
+ ],
+ [
+ "19499.00",
+ "0.33505293"
+ ],
+ [
+ "19500.00",
+ "7.58205559"
+ ],
+ [
+ "19500.51",
+ "0.01000000"
+ ],
+ [
+ "19502.86",
+ "0.00049388"
+ ],
+ [
+ "19507.50",
+ "0.04000000"
+ ],
+ [
+ "19508.83",
+ "0.00049389"
+ ],
+ [
+ "19514.80",
+ "0.00049390"
+ ],
+ [
+ "19520.77",
+ "0.00049391"
+ ],
+ [
+ "19524.00",
+ "3.51092745"
+ ],
+ [
+ "19526.75",
+ "0.00049392"
+ ],
+ [
+ "19529.00",
+ "1.00000000"
+ ],
+ [
+ "19530.22",
+ "0.50000000"
+ ],
+ [
+ "19531.20",
+ "2.00000000"
+ ],
+ [
+ "19532.72",
+ "0.00049393"
+ ],
+ [
+ "19533.00",
+ "0.04000000"
+ ],
+ [
+ "19538.69",
+ "0.00049394"
+ ],
+ [
+ "19540.00",
+ "0.00143700"
+ ],
+ [
+ "19544.66",
+ "0.00049395"
+ ],
+ [
+ "19547.00",
+ "0.27182692"
+ ],
+ [
+ "19548.00",
+ "0.10000000"
+ ],
+ [
+ "19550.00",
+ "0.00310372"
+ ],
+ [
+ "19550.61",
+ "0.21000000"
+ ],
+ [
+ "19550.63",
+ "0.00049396"
+ ],
+ [
+ "19553.14",
+ "0.01734434"
+ ],
+ [
+ "19556.60",
+ "0.00049397"
+ ],
+ [
+ "19558.50",
+ "0.04000000"
+ ],
+ [
+ "19562.58",
+ "0.00049398"
+ ],
+ [
+ "19568.55",
+ "0.00049399"
+ ],
+ [
+ "19572.00",
+ "0.09112591"
+ ],
+ [
+ "19574.52",
+ "0.00049400"
+ ],
+ [
+ "19580.49",
+ "0.00049401"
+ ],
+ [
+ "19584.00",
+ "0.04000000"
+ ],
+ [
+ "19586.46",
+ "0.00049402"
+ ],
+ [
+ "19592.44",
+ "0.00049403"
+ ],
+ [
+ "19598.41",
+ "0.00049404"
+ ],
+ [
+ "19599.84",
+ "0.21000000"
+ ],
+ [
+ "19600.00",
+ "4.29510276"
+ ],
+ [
+ "19604.38",
+ "0.00049405"
+ ],
+ [
+ "19609.50",
+ "0.04000000"
+ ],
+ [
+ "19610.35",
+ "0.00049406"
+ ],
+ [
+ "19615.35",
+ "0.00030894"
+ ],
+ [
+ "19616.32",
+ "0.00049407"
+ ],
+ [
+ "19622.29",
+ "0.00049408"
+ ],
+ [
+ "19628.27",
+ "0.00049409"
+ ],
+ [
+ "19634.24",
+ "0.00049410"
+ ],
+ [
+ "19635.00",
+ "0.04000000"
+ ],
+ [
+ "19638.00",
+ "0.10000000"
+ ],
+ [
+ "19640.21",
+ "0.00049411"
+ ],
+ [
+ "19646.18",
+ "0.00049412"
+ ],
+ [
+ "19650.00",
+ "0.05256778"
+ ],
+ [
+ "19652.15",
+ "0.00049413"
+ ],
+ [
+ "19658.13",
+ "0.00049414"
+ ],
+ [
+ "19662.02",
+ "0.00248512"
+ ],
+ [
+ "19663.93",
+ "0.00847730"
+ ],
+ [
+ "19664.10",
+ "0.00049415"
+ ],
+ [
+ "19670.07",
+ "0.00049416"
+ ],
+ [
+ "19676.04",
+ "0.00049417"
+ ],
+ [
+ "19682.01",
+ "0.00049418"
+ ],
+ [
+ "19686.00",
+ "0.02000000"
+ ],
+ [
+ "19687.98",
+ "0.00049419"
+ ],
+ [
+ "19693.55",
+ "0.00255762"
+ ],
+ [
+ "19693.96",
+ "0.00049420"
+ ],
+ [
+ "19699.93",
+ "0.00049421"
+ ],
+ [
+ "19700.00",
+ "0.05000000"
+ ],
+ [
+ "19705.90",
+ "0.00049422"
+ ],
+ [
+ "19711.50",
+ "0.02000000"
+ ],
+ [
+ "19711.87",
+ "0.00049423"
+ ],
+ [
+ "19717.84",
+ "0.00049424"
+ ],
+ [
+ "19720.00",
+ "0.10000000"
+ ],
+ [
+ "19723.81",
+ "0.00049425"
+ ],
+ [
+ "19729.79",
+ "0.00049426"
+ ],
+ [
+ "19735.76",
+ "0.00049427"
+ ],
+ [
+ "19737.00",
+ "0.04000000"
+ ],
+ [
+ "19741.73",
+ "0.00049428"
+ ],
+ [
+ "19747.70",
+ "0.00049429"
+ ],
+ [
+ "19750.00",
+ "0.12500000"
+ ],
+ [
+ "19753.67",
+ "0.00049430"
+ ],
+ [
+ "19759.65",
+ "0.00049431"
+ ],
+ [
+ "19762.50",
+ "0.02000000"
+ ],
+ [
+ "19765.62",
+ "0.00049432"
+ ],
+ [
+ "19771.59",
+ "0.00049433"
+ ],
+ [
+ "19777.26",
+ "0.10000000"
+ ],
+ [
+ "19777.56",
+ "0.00049434"
+ ],
+ [
+ "19780.00",
+ "0.10000000"
+ ],
+ [
+ "19781.00",
+ "0.20000000"
+ ],
+ [
+ "19783.53",
+ "0.00049435"
+ ],
+ [
+ "19785.00",
+ "0.01000000"
+ ],
+ [
+ "19788.00",
+ "0.02000000"
+ ],
+ [
+ "19795.00",
+ "1.00000000"
+ ],
+ [
+ "19800.00",
+ "30.66910862"
+ ],
+ [
+ "19801.52",
+ "0.00500000"
+ ],
+ [
+ "19810.00",
+ "0.00141700"
+ ],
+ [
+ "19813.50",
+ "0.02000000"
+ ],
+ [
+ "19815.59",
+ "0.40000000"
+ ],
+ [
+ "19836.51",
+ "0.00030549"
+ ],
+ [
+ "19839.00",
+ "0.02141500"
+ ],
+ [
+ "19843.00",
+ "3.00000000"
+ ],
+ [
+ "19864.50",
+ "0.02000000"
+ ],
+ [
+ "19870.00",
+ "0.00141300"
+ ],
+ [
+ "19880.00",
+ "0.03508507"
+ ],
+ [
+ "19888.00",
+ "0.02000000"
+ ],
+ [
+ "19888.99",
+ "0.00856919"
+ ],
+ [
+ "19896.53",
+ "0.10000000"
+ ],
+ [
+ "19897.97",
+ "0.27500000"
+ ],
+ [
+ "19900.00",
+ "0.96496163"
+ ],
+ [
+ "19910.00",
+ "0.00141000"
+ ],
+ [
+ "19920.00",
+ "0.00140900"
+ ],
+ [
+ "19928.90",
+ "0.00539089"
+ ],
+ [
+ "19945.00",
+ "1.00000000"
+ ],
+ [
+ "19949.42",
+ "0.10000000"
+ ],
+ [
+ "19950.00",
+ "1.15140700"
+ ],
+ [
+ "19953.13",
+ "0.01000000"
+ ],
+ [
+ "19957.00",
+ "0.03300000"
+ ],
+ [
+ "19957.67",
+ "0.08041002"
+ ],
+ [
+ "19968.96",
+ "0.16804946"
+ ],
+ [
+ "19970.00",
+ "0.00140600"
+ ],
+ [
+ "19975.00",
+ "0.25000000"
+ ],
+ [
+ "19980.00",
+ "1.00000000"
+ ],
+ [
+ "19982.20",
+ "0.27084351"
+ ],
+ [
+ "19987.30",
+ "0.00100000"
+ ],
+ [
+ "19989.90",
+ "1.00000000"
+ ],
+ [
+ "19990.00",
+ "1.35402469"
+ ],
+ [
+ "19994.94",
+ "0.01000000"
+ ],
+ [
+ "19995.00",
+ "1.00000000"
+ ],
+ [
+ "19998.70",
+ "0.01000000"
+ ],
+ [
+ "19999.00",
+ "0.65603431"
+ ],
+ [
+ "19999.84",
+ "0.05643323"
+ ],
+ [
+ "19999.99",
+ "2.00000000"
+ ],
+ [
+ "20000.00",
+ "37.04628228"
+ ],
+ [
+ "20000.99",
+ "0.01633100"
+ ],
+ [
+ "20001.00",
+ "0.02455000"
+ ],
+ [
+ "20002.00",
+ "0.06632200"
+ ],
+ [
+ "20003.71",
+ "0.00466803"
+ ],
+ [
+ "20035.00",
+ "0.10000000"
+ ],
+ [
+ "20040.00",
+ "0.00140100"
+ ],
+ [
+ "20045.00",
+ "0.18294002"
+ ],
+ [
+ "20070.00",
+ "0.00139900"
+ ],
+ [
+ "20080.00",
+ "0.00139800"
+ ],
+ [
+ "20100.00",
+ "0.02000000"
+ ],
+ [
+ "20110.00",
+ "0.05139600"
+ ],
+ [
+ "20120.00",
+ "0.00139500"
+ ],
+ [
+ "20123.00",
+ "0.25000000"
+ ],
+ [
+ "20125.00",
+ "0.17259130"
+ ],
+ [
+ "20147.30",
+ "0.00200000"
+ ],
+ [
+ "20150.00",
+ "0.00139300"
+ ],
+ [
+ "20160.00",
+ "0.00036693"
+ ],
+ [
+ "20180.00",
+ "0.00139100"
+ ],
+ [
+ "20190.00",
+ "0.05000000"
+ ],
+ [
+ "20200.00",
+ "0.00139000"
+ ],
+ [
+ "20213.00",
+ "1.00000000"
+ ],
+ [
+ "20220.00",
+ "0.50138800"
+ ],
+ [
+ "20225.00",
+ "0.40000000"
+ ],
+ [
+ "20240.00",
+ "0.00138700"
+ ],
+ [
+ "20250.00",
+ "3.49590000"
+ ],
+ [
+ "20261.00",
+ "0.05000000"
+ ],
+ [
+ "20270.00",
+ "0.00138500"
+ ],
+ [
+ "20280.00",
+ "0.00138400"
+ ],
+ [
+ "20300.00",
+ "50.07000000"
+ ],
+ [
+ "20310.00",
+ "0.00138200"
+ ],
+ [
+ "20340.00",
+ "0.00138000"
+ ],
+ [
+ "20360.00",
+ "0.00137900"
+ ],
+ [
+ "20370.00",
+ "0.00137800"
+ ],
+ [
+ "20381.00",
+ "0.06000000"
+ ],
+ [
+ "20420.00",
+ "0.00137500"
+ ],
+ [
+ "20430.00",
+ "0.00137400"
+ ],
+ [
+ "20445.00",
+ "1.00000000"
+ ],
+ [
+ "20455.00",
+ "0.04000000"
+ ],
+ [
+ "20490.00",
+ "0.00137000"
+ ],
+ [
+ "20500.00",
+ "3.29687352"
+ ],
+ [
+ "20520.00",
+ "0.00136800"
+ ],
+ [
+ "20547.60",
+ "0.00300000"
+ ],
+ [
+ "20549.42",
+ "0.10000000"
+ ],
+ [
+ "20550.00",
+ "0.00136600"
+ ],
+ [
+ "20590.00",
+ "0.00136300"
+ ],
+ [
+ "20600.00",
+ "0.05000000"
+ ],
+ [
+ "20620.00",
+ "0.00136100"
+ ],
+ [
+ "20640.00",
+ "0.00136000"
+ ],
+ [
+ "20649.00",
+ "0.20000000"
+ ],
+ [
+ "20650.00",
+ "0.00135900"
+ ],
+ [
+ "20670.00",
+ "0.00135800"
+ ],
+ [
+ "20680.00",
+ "0.00135700"
+ ],
+ [
+ "20720.00",
+ "0.00135500"
+ ],
+ [
+ "20730.00",
+ "0.00135400"
+ ],
+ [
+ "20760.00",
+ "0.00135200"
+ ],
+ [
+ "20780.00",
+ "0.00135100"
+ ],
+ [
+ "20800.00",
+ "0.00024427"
+ ],
+ [
+ "20810.00",
+ "0.00134900"
+ ],
+ [
+ "20820.00",
+ "0.00134800"
+ ],
+ [
+ "20850.00",
+ "0.00134600"
+ ],
+ [
+ "20870.00",
+ "0.00134500"
+ ],
+ [
+ "20880.00",
+ "0.00134400"
+ ],
+ [
+ "20888.00",
+ "0.02000000"
+ ],
+ [
+ "20900.00",
+ "0.05000000"
+ ],
+ [
+ "20920.00",
+ "0.00134200"
+ ],
+ [
+ "20930.00",
+ "0.00134100"
+ ],
+ [
+ "20945.00",
+ "1.00000000"
+ ],
+ [
+ "20949.42",
+ "0.10000000"
+ ],
+ [
+ "20960.00",
+ "0.00133900"
+ ],
+ [
+ "20962.88",
+ "1.00000000"
+ ],
+ [
+ "20978.40",
+ "0.00500000"
+ ],
+ [
+ "20980.00",
+ "0.00133800"
+ ],
+ [
+ "20986.00",
+ "0.50000000"
+ ],
+ [
+ "20986.50",
+ "0.50000000"
+ ],
+ [
+ "20987.00",
+ "0.50000000"
+ ],
+ [
+ "20987.50",
+ "0.50000000"
+ ],
+ [
+ "20988.00",
+ "0.50000000"
+ ],
+ [
+ "20988.40",
+ "0.50000000"
+ ],
+ [
+ "20989.00",
+ "0.50000000"
+ ],
+ [
+ "20990.00",
+ "0.00133700"
+ ],
+ [
+ "20997.97",
+ "0.25000000"
+ ],
+ [
+ "20998.00",
+ "0.50000000"
+ ],
+ [
+ "20998.50",
+ "0.50000000"
+ ],
+ [
+ "20999.89",
+ "0.50000000"
+ ],
+ [
+ "21000.00",
+ "0.46964027"
+ ],
+ [
+ "21005.00",
+ "0.50000000"
+ ],
+ [
+ "21010.00",
+ "0.00133600"
+ ],
+ [
+ "21030.00",
+ "0.00133500"
+ ],
+ [
+ "21060.00",
+ "0.00133300"
+ ],
+ [
+ "21070.00",
+ "0.00133300"
+ ],
+ [
+ "21100.00",
+ "0.05000000"
+ ],
+ [
+ "21168.00",
+ "0.25000000"
+ ],
+ [
+ "21199.00",
+ "0.26032282"
+ ],
+ [
+ "21200.00",
+ "0.06000000"
+ ],
+ [
+ "21212.12",
+ "0.02500000"
+ ],
+ [
+ "21360.00",
+ "0.00078287"
+ ],
+ [
+ "21400.00",
+ "0.02800000"
+ ],
+ [
+ "21445.00",
+ "1.00000000"
+ ],
+ [
+ "21456.00",
+ "0.00113569"
+ ],
+ [
+ "21468.85",
+ "0.04000000"
+ ],
+ [
+ "21500.00",
+ "0.15110000"
+ ],
+ [
+ "21512.12",
+ "0.02243125"
+ ],
+ [
+ "21549.42",
+ "0.10000000"
+ ],
+ [
+ "21600.00",
+ "0.00063507"
+ ],
+ [
+ "21672.00",
+ "0.00300000"
+ ],
+ [
+ "21800.00",
+ "0.05000000"
+ ],
+ [
+ "21833.29",
+ "0.35144596"
+ ],
+ [
+ "21840.00",
+ "0.10000000"
+ ],
+ [
+ "21870.61",
+ "0.01000000"
+ ],
+ [
+ "21888.00",
+ "0.01000000"
+ ],
+ [
+ "21931.24",
+ "0.09058264"
+ ],
+ [
+ "21945.00",
+ "1.00000000"
+ ],
+ [
+ "21949.42",
+ "0.10000000"
+ ],
+ [
+ "21973.00",
+ "0.25000000"
+ ],
+ [
+ "22000.00",
+ "0.31757679"
+ ],
+ [
+ "22100.00",
+ "0.05000000"
+ ],
+ [
+ "22113.05",
+ "0.10000000"
+ ],
+ [
+ "22148.97",
+ "0.25000000"
+ ],
+ [
+ "22222.22",
+ "1.00000000"
+ ],
+ [
+ "22400.00",
+ "0.05000000"
+ ],
+ [
+ "22445.00",
+ "1.00000000"
+ ],
+ [
+ "22461.00",
+ "0.04445269"
+ ],
+ [
+ "22499.00",
+ "1.00000000"
+ ],
+ [
+ "22549.42",
+ "0.10000000"
+ ],
+ [
+ "22555.00",
+ "0.20000000"
+ ],
+ [
+ "22700.00",
+ "0.05000000"
+ ],
+ [
+ "22777.26",
+ "0.05000000"
+ ],
+ [
+ "22945.00",
+ "1.00000000"
+ ],
+ [
+ "22949.42",
+ "0.10000000"
+ ],
+ [
+ "23000.00",
+ "5.99698326"
+ ],
+ [
+ "23059.17",
+ "1.00000000"
+ ],
+ [
+ "23200.00",
+ "0.01386563"
+ ],
+ [
+ "23284.00",
+ "0.25000000"
+ ],
+ [
+ "23300.00",
+ "0.10000000"
+ ],
+ [
+ "23333.00",
+ "2.30000000"
+ ],
+ [
+ "23348.97",
+ "0.25000000"
+ ],
+ [
+ "23445.00",
+ "1.00000000"
+ ],
+ [
+ "23540.00",
+ "0.02700000"
+ ],
+ [
+ "23549.42",
+ "0.10000000"
+ ],
+ [
+ "23600.00",
+ "0.05000000"
+ ],
+ [
+ "23710.61",
+ "0.01000000"
+ ],
+ [
+ "23738.00",
+ "0.18000000"
+ ],
+ [
+ "23785.00",
+ "0.00812335"
+ ],
+ [
+ "23900.00",
+ "0.05000000"
+ ],
+ [
+ "23945.00",
+ "1.00000000"
+ ],
+ [
+ "23949.42",
+ "0.10000000"
+ ],
+ [
+ "23998.00",
+ "1.00355199"
+ ],
+ [
+ "24000.00",
+ "1.01000000"
+ ],
+ [
+ "24164.00",
+ "0.04170000"
+ ],
+ [
+ "24200.00",
+ "0.05000000"
+ ],
+ [
+ "24429.00",
+ "0.50000000"
+ ],
+ [
+ "24445.00",
+ "1.00000000"
+ ],
+ [
+ "24500.00",
+ "0.05000000"
+ ],
+ [
+ "24549.42",
+ "0.10000000"
+ ],
+ [
+ "24748.97",
+ "0.25000000"
+ ],
+ [
+ "24777.26",
+ "0.05000000"
+ ],
+ [
+ "24800.00",
+ "1.05000000"
+ ],
+ [
+ "24894.00",
+ "0.02090000"
+ ],
+ [
+ "24945.00",
+ "1.00000000"
+ ],
+ [
+ "24949.42",
+ "0.10000000"
+ ],
+ [
+ "24980.00",
+ "0.20000000"
+ ],
+ [
+ "24989.90",
+ "0.52899289"
+ ],
+ [
+ "24999.00",
+ "0.45000000"
+ ],
+ [
+ "25000.00",
+ "4.62909641"
+ ],
+ [
+ "25100.00",
+ "0.05000000"
+ ],
+ [
+ "25125.00",
+ "0.20000000"
+ ],
+ [
+ "25365.09",
+ "1.00000000"
+ ],
+ [
+ "25400.00",
+ "0.05000000"
+ ],
+ [
+ "25549.42",
+ "0.10000000"
+ ],
+ [
+ "25652.00",
+ "0.48908403"
+ ],
+ [
+ "25700.00",
+ "0.05000000"
+ ],
+ [
+ "25894.00",
+ "0.02560000"
+ ],
+ [
+ "25949.42",
+ "0.10000000"
+ ],
+ [
+ "26000.00",
+ "0.45560005"
+ ],
+ [
+ "26248.97",
+ "0.25000000"
+ ],
+ [
+ "26250.00",
+ "10.00000000"
+ ],
+ [
+ "26300.00",
+ "0.05000000"
+ ],
+ [
+ "26314.00",
+ "0.07619627"
+ ],
+ [
+ "26500.00",
+ "0.05000000"
+ ],
+ [
+ "26549.42",
+ "0.10000000"
+ ],
+ [
+ "26600.00",
+ "0.05000000"
+ ],
+ [
+ "26745.41",
+ "0.01049152"
+ ],
+ [
+ "26900.00",
+ "0.05000000"
+ ],
+ [
+ "26949.42",
+ "0.10000000"
+ ],
+ [
+ "27000.00",
+ "2.04790335"
+ ],
+ [
+ "27200.00",
+ "0.05000000"
+ ],
+ [
+ "27500.00",
+ "0.05000000"
+ ],
+ [
+ "27549.42",
+ "0.10000000"
+ ],
+ [
+ "27677.70",
+ "0.00664868"
+ ],
+ [
+ "27777.26",
+ "0.05000000"
+ ],
+ [
+ "27800.00",
+ "0.05000000"
+ ],
+ [
+ "27820.24",
+ "6.27928487"
+ ],
+ [
+ "27901.59",
+ "1.00000000"
+ ],
+ [
+ "27925.67",
+ "0.25021559"
+ ],
+ [
+ "27948.97",
+ "0.25000000"
+ ],
+ [
+ "27949.42",
+ "0.10000000"
+ ],
+ [
+ "27961.00",
+ "12.40807321"
+ ],
+ [
+ "28000.00",
+ "0.01000000"
+ ],
+ [
+ "28100.00",
+ "0.05000000"
+ ],
+ [
+ "28234.00",
+ "0.03572000"
+ ],
+ [
+ "28345.00",
+ "0.10000000"
+ ],
+ [
+ "28400.00",
+ "0.05000000"
+ ],
+ [
+ "28485.00",
+ "0.16000000"
+ ],
+ [
+ "28549.42",
+ "0.10000000"
+ ],
+ [
+ "28700.00",
+ "0.05000000"
+ ],
+ [
+ "28900.00",
+ "0.07025143"
+ ],
+ [
+ "28949.42",
+ "0.10000000"
+ ],
+ [
+ "29000.00",
+ "1.06000000"
+ ],
+ [
+ "29008.01",
+ "0.06116814"
+ ],
+ [
+ "29300.00",
+ "0.05000000"
+ ],
+ [
+ "29600.00",
+ "0.05000000"
+ ],
+ [
+ "29659.92",
+ "0.01000000"
+ ],
+ [
+ "29685.00",
+ "0.50000000"
+ ],
+ [
+ "29748.97",
+ "0.25000000"
+ ],
+ [
+ "29780.00",
+ "2.09231640"
+ ],
+ [
+ "29895.00",
+ "0.10000000"
+ ],
+ [
+ "29900.00",
+ "0.05000000"
+ ],
+ [
+ "29974.00",
+ "0.60880593"
+ ],
+ [
+ "30000.00",
+ "1.98503065"
+ ],
+ [
+ "30691.75",
+ "1.00000000"
+ ],
+ [
+ "31000.00",
+ "0.01000000"
+ ],
+ [
+ "31200.00",
+ "0.09300000"
+ ],
+ [
+ "31234.00",
+ "0.23000000"
+ ],
+ [
+ "31748.97",
+ "0.25000000"
+ ],
+ [
+ "32000.00",
+ "0.10990000"
+ ],
+ [
+ "32261.00",
+ "0.03125000"
+ ],
+ [
+ "32349.00",
+ "0.02500000"
+ ],
+ [
+ "33000.00",
+ "0.01000000"
+ ],
+ [
+ "33333.00",
+ "3.34000000"
+ ],
+ [
+ "33748.97",
+ "0.25000000"
+ ],
+ [
+ "33760.93",
+ "1.00000000"
+ ],
+ [
+ "34000.00",
+ "0.01000000"
+ ],
+ [
+ "34182.00",
+ "0.14000000"
+ ],
+ [
+ "34494.65",
+ "0.02327633"
+ ],
+ [
+ "34932.00",
+ "0.25000000"
+ ],
+ [
+ "35000.00",
+ "1.01000044"
+ ],
+ [
+ "35848.97",
+ "0.25000000"
+ ],
+ [
+ "35963.14",
+ "0.02814749"
+ ],
+ [
+ "36000.00",
+ "0.01000000"
+ ],
+ [
+ "37000.00",
+ "0.01000000"
+ ],
+ [
+ "37137.02",
+ "1.00000000"
+ ],
+ [
+ "37225.00",
+ "0.13500000"
+ ],
+ [
+ "37777.26",
+ "0.10000000"
+ ],
+ [
+ "38000.00",
+ "0.01000000"
+ ],
+ [
+ "38500.00",
+ "0.05000000"
+ ],
+ [
+ "38828.42",
+ "2.00502435"
+ ],
+ [
+ "38900.00",
+ "0.10000000"
+ ],
+ [
+ "39000.00",
+ "0.25465075"
+ ],
+ [
+ "39400.00",
+ "0.35000000"
+ ],
+ [
+ "39456.00",
+ "0.12500000"
+ ],
+ [
+ "39468.00",
+ "0.00241298"
+ ],
+ [
+ "40000.00",
+ "2.18554048"
+ ],
+ [
+ "40850.73",
+ "1.00000000"
+ ],
+ [
+ "40988.00",
+ "0.02000000"
+ ],
+ [
+ "41019.00",
+ "0.14000000"
+ ],
+ [
+ "42424.00",
+ "0.03630000"
+ ],
+ [
+ "42839.00",
+ "0.00233432"
+ ],
+ [
+ "43210.00",
+ "0.10000000"
+ ],
+ [
+ "43680.00",
+ "0.05000000"
+ ],
+ [
+ "44953.93",
+ "0.02814749"
+ ],
+ [
+ "45000.00",
+ "0.01000000"
+ ],
+ [
+ "47737.82",
+ "0.03184990"
+ ],
+ [
+ "47777.26",
+ "0.05000000"
+ ],
+ [
+ "48000.00",
+ "0.30695548"
+ ],
+ [
+ "48880.63",
+ "1.34192964"
+ ],
+ [
+ "49222.00",
+ "0.16000000"
+ ],
+ [
+ "49456.00",
+ "0.12500000"
+ ],
+ [
+ "49657.00",
+ "0.30283439"
+ ],
+ [
+ "49899.00",
+ "0.01000000"
+ ],
+ [
+ "49990.00",
+ "1.00000000"
+ ],
+ [
+ "50000.00",
+ "49.31908105"
+ ],
+ [
+ "50050.00",
+ "0.00010000"
+ ],
+ [
+ "50200.00",
+ "0.06000000"
+ ],
+ [
+ "50234.00",
+ "0.10000000"
+ ],
+ [
+ "50400.00",
+ "0.93725323"
+ ],
+ [
+ "52300.00",
+ "10.00000000"
+ ],
+ [
+ "52577.87",
+ "0.28791550"
+ ],
+ [
+ "54437.57",
+ "0.30078552"
+ ],
+ [
+ "55000.00",
+ "0.10000000"
+ ],
+ [
+ "56192.41",
+ "0.02814749"
+ ],
+ [
+ "57500.00",
+ "0.50000000"
+ ],
+ [
+ "57777.56",
+ "0.02870973"
+ ],
+ [
+ "59067.00",
+ "0.18000000"
+ ],
+ [
+ "59456.00",
+ "0.12500000"
+ ],
+ [
+ "60000.00",
+ "1.04400000"
+ ],
+ [
+ "62999.97",
+ "1.05207174"
+ ],
+ [
+ "63000.00",
+ "0.03000000"
+ ],
+ [
+ "64000.00",
+ "0.06900000"
+ ],
+ [
+ "64900.00",
+ "1.93490805"
+ ],
+ [
+ "65000.00",
+ "0.02000000"
+ ],
+ [
+ "66666.00",
+ "3.33293980"
+ ],
+ [
+ "70000.00",
+ "0.03000000"
+ ],
+ [
+ "70240.52",
+ "0.02814749"
+ ],
+ [
+ "70402.00",
+ "0.02000000"
+ ],
+ [
+ "70880.00",
+ "0.20000000"
+ ],
+ [
+ "73000.00",
+ "0.00956148"
+ ],
+ [
+ "74151.09",
+ "0.50000000"
+ ],
+ [
+ "75000.00",
+ "1.11528997"
+ ],
+ [
+ "78743.00",
+ "0.09700000"
+ ],
+ [
+ "79500.00",
+ "0.05000000"
+ ],
+ [
+ "79528.00",
+ "0.12500000"
+ ],
+ [
+ "80000.00",
+ "0.33854001"
+ ],
+ [
+ "82250.13",
+ "0.50000000"
+ ],
+ [
+ "82550.00",
+ "1.00000000"
+ ],
+ [
+ "85000.00",
+ "0.02000000"
+ ],
+ [
+ "85056.00",
+ "0.22000000"
+ ],
+ [
+ "86000.00",
+ "0.30000000"
+ ],
+ [
+ "87800.65",
+ "0.02814749"
+ ],
+ [
+ "88495.00",
+ "0.01000000"
+ ],
+ [
+ "88743.00",
+ "0.09700000"
+ ],
+ [
+ "89899.00",
+ "4.00000000"
+ ],
+ [
+ "89999.00",
+ "0.28068457"
+ ],
+ [
+ "89999.09",
+ "0.60000000"
+ ],
+ [
+ "90000.00",
+ "0.03000000"
+ ],
+ [
+ "91000.00",
+ "0.02000000"
+ ],
+ [
+ "91799.90",
+ "0.20000000"
+ ],
+ [
+ "92000.00",
+ "0.01000000"
+ ],
+ [
+ "92650.00",
+ "0.27233698"
+ ],
+ [
+ "96800.00",
+ "0.83916560"
+ ],
+ [
+ "97740.00",
+ "4.52500000"
+ ],
+ [
+ "98650.66",
+ "1.00000000"
+ ],
+ [
+ "98745.00",
+ "0.12500000"
+ ],
+ [
+ "99500.00",
+ "0.03000000"
+ ],
+ [
+ "99678.00",
+ "0.03354333"
+ ],
+ [
+ "99940.51",
+ "0.09816342"
+ ],
+ [
+ "99999.00",
+ "2.05000000"
+ ],
+ [
+ "100000.00",
+ "3.36017259"
+ ],
+ [
+ "101234.00",
+ "0.10000000"
+ ],
+ [
+ "102067.00",
+ "0.24000000"
+ ],
+ [
+ "105131.72",
+ "0.36570639"
+ ],
+ [
+ "109750.81",
+ "0.02814749"
+ ],
+ [
+ "111111.00",
+ "1.00000000"
+ ],
+ [
+ "122481.00",
+ "0.26000000"
+ ],
+ [
+ "128041.91",
+ "0.04292354"
+ ],
+ [
+ "129563.00",
+ "0.12500000"
+ ],
+ [
+ "137188.52",
+ "0.02814749"
+ ],
+ [
+ "146977.00",
+ "0.28000000"
+ ],
+ [
+ "150000.00",
+ "0.49792648"
+ ],
+ [
+ "156870.66",
+ "1.00000000"
+ ],
+ [
+ "158000.00",
+ "1.00000000"
+ ],
+ [
+ "160000.00",
+ "0.00003271"
+ ],
+ [
+ "171485.65",
+ "0.02814749"
+ ],
+ [
+ "176373.00",
+ "0.30000000"
+ ],
+ [
+ "178699.00",
+ "0.12500000"
+ ],
+ [
+ "200000.00",
+ "0.01000000"
+ ],
+ [
+ "201234.00",
+ "0.10000000"
+ ],
+ [
+ "210000.00",
+ "0.10714033"
+ ],
+ [
+ "211647.00",
+ "0.34000000"
+ ],
+ [
+ "214357.06",
+ "0.02814749"
+ ],
+ [
+ "238000.00",
+ "0.50000000"
+ ],
+ [
+ "250000.00",
+ "0.51105866"
+ ],
+ [
+ "253977.00",
+ "0.40000000"
+ ],
+ [
+ "267946.33",
+ "0.02814749"
+ ],
+ [
+ "277589.00",
+ "0.12500000"
+ ],
+ [
+ "300000.00",
+ "0.02685644"
+ ],
+ [
+ "300001.00",
+ "0.00010000"
+ ],
+ [
+ "301234.00",
+ "0.05000000"
+ ],
+ [
+ "302999.00",
+ "0.02000000"
+ ],
+ [
+ "304772.00",
+ "0.50000000"
+ ],
+ [
+ "334932.92",
+ "0.02814749"
+ ],
+ [
+ "341000.00",
+ "0.00596168"
+ ],
+ [
+ "365726.00",
+ "0.70000000"
+ ],
+ [
+ "400202.00",
+ "0.02000000"
+ ],
+ [
+ "418666.15",
+ "0.02814749"
+ ],
+ [
+ "438871.00",
+ "1.00000000"
+ ],
+ [
+ "448981.00",
+ "0.25000000"
+ ],
+ [
+ "500000.00",
+ "1.01250000"
+ ],
+ [
+ "523332.68",
+ "0.02814749"
+ ],
+ [
+ "526646.00",
+ "1.00000000"
+ ],
+ [
+ "631975.00",
+ "0.70000000"
+ ],
+ [
+ "654165.86",
+ "0.02814749"
+ ],
+ [
+ "796559.52",
+ "0.00211111"
+ ],
+ [
+ "817707.32",
+ "0.02814749"
+ ],
+ [
+ "875000.00",
+ "0.60000000"
+ ],
+ [
+ "888000.00",
+ "0.50000000"
+ ],
+ [
+ "888888.00",
+ "0.00100000"
+ ],
+ [
+ "889999.00",
+ "0.02000000"
+ ],
+ [
+ "999900.00",
+ "0.56600000"
+ ],
+ [
+ "999999.00",
+ "19.37965338"
+ ],
+ [
+ "1000000.00",
+ "4.26782108"
+ ],
+ [
+ "1022134.15",
+ "0.02814749"
+ ],
+ [
+ "1300000.00",
+ "0.30075883"
+ ],
+ [
+ "2000000.00",
+ "0.47922827"
+ ],
+ [
+ "2500000.00",
+ "0.01000000"
+ ],
+ [
+ "5000000.00",
+ "1.01003223"
+ ],
+ [
+ "10000000.00",
+ "2.75837235"
+ ],
+ [
+ "15000000.00",
+ "0.25000000"
+ ],
+ [
+ "25000000.00",
+ "0.01000000"
+ ],
+ [
+ "50000000.00",
+ "0.02500000"
+ ],
+ [
+ "1000000000.00",
+ "0.00200000"
+ ]
+ ]
+ },
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v2/ticker/btcusd/": {
+ "GET": [
+ {
+ "data": {
+ "high": "8335.56",
+ "last": "8213.59",
+ "timestamp": "1560482195",
+ "bid": "8210.38",
+ "vwap": "8190.45",
+ "volume": "6793.04518082",
+ "low": "8049.22",
+ "ask": "8213.59",
+ "open": "8235.44"
+ },
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v2/trading-pairs-info/": {
+ "GET": [
+ {
+ "data": [
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 USD",
+ "name": "LTC/USD",
+ "counter_decimals": 2,
+ "trading": "Enabled",
+ "url_symbol": "ltcusd",
+ "description": "Litecoin / U.S. dollar"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 USD",
+ "name": "ETH/USD",
+ "counter_decimals": 2,
+ "trading": "Enabled",
+ "url_symbol": "ethusd",
+ "description": "Ether / U.S. dollar"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 EUR",
+ "name": "XRP/EUR",
+ "counter_decimals": 5,
+ "trading": "Enabled",
+ "url_symbol": "xrpeur",
+ "description": "XRP / Euro"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 USD",
+ "name": "BCH/USD",
+ "counter_decimals": 2,
+ "trading": "Enabled",
+ "url_symbol": "bchusd",
+ "description": "Bitcoin Cash / U.S. dollar"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 EUR",
+ "name": "BCH/EUR",
+ "counter_decimals": 2,
+ "trading": "Enabled",
+ "url_symbol": "bcheur",
+ "description": "Bitcoin Cash / Euro"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 EUR",
+ "name": "BTC/EUR",
+ "counter_decimals": 2,
+ "trading": "Enabled",
+ "url_symbol": "btceur",
+ "description": "Bitcoin / Euro"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "0.001 BTC",
+ "name": "XRP/BTC",
+ "counter_decimals": 8,
+ "trading": "Enabled",
+ "url_symbol": "xrpbtc",
+ "description": "XRP / Bitcoin"
+ },
+ {
+ "base_decimals": 5,
+ "minimum_order": "5.0 USD",
+ "name": "EUR/USD",
+ "counter_decimals": 5,
+ "trading": "Enabled",
+ "url_symbol": "eurusd",
+ "description": "Euro / U.S. dollar"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "0.001 BTC",
+ "name": "BCH/BTC",
+ "counter_decimals": 8,
+ "trading": "Enabled",
+ "url_symbol": "bchbtc",
+ "description": "Bitcoin Cash / Bitcoin"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 EUR",
+ "name": "LTC/EUR",
+ "counter_decimals": 2,
+ "trading": "Enabled",
+ "url_symbol": "ltceur",
+ "description": "Litecoin / Euro"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 USD",
+ "name": "BTC/USD",
+ "counter_decimals": 2,
+ "trading": "Enabled",
+ "url_symbol": "btcusd",
+ "description": "Bitcoin / U.S. dollar"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "0.001 BTC",
+ "name": "LTC/BTC",
+ "counter_decimals": 8,
+ "trading": "Enabled",
+ "url_symbol": "ltcbtc",
+ "description": "Litecoin / Bitcoin"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 USD",
+ "name": "XRP/USD",
+ "counter_decimals": 5,
+ "trading": "Enabled",
+ "url_symbol": "xrpusd",
+ "description": "XRP / U.S. dollar"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "0.001 BTC",
+ "name": "ETH/BTC",
+ "counter_decimals": 8,
+ "trading": "Enabled",
+ "url_symbol": "ethbtc",
+ "description": "Ether / Bitcoin"
+ },
+ {
+ "base_decimals": 8,
+ "minimum_order": "5.0 EUR",
+ "name": "ETH/EUR",
+ "counter_decimals": 2,
+ "trading": "Enabled",
+ "url_symbol": "etheur",
+ "description": "Ether / Euro"
+ }
+ ],
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {
+ "Referer": [
+ "https://www.bitstamp.net/api/v2/trading-pairs-info"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/transactions/btcusd/": {
+ "GET": [
+ {
+ "data": [
+ {
+ "date": "1560481868",
+ "tid": "90574283",
+ "price": "8194.79",
+ "type": "1",
+ "amount": "0.00288599"
+ },
+ {
+ "date": "1560481858",
+ "tid": "90574282",
+ "price": "8193.12",
+ "type": "1",
+ "amount": "0.00156303"
+ },
+ {
+ "date": "1560481854",
+ "tid": "90574281",
+ "price": "8193.12",
+ "type": "1",
+ "amount": "0.11947600"
+ },
+ {
+ "date": "1560481828",
+ "tid": "90574272",
+ "price": "8193.12",
+ "type": "1",
+ "amount": "0.00141971"
+ },
+ {
+ "date": "1560481819",
+ "tid": "90574264",
+ "price": "8197.67",
+ "type": "0",
+ "amount": "0.00119500"
+ },
+ {
+ "date": "1560481808",
+ "tid": "90574258",
+ "price": "8195.95",
+ "type": "0",
+ "amount": "0.01725404"
+ },
+ {
+ "date": "1560481798",
+ "tid": "90574252",
+ "price": "8195.95",
+ "type": "0",
+ "amount": "0.00416020"
+ },
+ {
+ "date": "1560481787",
+ "tid": "90574250",
+ "price": "8191.11",
+ "type": "1",
+ "amount": "0.00417354"
+ },
+ {
+ "date": "1560481781",
+ "tid": "90574249",
+ "price": "8194.06",
+ "type": "1",
+ "amount": "0.00430000"
+ },
+ {
+ "date": "1560481747",
+ "tid": "90574247",
+ "price": "8195.89",
+ "type": "0",
+ "amount": "0.00124352"
+ },
+ {
+ "date": "1560481728",
+ "tid": "90574242",
+ "price": "8194.19",
+ "type": "0",
+ "amount": "0.82077122"
+ },
+ {
+ "date": "1560481700",
+ "tid": "90574236",
+ "price": "8190.75",
+ "type": "1",
+ "amount": "0.01277685"
+ },
+ {
+ "date": "1560481687",
+ "tid": "90574234",
+ "price": "8193.91",
+ "type": "0",
+ "amount": "1.06050603"
+ },
+ {
+ "date": "1560481686",
+ "tid": "90574231",
+ "price": "8193.91",
+ "type": "1",
+ "amount": "0.05997981"
+ },
+ {
+ "date": "1560481685",
+ "tid": "90574229",
+ "price": "8193.43",
+ "type": "0",
+ "amount": "0.04703946"
+ },
+ {
+ "date": "1560481677",
+ "tid": "90574226",
+ "price": "8193.00",
+ "type": "0",
+ "amount": "0.00994649"
+ },
+ {
+ "date": "1560481664",
+ "tid": "90574225",
+ "price": "8193.91",
+ "type": "0",
+ "amount": "0.41363917"
+ },
+ {
+ "date": "1560481662",
+ "tid": "90574224",
+ "price": "8193.43",
+ "type": "1",
+ "amount": "0.99999996"
+ },
+ {
+ "date": "1560481652",
+ "tid": "90574216",
+ "price": "8193.45",
+ "type": "1",
+ "amount": "1.37549538"
+ },
+ {
+ "date": "1560481639",
+ "tid": "90574209",
+ "price": "8197.30",
+ "type": "0",
+ "amount": "0.25624057"
+ },
+ {
+ "date": "1560481638",
+ "tid": "90574207",
+ "price": "8197.30",
+ "type": "0",
+ "amount": "0.09860505"
+ },
+ {
+ "date": "1560481638",
+ "tid": "90574206",
+ "price": "8197.30",
+ "type": "0",
+ "amount": "0.64515438"
+ },
+ {
+ "date": "1560481619",
+ "tid": "90574203",
+ "price": "8198.93",
+ "type": "0",
+ "amount": "0.72516277"
+ },
+ {
+ "date": "1560481601",
+ "tid": "90574202",
+ "price": "8199.00",
+ "type": "1",
+ "amount": "0.25493189"
+ },
+ {
+ "date": "1560481587",
+ "tid": "90574200",
+ "price": "8201.82",
+ "type": "0",
+ "amount": "0.01662791"
+ },
+ {
+ "date": "1560481577",
+ "tid": "90574196",
+ "price": "8201.72",
+ "type": "0",
+ "amount": "0.04141934"
+ },
+ {
+ "date": "1560481567",
+ "tid": "90574192",
+ "price": "8202.10",
+ "type": "0",
+ "amount": "0.02485456"
+ },
+ {
+ "date": "1560481557",
+ "tid": "90574191",
+ "price": "8202.10",
+ "type": "0",
+ "amount": "0.00063795"
+ },
+ {
+ "date": "1560481547",
+ "tid": "90574188",
+ "price": "8202.04",
+ "type": "0",
+ "amount": "1.03008232"
+ },
+ {
+ "date": "1560481547",
+ "tid": "90574187",
+ "price": "8200.15",
+ "type": "0",
+ "amount": "0.12771209"
+ },
+ {
+ "date": "1560481531",
+ "tid": "90574183",
+ "price": "8200.15",
+ "type": "0",
+ "amount": "0.76353303"
+ },
+ {
+ "date": "1560481529",
+ "tid": "90574181",
+ "price": "8199.00",
+ "type": "1",
+ "amount": "0.01506811"
+ },
+ {
+ "date": "1560481516",
+ "tid": "90574180",
+ "price": "8200.15",
+ "type": "0",
+ "amount": "0.00671556"
+ },
+ {
+ "date": "1560481497",
+ "tid": "90574172",
+ "price": "8200.15",
+ "type": "0",
+ "amount": "0.00116003"
+ },
+ {
+ "date": "1560481467",
+ "tid": "90574158",
+ "price": "8200.15",
+ "type": "0",
+ "amount": "0.03170947"
+ },
+ {
+ "date": "1560481457",
+ "tid": "90574154",
+ "price": "8200.15",
+ "type": "0",
+ "amount": "0.00157439"
+ },
+ {
+ "date": "1560481447",
+ "tid": "90574153",
+ "price": "8199.67",
+ "type": "1",
+ "amount": "0.03848400"
+ },
+ {
+ "date": "1560481431",
+ "tid": "90574150",
+ "price": "8200.15",
+ "type": "0",
+ "amount": "0.02722810"
+ },
+ {
+ "date": "1560481417",
+ "tid": "90574148",
+ "price": "8200.15",
+ "type": "0",
+ "amount": "0.01776867"
+ },
+ {
+ "date": "1560481408",
+ "tid": "90574147",
+ "price": "8201.83",
+ "type": "0",
+ "amount": "0.00082837"
+ },
+ {
+ "date": "1560481381",
+ "tid": "90574138",
+ "price": "8198.44",
+ "type": "1",
+ "amount": "0.00580000"
+ },
+ {
+ "date": "1560481377",
+ "tid": "90574137",
+ "price": "8201.36",
+ "type": "0",
+ "amount": "1.03424883"
+ },
+ {
+ "date": "1560481368",
+ "tid": "90574136",
+ "price": "8201.36",
+ "type": "0",
+ "amount": "0.00350600"
+ },
+ {
+ "date": "1560481352",
+ "tid": "90574133",
+ "price": "8201.36",
+ "type": "0",
+ "amount": "0.02268749"
+ },
+ {
+ "date": "1560481347",
+ "tid": "90574130",
+ "price": "8201.36",
+ "type": "0",
+ "amount": "0.00082841"
+ },
+ {
+ "date": "1560481329",
+ "tid": "90574126",
+ "price": "8198.21",
+ "type": "1",
+ "amount": "0.01075383"
+ },
+ {
+ "date": "1560481294",
+ "tid": "90574121",
+ "price": "8201.92",
+ "type": "1",
+ "amount": "0.02259866"
+ },
+ {
+ "date": "1560481293",
+ "tid": "90574120",
+ "price": "8202.21",
+ "type": "1",
+ "amount": "0.02700000"
+ },
+ {
+ "date": "1560481286",
+ "tid": "90574119",
+ "price": "8202.21",
+ "type": "1",
+ "amount": "0.03663485"
+ },
+ {
+ "date": "1560481277",
+ "tid": "90574116",
+ "price": "8202.21",
+ "type": "1",
+ "amount": "0.01078744"
+ },
+ {
+ "date": "1560481277",
+ "tid": "90574115",
+ "price": "8204.01",
+ "type": "0",
+ "amount": "1.03414367"
+ },
+ {
+ "date": "1560481257",
+ "tid": "90574111",
+ "price": "8202.21",
+ "type": "1",
+ "amount": "0.01717467"
+ },
+ {
+ "date": "1560481247",
+ "tid": "90574108",
+ "price": "8203.91",
+ "type": "0",
+ "amount": "0.42117205"
+ },
+ {
+ "date": "1560481186",
+ "tid": "90574103",
+ "price": "8205.69",
+ "type": "0",
+ "amount": "0.01056779"
+ },
+ {
+ "date": "1560481166",
+ "tid": "90574099",
+ "price": "8207.44",
+ "type": "0",
+ "amount": "0.00827493"
+ },
+ {
+ "date": "1560481164",
+ "tid": "90574098",
+ "price": "8206.02",
+ "type": "1",
+ "amount": "0.00127718"
+ },
+ {
+ "date": "1560481156",
+ "tid": "90574095",
+ "price": "8207.12",
+ "type": "1",
+ "amount": "0.00075400"
+ },
+ {
+ "date": "1560481126",
+ "tid": "90574091",
+ "price": "8211.59",
+ "type": "0",
+ "amount": "0.00413715"
+ },
+ {
+ "date": "1560481086",
+ "tid": "90574090",
+ "price": "8212.12",
+ "type": "0",
+ "amount": "0.00271006"
+ },
+ {
+ "date": "1560481078",
+ "tid": "90574089",
+ "price": "8212.12",
+ "type": "0",
+ "amount": "0.00136500"
+ },
+ {
+ "date": "1560481066",
+ "tid": "90574088",
+ "price": "8212.12",
+ "type": "0",
+ "amount": "0.02733873"
+ },
+ {
+ "date": "1560481066",
+ "tid": "90574087",
+ "price": "8212.12",
+ "type": "0",
+ "amount": "0.00165491"
+ },
+ {
+ "date": "1560481056",
+ "tid": "90574036",
+ "price": "8212.12",
+ "type": "0",
+ "amount": "0.00247470"
+ },
+ {
+ "date": "1560481053",
+ "tid": "90574035",
+ "price": "8207.04",
+ "type": "1",
+ "amount": "0.15965733"
+ },
+ {
+ "date": "1560481053",
+ "tid": "90574034",
+ "price": "8207.04",
+ "type": "1",
+ "amount": "0.26734267"
+ },
+ {
+ "date": "1560481052",
+ "tid": "90574033",
+ "price": "8207.04",
+ "type": "1",
+ "amount": "0.05474916"
+ },
+ {
+ "date": "1560481051",
+ "tid": "90574032",
+ "price": "8208.87",
+ "type": "1",
+ "amount": "0.94525084"
+ },
+ {
+ "date": "1560481027",
+ "tid": "90574030",
+ "price": "8211.35",
+ "type": "0",
+ "amount": "0.93461738"
+ },
+ {
+ "date": "1560481026",
+ "tid": "90574029",
+ "price": "8208.07",
+ "type": "0",
+ "amount": "0.00098009"
+ },
+ {
+ "date": "1560481003",
+ "tid": "90574027",
+ "price": "8201.94",
+ "type": "0",
+ "amount": "0.38000000"
+ },
+ {
+ "date": "1560481003",
+ "tid": "90574026",
+ "price": "8201.94",
+ "type": "1",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560481003",
+ "tid": "90574025",
+ "price": "8202.04",
+ "type": "0",
+ "amount": "0.50000000"
+ },
+ {
+ "date": "1560480998",
+ "tid": "90574024",
+ "price": "8209.11",
+ "type": "0",
+ "amount": "0.76351584"
+ },
+ {
+ "date": "1560480996",
+ "tid": "90574023",
+ "price": "8209.11",
+ "type": "0",
+ "amount": "0.02838519"
+ },
+ {
+ "date": "1560480995",
+ "tid": "90574022",
+ "price": "8209.11",
+ "type": "0",
+ "amount": "0.01154327"
+ },
+ {
+ "date": "1560480986",
+ "tid": "90574020",
+ "price": "8205.95",
+ "type": "0",
+ "amount": "0.00609385"
+ },
+ {
+ "date": "1560480986",
+ "tid": "90574019",
+ "price": "8205.51",
+ "type": "0",
+ "amount": "0.00005444"
+ },
+ {
+ "date": "1560480979",
+ "tid": "90574018",
+ "price": "8205.51",
+ "type": "0",
+ "amount": "0.00096529"
+ },
+ {
+ "date": "1560480954",
+ "tid": "90574015",
+ "price": "8203.97",
+ "type": "0",
+ "amount": "0.01951399"
+ },
+ {
+ "date": "1560480926",
+ "tid": "90574012",
+ "price": "8200.65",
+ "type": "1",
+ "amount": "0.00193497"
+ },
+ {
+ "date": "1560480924",
+ "tid": "90574011",
+ "price": "8204.61",
+ "type": "0",
+ "amount": "0.00371156"
+ },
+ {
+ "date": "1560480924",
+ "tid": "90574010",
+ "price": "8201.60",
+ "type": "0",
+ "amount": "0.00107544"
+ },
+ {
+ "date": "1560480916",
+ "tid": "90574009",
+ "price": "8203.99",
+ "type": "0",
+ "amount": "0.00082806"
+ },
+ {
+ "date": "1560480910",
+ "tid": "90574008",
+ "price": "8206.16",
+ "type": "0",
+ "amount": "2.56982410"
+ },
+ {
+ "date": "1560480910",
+ "tid": "90574007",
+ "price": "8204.78",
+ "type": "0",
+ "amount": "0.43017590"
+ },
+ {
+ "date": "1560480886",
+ "tid": "90574005",
+ "price": "8201.71",
+ "type": "1",
+ "amount": "0.02170656"
+ },
+ {
+ "date": "1560480886",
+ "tid": "90574004",
+ "price": "8201.71",
+ "type": "1",
+ "amount": "0.04765181"
+ },
+ {
+ "date": "1560480865",
+ "tid": "90574003",
+ "price": "8205.56",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560480864",
+ "tid": "90574002",
+ "price": "8204.78",
+ "type": "0",
+ "amount": "4.25102766"
+ },
+ {
+ "date": "1560480856",
+ "tid": "90574001",
+ "price": "8201.71",
+ "type": "1",
+ "amount": "0.00068040"
+ },
+ {
+ "date": "1560480846",
+ "tid": "90573998",
+ "price": "8204.43",
+ "type": "0",
+ "amount": "0.00662655"
+ },
+ {
+ "date": "1560480840",
+ "tid": "90573996",
+ "price": "8201.71",
+ "type": "1",
+ "amount": "0.13295981"
+ },
+ {
+ "date": "1560480836",
+ "tid": "90573995",
+ "price": "8202.78",
+ "type": "0",
+ "amount": "0.00968757"
+ },
+ {
+ "date": "1560480834",
+ "tid": "90573994",
+ "price": "8201.71",
+ "type": "1",
+ "amount": "0.26819887"
+ },
+ {
+ "date": "1560480834",
+ "tid": "90573992",
+ "price": "8202.78",
+ "type": "0",
+ "amount": "0.06688532"
+ },
+ {
+ "date": "1560480826",
+ "tid": "90573979",
+ "price": "8202.78",
+ "type": "0",
+ "amount": "0.00372670"
+ },
+ {
+ "date": "1560480816",
+ "tid": "90573977",
+ "price": "8201.71",
+ "type": "1",
+ "amount": "0.46546655"
+ },
+ {
+ "date": "1560480807",
+ "tid": "90573976",
+ "price": "8204.43",
+ "type": "0",
+ "amount": "0.12785477"
+ },
+ {
+ "date": "1560480796",
+ "tid": "90573975",
+ "price": "8204.43",
+ "type": "0",
+ "amount": "0.02153265"
+ },
+ {
+ "date": "1560480775",
+ "tid": "90573968",
+ "price": "8204.43",
+ "type": "0",
+ "amount": "0.28041955"
+ },
+ {
+ "date": "1560480775",
+ "tid": "90573967",
+ "price": "8204.43",
+ "type": "0",
+ "amount": "0.28043567"
+ },
+ {
+ "date": "1560480775",
+ "tid": "90573965",
+ "price": "8204.43",
+ "type": "0",
+ "amount": "0.28044676"
+ },
+ {
+ "date": "1560480766",
+ "tid": "90573964",
+ "price": "8201.71",
+ "type": "1",
+ "amount": "0.01591045"
+ },
+ {
+ "date": "1560480746",
+ "tid": "90573962",
+ "price": "8204.78",
+ "type": "0",
+ "amount": "0.00545812"
+ },
+ {
+ "date": "1560480735",
+ "tid": "90573961",
+ "price": "8204.78",
+ "type": "0",
+ "amount": "0.00082781"
+ },
+ {
+ "date": "1560480726",
+ "tid": "90573960",
+ "price": "8207.39",
+ "type": "0",
+ "amount": "0.00082781"
+ },
+ {
+ "date": "1560480695",
+ "tid": "90573959",
+ "price": "8207.13",
+ "type": "0",
+ "amount": "0.03311518"
+ },
+ {
+ "date": "1560480691",
+ "tid": "90573958",
+ "price": "8207.13",
+ "type": "0",
+ "amount": "0.07249340"
+ },
+ {
+ "date": "1560480685",
+ "tid": "90573957",
+ "price": "8207.75",
+ "type": "0",
+ "amount": "0.00889152"
+ },
+ {
+ "date": "1560480685",
+ "tid": "90573956",
+ "price": "8207.13",
+ "type": "0",
+ "amount": "0.15129841"
+ },
+ {
+ "date": "1560480676",
+ "tid": "90573954",
+ "price": "8205.74",
+ "type": "1",
+ "amount": "0.25600000"
+ },
+ {
+ "date": "1560480675",
+ "tid": "90573953",
+ "price": "8207.13",
+ "type": "0",
+ "amount": "0.00612624"
+ },
+ {
+ "date": "1560480655",
+ "tid": "90573952",
+ "price": "8207.13",
+ "type": "0",
+ "amount": "0.08273031"
+ },
+ {
+ "date": "1560480647",
+ "tid": "90573950",
+ "price": "8209.84",
+ "type": "0",
+ "amount": "0.00243001"
+ },
+ {
+ "date": "1560480645",
+ "tid": "90573949",
+ "price": "8205.81",
+ "type": "1",
+ "amount": "0.00460139"
+ },
+ {
+ "date": "1560480645",
+ "tid": "90573948",
+ "price": "8207.04",
+ "type": "1",
+ "amount": "0.00300700"
+ },
+ {
+ "date": "1560480639",
+ "tid": "90573946",
+ "price": "8210.59",
+ "type": "0",
+ "amount": "1.40607657"
+ },
+ {
+ "date": "1560480624",
+ "tid": "90573942",
+ "price": "8206.43",
+ "type": "1",
+ "amount": "0.43326786"
+ },
+ {
+ "date": "1560480624",
+ "tid": "90573941",
+ "price": "8206.43",
+ "type": "1",
+ "amount": "0.56623214"
+ },
+ {
+ "date": "1560480595",
+ "tid": "90573935",
+ "price": "8210.65",
+ "type": "0",
+ "amount": "0.16543346"
+ },
+ {
+ "date": "1560480585",
+ "tid": "90573934",
+ "price": "8210.58",
+ "type": "0",
+ "amount": "0.00827500"
+ },
+ {
+ "date": "1560480565",
+ "tid": "90573930",
+ "price": "8212.27",
+ "type": "0",
+ "amount": "0.08273535"
+ },
+ {
+ "date": "1560480554",
+ "tid": "90573919",
+ "price": "8212.27",
+ "type": "0",
+ "amount": "0.02887220"
+ },
+ {
+ "date": "1560480546",
+ "tid": "90573914",
+ "price": "8210.58",
+ "type": "0",
+ "amount": "0.00414357"
+ },
+ {
+ "date": "1560480538",
+ "tid": "90573913",
+ "price": "8210.58",
+ "type": "0",
+ "amount": "0.02673700"
+ },
+ {
+ "date": "1560480511",
+ "tid": "90573911",
+ "price": "8209.15",
+ "type": "1",
+ "amount": "0.12369077"
+ },
+ {
+ "date": "1560480485",
+ "tid": "90573909",
+ "price": "8210.08",
+ "type": "0",
+ "amount": "0.00453028"
+ },
+ {
+ "date": "1560480476",
+ "tid": "90573904",
+ "price": "8210.09",
+ "type": "0",
+ "amount": "0.00992971"
+ },
+ {
+ "date": "1560480459",
+ "tid": "90573902",
+ "price": "8212.09",
+ "type": "0",
+ "amount": "0.00245534"
+ },
+ {
+ "date": "1560480444",
+ "tid": "90573900",
+ "price": "8212.09",
+ "type": "1",
+ "amount": "0.00576635"
+ },
+ {
+ "date": "1560480435",
+ "tid": "90573899",
+ "price": "8215.53",
+ "type": "0",
+ "amount": "0.01739012"
+ },
+ {
+ "date": "1560480415",
+ "tid": "90573885",
+ "price": "8217.17",
+ "type": "0",
+ "amount": "0.05456435"
+ },
+ {
+ "date": "1560480410",
+ "tid": "90573884",
+ "price": "8210.91",
+ "type": "1",
+ "amount": "0.01260000"
+ },
+ {
+ "date": "1560480390",
+ "tid": "90573883",
+ "price": "8212.76",
+ "type": "0",
+ "amount": "0.76245209"
+ },
+ {
+ "date": "1560480390",
+ "tid": "90573882",
+ "price": "8212.76",
+ "type": "1",
+ "amount": "0.05865337"
+ },
+ {
+ "date": "1560480385",
+ "tid": "90573880",
+ "price": "8215.47",
+ "type": "0",
+ "amount": "0.02067307"
+ },
+ {
+ "date": "1560480373",
+ "tid": "90573875",
+ "price": "8215.47",
+ "type": "0",
+ "amount": "0.00240932"
+ },
+ {
+ "date": "1560480367",
+ "tid": "90573873",
+ "price": "8216.63",
+ "type": "0",
+ "amount": "0.00576635"
+ },
+ {
+ "date": "1560480352",
+ "tid": "90573867",
+ "price": "8217.44",
+ "type": "1",
+ "amount": "0.46810000"
+ },
+ {
+ "date": "1560480338",
+ "tid": "90573862",
+ "price": "8218.17",
+ "type": "0",
+ "amount": "0.02025940"
+ },
+ {
+ "date": "1560480335",
+ "tid": "90573860",
+ "price": "8212.55",
+ "type": "1",
+ "amount": "0.18946883"
+ },
+ {
+ "date": "1560480335",
+ "tid": "90573859",
+ "price": "8212.55",
+ "type": "1",
+ "amount": "0.02449105"
+ },
+ {
+ "date": "1560480325",
+ "tid": "90573857",
+ "price": "8217.44",
+ "type": "0",
+ "amount": "0.07698833"
+ },
+ {
+ "date": "1560480315",
+ "tid": "90573855",
+ "price": "8212.45",
+ "type": "1",
+ "amount": "0.02389867"
+ },
+ {
+ "date": "1560480305",
+ "tid": "90573850",
+ "price": "8217.44",
+ "type": "0",
+ "amount": "0.01663677"
+ },
+ {
+ "date": "1560480295",
+ "tid": "90573849",
+ "price": "8216.54",
+ "type": "0",
+ "amount": "0.00372047"
+ },
+ {
+ "date": "1560480234",
+ "tid": "90573833",
+ "price": "8216.40",
+ "type": "0",
+ "amount": "0.01385378"
+ },
+ {
+ "date": "1560480214",
+ "tid": "90573828",
+ "price": "8216.40",
+ "type": "0",
+ "amount": "0.00414622"
+ },
+ {
+ "date": "1560480184",
+ "tid": "90573823",
+ "price": "8214.90",
+ "type": "0",
+ "amount": "0.00324999"
+ },
+ {
+ "date": "1560480174",
+ "tid": "90573820",
+ "price": "8210.60",
+ "type": "1",
+ "amount": "0.78875913"
+ },
+ {
+ "date": "1560480164",
+ "tid": "90573819",
+ "price": "8210.48",
+ "type": "1",
+ "amount": "0.00708531"
+ },
+ {
+ "date": "1560480155",
+ "tid": "90573802",
+ "price": "8210.55",
+ "type": "1",
+ "amount": "0.01086528"
+ },
+ {
+ "date": "1560480144",
+ "tid": "90573798",
+ "price": "8214.35",
+ "type": "0",
+ "amount": "0.02017215"
+ },
+ {
+ "date": "1560480134",
+ "tid": "90573797",
+ "price": "8210.61",
+ "type": "0",
+ "amount": "0.72610452"
+ },
+ {
+ "date": "1560480114",
+ "tid": "90573777",
+ "price": "8210.61",
+ "type": "0",
+ "amount": "0.01811930"
+ },
+ {
+ "date": "1560480107",
+ "tid": "90573776",
+ "price": "8210.61",
+ "type": "0",
+ "amount": "0.00204686"
+ },
+ {
+ "date": "1560480094",
+ "tid": "90573774",
+ "price": "8208.97",
+ "type": "0",
+ "amount": "0.00372462"
+ },
+ {
+ "date": "1560480074",
+ "tid": "90573773",
+ "price": "8208.97",
+ "type": "0",
+ "amount": "0.00082730"
+ },
+ {
+ "date": "1560480064",
+ "tid": "90573772",
+ "price": "8208.96",
+ "type": "1",
+ "amount": "0.00479372"
+ },
+ {
+ "date": "1560480055",
+ "tid": "90573770",
+ "price": "8214.35",
+ "type": "0",
+ "amount": "0.00082785"
+ },
+ {
+ "date": "1560480044",
+ "tid": "90573769",
+ "price": "8209.60",
+ "type": "1",
+ "amount": "0.08666623"
+ },
+ {
+ "date": "1560480044",
+ "tid": "90573768",
+ "price": "8209.60",
+ "type": "1",
+ "amount": "0.04419220"
+ },
+ {
+ "date": "1560480043",
+ "tid": "90573767",
+ "price": "8209.60",
+ "type": "1",
+ "amount": "0.35000000"
+ },
+ {
+ "date": "1560480024",
+ "tid": "90573766",
+ "price": "8212.35",
+ "type": "0",
+ "amount": "0.00082751"
+ },
+ {
+ "date": "1560480009",
+ "tid": "90573764",
+ "price": "8212.30",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560480005",
+ "tid": "90573760",
+ "price": "8209.60",
+ "type": "1",
+ "amount": "0.15401468"
+ },
+ {
+ "date": "1560480001",
+ "tid": "90573759",
+ "price": "8212.81",
+ "type": "1",
+ "amount": "0.05746101"
+ },
+ {
+ "date": "1560480000",
+ "tid": "90573758",
+ "price": "8212.81",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479984",
+ "tid": "90573755",
+ "price": "8211.39",
+ "type": "0",
+ "amount": "0.00662006"
+ },
+ {
+ "date": "1560479974",
+ "tid": "90573754",
+ "price": "8210.21",
+ "type": "0",
+ "amount": "0.00165513"
+ },
+ {
+ "date": "1560479964",
+ "tid": "90573753",
+ "price": "8211.33",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479964",
+ "tid": "90573752",
+ "price": "8211.32",
+ "type": "0",
+ "amount": "0.06000000"
+ },
+ {
+ "date": "1560479954",
+ "tid": "90573751",
+ "price": "8209.75",
+ "type": "1",
+ "amount": "0.00476779"
+ },
+ {
+ "date": "1560479954",
+ "tid": "90573750",
+ "price": "8209.75",
+ "type": "1",
+ "amount": "0.00694838"
+ },
+ {
+ "date": "1560479934",
+ "tid": "90573747",
+ "price": "8212.60",
+ "type": "0",
+ "amount": "0.29311100"
+ },
+ {
+ "date": "1560479934",
+ "tid": "90573746",
+ "price": "8212.30",
+ "type": "0",
+ "amount": "0.02100000"
+ },
+ {
+ "date": "1560479919",
+ "tid": "90573744",
+ "price": "8210.25",
+ "type": "0",
+ "amount": "0.01700000"
+ },
+ {
+ "date": "1560479919",
+ "tid": "90573743",
+ "price": "8210.06",
+ "type": "0",
+ "amount": "0.05675000"
+ },
+ {
+ "date": "1560479914",
+ "tid": "90573742",
+ "price": "8206.14",
+ "type": "1",
+ "amount": "0.01009167"
+ },
+ {
+ "date": "1560479912",
+ "tid": "90573741",
+ "price": "8209.05",
+ "type": "0",
+ "amount": "1.99995665"
+ },
+ {
+ "date": "1560479912",
+ "tid": "90573740",
+ "price": "8208.20",
+ "type": "0",
+ "amount": "0.01900000"
+ },
+ {
+ "date": "1560479907",
+ "tid": "90573739",
+ "price": "8206.14",
+ "type": "1",
+ "amount": "0.02438795"
+ },
+ {
+ "date": "1560479874",
+ "tid": "90573738",
+ "price": "8204.09",
+ "type": "1",
+ "amount": "0.08065600"
+ },
+ {
+ "date": "1560479834",
+ "tid": "90573734",
+ "price": "8206.93",
+ "type": "0",
+ "amount": "0.00490800"
+ },
+ {
+ "date": "1560479814",
+ "tid": "90573732",
+ "price": "8207.06",
+ "type": "0",
+ "amount": "0.01614692"
+ },
+ {
+ "date": "1560479814",
+ "tid": "90573731",
+ "price": "8206.15",
+ "type": "0",
+ "amount": "0.02100000"
+ },
+ {
+ "date": "1560479814",
+ "tid": "90573730",
+ "price": "8204.10",
+ "type": "0",
+ "amount": "0.04486540"
+ },
+ {
+ "date": "1560479794",
+ "tid": "90573727",
+ "price": "8204.10",
+ "type": "0",
+ "amount": "0.00245641"
+ },
+ {
+ "date": "1560479794",
+ "tid": "90573726",
+ "price": "8204.10",
+ "type": "0",
+ "amount": "0.01800000"
+ },
+ {
+ "date": "1560479785",
+ "tid": "90573724",
+ "price": "8202.35",
+ "type": "1",
+ "amount": "0.07670897"
+ },
+ {
+ "date": "1560479785",
+ "tid": "90573723",
+ "price": "8204.09",
+ "type": "1",
+ "amount": "1.42329103"
+ },
+ {
+ "date": "1560479769",
+ "tid": "90573722",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "42.14277558"
+ },
+ {
+ "date": "1560479768",
+ "tid": "90573721",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.00656743"
+ },
+ {
+ "date": "1560479759",
+ "tid": "90573717",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.03025153"
+ },
+ {
+ "date": "1560479754",
+ "tid": "90573713",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.00414321"
+ },
+ {
+ "date": "1560479723",
+ "tid": "90573712",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.00248201"
+ },
+ {
+ "date": "1560479720",
+ "tid": "90573711",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479719",
+ "tid": "90573710",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479718",
+ "tid": "90573709",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479717",
+ "tid": "90573708",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479716",
+ "tid": "90573707",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479715",
+ "tid": "90573706",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479714",
+ "tid": "90573705",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "4.00000000"
+ },
+ {
+ "date": "1560479713",
+ "tid": "90573704",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479708",
+ "tid": "90573703",
+ "price": "8199.58",
+ "type": "1",
+ "amount": "1.00000000"
+ },
+ {
+ "date": "1560479708",
+ "tid": "90573702",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.38000000"
+ },
+ {
+ "date": "1560479708",
+ "tid": "90573701",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.12674813"
+ },
+ {
+ "date": "1560479707",
+ "tid": "90573700",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "1.75816073"
+ },
+ {
+ "date": "1560479707",
+ "tid": "90573699",
+ "price": "8199.60",
+ "type": "0",
+ "amount": "3.47183927"
+ },
+ {
+ "date": "1560479707",
+ "tid": "90573698",
+ "price": "8199.60",
+ "type": "0",
+ "amount": "0.06000000"
+ },
+ {
+ "date": "1560479707",
+ "tid": "90573697",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "8.00000000"
+ },
+ {
+ "date": "1560479707",
+ "tid": "90573696",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "4.00000000"
+ },
+ {
+ "date": "1560479707",
+ "tid": "90573695",
+ "price": "8200.00",
+ "type": "0",
+ "amount": "0.03183927"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573694",
+ "price": "8200.68",
+ "type": "1",
+ "amount": "8.00000000"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573693",
+ "price": "8200.94",
+ "type": "1",
+ "amount": "2.50000000"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573692",
+ "price": "8201.17",
+ "type": "1",
+ "amount": "10.00000000"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573691",
+ "price": "8202.68",
+ "type": "1",
+ "amount": "0.06000000"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573690",
+ "price": "8203.30",
+ "type": "1",
+ "amount": "4.00000000"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573689",
+ "price": "8203.44",
+ "type": "1",
+ "amount": "5.00000000"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573688",
+ "price": "8203.56",
+ "type": "1",
+ "amount": "1.00000000"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573687",
+ "price": "8204.21",
+ "type": "1",
+ "amount": "3.04400000"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573686",
+ "price": "8204.21",
+ "type": "1",
+ "amount": "1.46816073"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573685",
+ "price": "8204.40",
+ "type": "1",
+ "amount": "2.50000000"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573684",
+ "price": "8207.00",
+ "type": "1",
+ "amount": "0.98487138"
+ },
+ {
+ "date": "1560479706",
+ "tid": "90573683",
+ "price": "8207.00",
+ "type": "1",
+ "amount": "0.80000000"
+ },
+ {
+ "date": "1560479705",
+ "tid": "90573682",
+ "price": "8207.01",
+ "type": "1",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479704",
+ "tid": "90573681",
+ "price": "8207.01",
+ "type": "0",
+ "amount": "0.66488753"
+ },
+ {
+ "date": "1560479703",
+ "tid": "90573680",
+ "price": "8207.01",
+ "type": "1",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479703",
+ "tid": "90573678",
+ "price": "8212.53",
+ "type": "0",
+ "amount": "0.00686005"
+ },
+ {
+ "date": "1560479684",
+ "tid": "90573677",
+ "price": "8207.00",
+ "type": "1",
+ "amount": "0.20000000"
+ },
+ {
+ "date": "1560479673",
+ "tid": "90573676",
+ "price": "8208.88",
+ "type": "1",
+ "amount": "0.76618189"
+ },
+ {
+ "date": "1560479673",
+ "tid": "90573675",
+ "price": "8208.88",
+ "type": "1",
+ "amount": "0.02187674"
+ },
+ {
+ "date": "1560479663",
+ "tid": "90573674",
+ "price": "8213.18",
+ "type": "0",
+ "amount": "0.95208092"
+ },
+ {
+ "date": "1560479663",
+ "tid": "90573673",
+ "price": "8212.73",
+ "type": "0",
+ "amount": "0.02600000"
+ },
+ {
+ "date": "1560479663",
+ "tid": "90573672",
+ "price": "8210.68",
+ "type": "0",
+ "amount": "0.02472458"
+ },
+ {
+ "date": "1560479661",
+ "tid": "90573671",
+ "price": "8207.01",
+ "type": "0",
+ "amount": "0.08000000"
+ },
+ {
+ "date": "1560479654",
+ "tid": "90573670",
+ "price": "8207.01",
+ "type": "1",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479613",
+ "tid": "90573665",
+ "price": "8210.68",
+ "type": "0",
+ "amount": "0.00427542"
+ },
+ {
+ "date": "1560479576",
+ "tid": "90573660",
+ "price": "8210.41",
+ "type": "0",
+ "amount": "0.05321761"
+ },
+ {
+ "date": "1560479564",
+ "tid": "90573656",
+ "price": "8212.18",
+ "type": "0",
+ "amount": "0.00993314"
+ },
+ {
+ "date": "1560479560",
+ "tid": "90573654",
+ "price": "8208.74",
+ "type": "0",
+ "amount": "0.00005662"
+ },
+ {
+ "date": "1560479560",
+ "tid": "90573653",
+ "price": "8208.30",
+ "type": "0",
+ "amount": "0.99089157"
+ },
+ {
+ "date": "1560479553",
+ "tid": "90573649",
+ "price": "8208.30",
+ "type": "0",
+ "amount": "0.00910843"
+ },
+ {
+ "date": "1560479519",
+ "tid": "90573640",
+ "price": "8204.52",
+ "type": "0",
+ "amount": "0.02578028"
+ },
+ {
+ "date": "1560479519",
+ "tid": "90573639",
+ "price": "8203.04",
+ "type": "0",
+ "amount": "0.00257719"
+ },
+ {
+ "date": "1560479514",
+ "tid": "90573634",
+ "price": "8204.52",
+ "type": "0",
+ "amount": "0.00655700"
+ },
+ {
+ "date": "1560479510",
+ "tid": "90573632",
+ "price": "8200.77",
+ "type": "1",
+ "amount": "0.05154382"
+ },
+ {
+ "date": "1560479503",
+ "tid": "90573629",
+ "price": "8200.55",
+ "type": "0",
+ "amount": "1.03087649"
+ },
+ {
+ "date": "1560479503",
+ "tid": "90573628",
+ "price": "8199.24",
+ "type": "0",
+ "amount": "0.05472265"
+ },
+ {
+ "date": "1560479483",
+ "tid": "90573627",
+ "price": "8197.31",
+ "type": "1",
+ "amount": "0.03183927"
+ },
+ {
+ "date": "1560479452",
+ "tid": "90573622",
+ "price": "8202.13",
+ "type": "0",
+ "amount": "0.01220000"
+ },
+ {
+ "date": "1560479444",
+ "tid": "90573621",
+ "price": "8201.44",
+ "type": "0",
+ "amount": "0.00789578"
+ },
+ {
+ "date": "1560479438",
+ "tid": "90573618",
+ "price": "8199.00",
+ "type": "1",
+ "amount": "2.02000000"
+ },
+ {
+ "date": "1560479427",
+ "tid": "90573616",
+ "price": "8207.28",
+ "type": "0",
+ "amount": "0.00474456"
+ },
+ {
+ "date": "1560479416",
+ "tid": "90573615",
+ "price": "8205.60",
+ "type": "0",
+ "amount": "0.05000000"
+ },
+ {
+ "date": "1560479412",
+ "tid": "90573614",
+ "price": "8205.55",
+ "type": "0",
+ "amount": "0.03500000"
+ },
+ {
+ "date": "1560479390",
+ "tid": "90573611",
+ "price": "8207.28",
+ "type": "0",
+ "amount": "0.09343478"
+ },
+ {
+ "date": "1560479384",
+ "tid": "90573610",
+ "price": "8207.37",
+ "type": "0",
+ "amount": "0.02500000"
+ },
+ {
+ "date": "1560479373",
+ "tid": "90573609",
+ "price": "8210.85",
+ "type": "0",
+ "amount": "0.05738772"
+ },
+ {
+ "date": "1560479363",
+ "tid": "90573608",
+ "price": "8210.85",
+ "type": "0",
+ "amount": "0.00082739"
+ },
+ {
+ "date": "1560479356",
+ "tid": "90573606",
+ "price": "8210.85",
+ "type": "0",
+ "amount": "0.09030000"
+ },
+ {
+ "date": "1560479343",
+ "tid": "90573602",
+ "price": "8207.86",
+ "type": "0",
+ "amount": "0.00372343"
+ },
+ {
+ "date": "1560479324",
+ "tid": "90573597",
+ "price": "8208.17",
+ "type": "0",
+ "amount": "0.07500000"
+ },
+ {
+ "date": "1560479323",
+ "tid": "90573596",
+ "price": "8208.17",
+ "type": "0",
+ "amount": "0.00860000"
+ },
+ {
+ "date": "1560479322",
+ "tid": "90573595",
+ "price": "8208.17",
+ "type": "0",
+ "amount": "0.00307000"
+ },
+ {
+ "date": "1560479313",
+ "tid": "90573592",
+ "price": "8209.85",
+ "type": "0",
+ "amount": "0.00835703"
+ },
+ {
+ "date": "1560479261",
+ "tid": "90573560",
+ "price": "8212.07",
+ "type": "0",
+ "amount": "0.12471398"
+ },
+ {
+ "date": "1560479252",
+ "tid": "90573559",
+ "price": "8212.07",
+ "type": "0",
+ "amount": "0.00253650"
+ },
+ {
+ "date": "1560479232",
+ "tid": "90573558",
+ "price": "8211.02",
+ "type": "0",
+ "amount": "0.01994223"
+ },
+ {
+ "date": "1560479212",
+ "tid": "90573555",
+ "price": "8210.80",
+ "type": "0",
+ "amount": "0.02480593"
+ },
+ {
+ "date": "1560479203",
+ "tid": "90573551",
+ "price": "8207.95",
+ "type": "1",
+ "amount": "0.02993723"
+ },
+ {
+ "date": "1560479192",
+ "tid": "90573548",
+ "price": "8211.09",
+ "type": "0",
+ "amount": "0.00082751"
+ },
+ {
+ "date": "1560479183",
+ "tid": "90573547",
+ "price": "8211.09",
+ "type": "0",
+ "amount": "0.03053248"
+ },
+ {
+ "date": "1560479173",
+ "tid": "90573542",
+ "price": "8212.79",
+ "type": "0",
+ "amount": "0.00086431"
+ },
+ {
+ "date": "1560479162",
+ "tid": "90573540",
+ "price": "8212.79",
+ "type": "0",
+ "amount": "0.02067115"
+ },
+ {
+ "date": "1560479157",
+ "tid": "90573536",
+ "price": "8213.74",
+ "type": "1",
+ "amount": "0.28923200"
+ },
+ {
+ "date": "1560479155",
+ "tid": "90573534",
+ "price": "8212.73",
+ "type": "1",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560479153",
+ "tid": "90573533",
+ "price": "8217.40",
+ "type": "0",
+ "amount": "0.09139912"
+ },
+ {
+ "date": "1560479122",
+ "tid": "90573526",
+ "price": "8214.96",
+ "type": "0",
+ "amount": "0.04127993"
+ },
+ {
+ "date": "1560479113",
+ "tid": "90573523",
+ "price": "8214.96",
+ "type": "0",
+ "amount": "0.00638833"
+ },
+ {
+ "date": "1560479113",
+ "tid": "90573522",
+ "price": "8214.96",
+ "type": "0",
+ "amount": "0.00602517"
+ },
+ {
+ "date": "1560479113",
+ "tid": "90573521",
+ "price": "8214.96",
+ "type": "0",
+ "amount": "0.00583306"
+ },
+ {
+ "date": "1560479113",
+ "tid": "90573520",
+ "price": "8214.96",
+ "type": "0",
+ "amount": "0.00711027"
+ },
+ {
+ "date": "1560479113",
+ "tid": "90573519",
+ "price": "8214.96",
+ "type": "0",
+ "amount": "0.01226392"
+ },
+ {
+ "date": "1560479113",
+ "tid": "90573518",
+ "price": "8214.96",
+ "type": "0",
+ "amount": "0.01643246"
+ },
+ {
+ "date": "1560479113",
+ "tid": "90573517",
+ "price": "8214.96",
+ "type": "0",
+ "amount": "0.11106518"
+ },
+ {
+ "date": "1560479113",
+ "tid": "90573516",
+ "price": "8214.96",
+ "type": "0",
+ "amount": "0.02301980"
+ },
+ {
+ "date": "1560479112",
+ "tid": "90573515",
+ "price": "8215.80",
+ "type": "0",
+ "amount": "0.07859474"
+ },
+ {
+ "date": "1560479111",
+ "tid": "90573513",
+ "price": "8217.76",
+ "type": "1",
+ "amount": "0.04000000"
+ },
+ {
+ "date": "1560479092",
+ "tid": "90573510",
+ "price": "8214.44",
+ "type": "0",
+ "amount": "0.00574909"
+ },
+ {
+ "date": "1560479072",
+ "tid": "90573505",
+ "price": "8212.73",
+ "type": "1",
+ "amount": "0.02781989"
+ },
+ {
+ "date": "1560479043",
+ "tid": "90573497",
+ "price": "8215.30",
+ "type": "0",
+ "amount": "0.00827258"
+ },
+ {
+ "date": "1560479025",
+ "tid": "90573491",
+ "price": "8213.30",
+ "type": "0",
+ "amount": "0.05768813"
+ },
+ {
+ "date": "1560479002",
+ "tid": "90573485",
+ "price": "8213.07",
+ "type": "0",
+ "amount": "0.00827855"
+ },
+ {
+ "date": "1560478992",
+ "tid": "90573484",
+ "price": "8207.38",
+ "type": "0",
+ "amount": "0.01241108"
+ },
+ {
+ "date": "1560478972",
+ "tid": "90573470",
+ "price": "8215.53",
+ "type": "0",
+ "amount": "0.21039602"
+ },
+ {
+ "date": "1560478972",
+ "tid": "90573469",
+ "price": "8215.25",
+ "type": "0",
+ "amount": "1.00000000"
+ },
+ {
+ "date": "1560478972",
+ "tid": "90573468",
+ "price": "8212.91",
+ "type": "0",
+ "amount": "0.64699989"
+ },
+ {
+ "date": "1560478972",
+ "tid": "90573467",
+ "price": "8212.34",
+ "type": "0",
+ "amount": "0.14260409"
+ },
+ {
+ "date": "1560478941",
+ "tid": "90573453",
+ "price": "8212.34",
+ "type": "0",
+ "amount": "2.17739591"
+ },
+ {
+ "date": "1560478932",
+ "tid": "90573452",
+ "price": "8212.91",
+ "type": "0",
+ "amount": "0.00157623"
+ },
+ {
+ "date": "1560478921",
+ "tid": "90573446",
+ "price": "8208.64",
+ "type": "1",
+ "amount": "0.00645909"
+ },
+ {
+ "date": "1560478913",
+ "tid": "90573443",
+ "price": "8210.41",
+ "type": "0",
+ "amount": "0.01101883"
+ },
+ {
+ "date": "1560478892",
+ "tid": "90573438",
+ "price": "8207.35",
+ "type": "1",
+ "amount": "0.00546297"
+ },
+ {
+ "date": "1560478886",
+ "tid": "90573436",
+ "price": "8207.35",
+ "type": "1",
+ "amount": "0.07858079"
+ },
+ {
+ "date": "1560478884",
+ "tid": "90573435",
+ "price": "8208.44",
+ "type": "1",
+ "amount": "0.02927716"
+ },
+ {
+ "date": "1560478882",
+ "tid": "90573428",
+ "price": "8210.29",
+ "type": "1",
+ "amount": "0.39569435"
+ },
+ {
+ "date": "1560478882",
+ "tid": "90573427",
+ "price": "8210.29",
+ "type": "0",
+ "amount": "0.00143200"
+ },
+ {
+ "date": "1560478872",
+ "tid": "90573424",
+ "price": "8208.44",
+ "type": "1",
+ "amount": "0.01572284"
+ },
+ {
+ "date": "1560478867",
+ "tid": "90573423",
+ "price": "8210.41",
+ "type": "0",
+ "amount": "0.84040505"
+ },
+ {
+ "date": "1560478862",
+ "tid": "90573419",
+ "price": "8212.22",
+ "type": "0",
+ "amount": "0.15514014"
+ },
+ {
+ "date": "1560478862",
+ "tid": "90573418",
+ "price": "8210.41",
+ "type": "0",
+ "amount": "1.49460755"
+ },
+ {
+ "date": "1560478852",
+ "tid": "90573416",
+ "price": "8207.35",
+ "type": "1",
+ "amount": "0.27326256"
+ },
+ {
+ "date": "1560478852",
+ "tid": "90573415",
+ "price": "8207.35",
+ "type": "1",
+ "amount": "0.06732046"
+ },
+ {
+ "date": "1560478842",
+ "tid": "90573414",
+ "price": "8210.41",
+ "type": "0",
+ "amount": "0.00281441"
+ },
+ {
+ "date": "1560478832",
+ "tid": "90573413",
+ "price": "8208.25",
+ "type": "0",
+ "amount": "0.02266849"
+ },
+ {
+ "date": "1560478812",
+ "tid": "90573410",
+ "price": "8205.10",
+ "type": "1",
+ "amount": "0.00514136"
+ },
+ {
+ "date": "1560478777",
+ "tid": "90573408",
+ "price": "8203.20",
+ "type": "1",
+ "amount": "0.00238608"
+ },
+ {
+ "date": "1560478762",
+ "tid": "90573407",
+ "price": "8208.49",
+ "type": "0",
+ "amount": "0.05581238"
+ },
+ {
+ "date": "1560478749",
+ "tid": "90573405",
+ "price": "8207.54",
+ "type": "1",
+ "amount": "0.22801975"
+ },
+ {
+ "date": "1560478732",
+ "tid": "90573397",
+ "price": "8212.22",
+ "type": "0",
+ "amount": "0.04137929"
+ },
+ {
+ "date": "1560478722",
+ "tid": "90573395",
+ "price": "8210.33",
+ "type": "0",
+ "amount": "0.03537044"
+ },
+ {
+ "date": "1560478702",
+ "tid": "90573390",
+ "price": "8213.42",
+ "type": "0",
+ "amount": "0.00257804"
+ },
+ {
+ "date": "1560478691",
+ "tid": "90573388",
+ "price": "8207.54",
+ "type": "1",
+ "amount": "0.06297953"
+ },
+ {
+ "date": "1560478681",
+ "tid": "90573380",
+ "price": "8214.09",
+ "type": "0",
+ "amount": "0.10985983"
+ },
+ {
+ "date": "1560478681",
+ "tid": "90573379",
+ "price": "8212.27",
+ "type": "0",
+ "amount": "0.01224017"
+ },
+ {
+ "date": "1560478671",
+ "tid": "90573378",
+ "price": "8204.41",
+ "type": "0",
+ "amount": "0.39099421"
+ },
+ {
+ "date": "1560478671",
+ "tid": "90573377",
+ "price": "8208.34",
+ "type": "1",
+ "amount": "0.10356500"
+ },
+ {
+ "date": "1560478658",
+ "tid": "90573376",
+ "price": "8207.52",
+ "type": "0",
+ "amount": "0.03833000"
+ },
+ {
+ "date": "1560478658",
+ "tid": "90573375",
+ "price": "8207.11",
+ "type": "0",
+ "amount": "0.00210835"
+ },
+ {
+ "date": "1560478658",
+ "tid": "90573374",
+ "price": "8206.12",
+ "type": "0",
+ "amount": "0.67779052"
+ },
+ {
+ "date": "1560478638",
+ "tid": "90573370",
+ "price": "8206.12",
+ "type": "0",
+ "amount": "1.17621806"
+ },
+ {
+ "date": "1560478637",
+ "tid": "90573369",
+ "price": "8206.12",
+ "type": "0",
+ "amount": "0.04157141"
+ },
+ {
+ "date": "1560478637",
+ "tid": "90573368",
+ "price": "8206.12",
+ "type": "0",
+ "amount": "4.69742001"
+ },
+ {
+ "date": "1560478623",
+ "tid": "90573360",
+ "price": "8206.32",
+ "type": "1",
+ "amount": "0.04216696"
+ },
+ {
+ "date": "1560478622",
+ "tid": "90573358",
+ "price": "8205.00",
+ "type": "0",
+ "amount": "9.94387452"
+ },
+ {
+ "date": "1560478621",
+ "tid": "90573357",
+ "price": "8201.38",
+ "type": "1",
+ "amount": "0.16292090"
+ },
+ {
+ "date": "1560478621",
+ "tid": "90573356",
+ "price": "8203.72",
+ "type": "1",
+ "amount": "0.62164797"
+ },
+ {
+ "date": "1560478619",
+ "tid": "90573354",
+ "price": "8203.58",
+ "type": "1",
+ "amount": "0.84333929"
+ },
+ {
+ "date": "1560478619",
+ "tid": "90573353",
+ "price": "8204.72",
+ "type": "0",
+ "amount": "0.00122718"
+ },
+ {
+ "date": "1560478619",
+ "tid": "90573352",
+ "price": "8203.58",
+ "type": "0",
+ "amount": "9.08633489"
+ },
+ {
+ "date": "1560478615",
+ "tid": "90573351",
+ "price": "8203.58",
+ "type": "0",
+ "amount": "0.23266511"
+ },
+ {
+ "date": "1560478615",
+ "tid": "90573350",
+ "price": "8203.34",
+ "type": "0",
+ "amount": "0.08427896"
+ },
+ {
+ "date": "1560478604",
+ "tid": "90573348",
+ "price": "8200.71",
+ "type": "1",
+ "amount": "0.01067897"
+ },
+ {
+ "date": "1560478561",
+ "tid": "90573338",
+ "price": "8203.39",
+ "type": "0",
+ "amount": "0.00414116"
+ },
+ {
+ "date": "1560478551",
+ "tid": "90573334",
+ "price": "8204.15",
+ "type": "0",
+ "amount": "0.00166703"
+ },
+ {
+ "date": "1560478551",
+ "tid": "90573333",
+ "price": "8203.67",
+ "type": "0",
+ "amount": "0.03226172"
+ },
+ {
+ "date": "1560478541",
+ "tid": "90573328",
+ "price": "8203.67",
+ "type": "0",
+ "amount": "0.01641746"
+ },
+ {
+ "date": "1560478491",
+ "tid": "90573312",
+ "price": "8203.75",
+ "type": "0",
+ "amount": "0.03997237"
+ },
+ {
+ "date": "1560478487",
+ "tid": "90573310",
+ "price": "8205.00",
+ "type": "0",
+ "amount": "0.00531524"
+ },
+ {
+ "date": "1560478487",
+ "tid": "90573309",
+ "price": "8204.97",
+ "type": "0",
+ "amount": "0.00124819"
+ },
+ {
+ "date": "1560478472",
+ "tid": "90573304",
+ "price": "8205.00",
+ "type": "0",
+ "amount": "0.05081024"
+ },
+ {
+ "date": "1560478460",
+ "tid": "90573301",
+ "price": "8197.24",
+ "type": "0",
+ "amount": "0.29854898"
+ },
+ {
+ "date": "1560478432",
+ "tid": "90573288",
+ "price": "8201.97",
+ "type": "0",
+ "amount": "0.00609280"
+ },
+ {
+ "date": "1560478432",
+ "tid": "90573287",
+ "price": "8199.72",
+ "type": "0",
+ "amount": "0.00907522"
+ },
+ {
+ "date": "1560478431",
+ "tid": "90573286",
+ "price": "8199.69",
+ "type": "0",
+ "amount": "0.00133569"
+ },
+ {
+ "date": "1560478420",
+ "tid": "90573256",
+ "price": "8198.81",
+ "type": "0",
+ "amount": "0.02748281"
+ },
+ {
+ "date": "1560478420",
+ "tid": "90573254",
+ "price": "8197.24",
+ "type": "0",
+ "amount": "9.56400000"
+ },
+ {
+ "date": "1560478419",
+ "tid": "90573252",
+ "price": "8193.77",
+ "type": "0",
+ "amount": "0.00122866"
+ },
+ {
+ "date": "1560478392",
+ "tid": "90573245",
+ "price": "8193.88",
+ "type": "0",
+ "amount": "1.50716419"
+ },
+ {
+ "date": "1560478392",
+ "tid": "90573244",
+ "price": "8193.88",
+ "type": "0",
+ "amount": "0.01947458"
+ },
+ {
+ "date": "1560478392",
+ "tid": "90573243",
+ "price": "8193.85",
+ "type": "0",
+ "amount": "0.00125589"
+ },
+ {
+ "date": "1560478381",
+ "tid": "90573240",
+ "price": "8193.88",
+ "type": "0",
+ "amount": "0.00830954"
+ },
+ {
+ "date": "1560478381",
+ "tid": "90573239",
+ "price": "8193.88",
+ "type": "0",
+ "amount": "6.22194605"
+ },
+ {
+ "date": "1560478381",
+ "tid": "90573238",
+ "price": "8193.88",
+ "type": "0",
+ "amount": "0.11279097"
+ },
+ {
+ "date": "1560478367",
+ "tid": "90573233",
+ "price": "8193.88",
+ "type": "0",
+ "amount": "0.11473652"
+ },
+ {
+ "date": "1560478363",
+ "tid": "90573231",
+ "price": "8193.88",
+ "type": "0",
+ "amount": "0.00307500"
+ },
+ {
+ "date": "1560478361",
+ "tid": "90573230",
+ "price": "8191.21",
+ "type": "1",
+ "amount": "0.17208231"
+ },
+ {
+ "date": "1560478335",
+ "tid": "90573208",
+ "price": "8193.88",
+ "type": "0",
+ "amount": "1.83750315"
+ },
+ {
+ "date": "1560478331",
+ "tid": "90573205",
+ "price": "8191.22",
+ "type": "1",
+ "amount": "0.00358570"
+ },
+ {
+ "date": "1560478323",
+ "tid": "90573204",
+ "price": "8191.22",
+ "type": "1",
+ "amount": "0.21516241"
+ },
+ {
+ "date": "1560478321",
+ "tid": "90573201",
+ "price": "8192.00",
+ "type": "1",
+ "amount": "0.00523360"
+ },
+ {
+ "date": "1560478315",
+ "tid": "90573200",
+ "price": "8195.91",
+ "type": "0",
+ "amount": "0.00375700"
+ },
+ {
+ "date": "1560478300",
+ "tid": "90573199",
+ "price": "8198.73",
+ "type": "0",
+ "amount": "0.04640000"
+ },
+ {
+ "date": "1560478292",
+ "tid": "90573197",
+ "price": "8191.66",
+ "type": "1",
+ "amount": "0.00900080"
+ },
+ {
+ "date": "1560478290",
+ "tid": "90573196",
+ "price": "8198.52",
+ "type": "0",
+ "amount": "0.37418131"
+ },
+ {
+ "date": "1560478290",
+ "tid": "90573194",
+ "price": "8191.27",
+ "type": "0",
+ "amount": "0.00722083"
+ },
+ {
+ "date": "1560478288",
+ "tid": "90573191",
+ "price": "8191.27",
+ "type": "0",
+ "amount": "0.09301806"
+ },
+ {
+ "date": "1560478286",
+ "tid": "90573180",
+ "price": "8191.27",
+ "type": "0",
+ "amount": "0.02000000"
+ },
+ {
+ "date": "1560478286",
+ "tid": "90573179",
+ "price": "8191.28",
+ "type": "1",
+ "amount": "0.01569927"
+ },
+ {
+ "date": "1560478286",
+ "tid": "90573178",
+ "price": "8195.32",
+ "type": "1",
+ "amount": "0.01569927"
+ },
+ {
+ "date": "1560478283",
+ "tid": "90573170",
+ "price": "8191.27",
+ "type": "0",
+ "amount": "0.96698972"
+ },
+ {
+ "date": "1560478280",
+ "tid": "90573166",
+ "price": "8190.88",
+ "type": "0",
+ "amount": "0.04136303"
+ }
+ ],
+ "queryString": "time=hour",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ },
+ "/api/v2/transfer-to-main/": {
+ "POST": [
+ {
+ "data": {
+ "code": "API0000",
+ "reason": "Missing key, signature and nonce parameters",
+ "status": "error"
+ },
+ "queryString": "",
+ "bodyParams": "amount=0.01\u0026currency=btc\u0026key=\u0026nonce=1563774326032825427\u0026signature=0EEA71F2E4811F720A9C5D294D33A75404D2C0902C120D976A50B68946F699C9\u0026subAccount=testAccount",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/user_transactions/": {
+ "POST": [
+ {
+ "data": [
+ {
+ "fee": "0.00000000",
+ "btc_usd": "0.00",
+ "datetime": "2018-01-29 20:26:20",
+ "usd": 0.0,
+ "btc": "-0.94492494",
+ "type": "1",
+ "id": 50197270,
+ "eur": 0.0
+ },
+ {
+ "usd": "-10555.01",
+ "btc_usd": 11170.21000000,
+ "order_id": 857979733,
+ "datetime": "2018-01-29 20:22:34",
+ "fee": "26.39",
+ "btc": "0.94492494",
+ "type": "2",
+ "id": 50197020,
+ "eur": 0.0
+ },
+ {
+ "usd": "10588.90",
+ "btc_usd": "0.00",
+ "datetime": "2018-01-29 16:25:51",
+ "fee": "7.50",
+ "btc": 0.0,
+ "type": "0",
+ "id": 50174021,
+ "eur": 0.0
+ },
+ {
+ "fee": "0.00000000",
+ "btc_usd": "0.00",
+ "datetime": "2018-01-24 05:02:36",
+ "usd": 0.0,
+ "btc": "-0.94268200",
+ "type": "1",
+ "id": 49253685,
+ "eur": 0.0
+ },
+ {
+ "usd": "-1083.72",
+ "btc_usd": 10724.22000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "2.71",
+ "btc": "0.10105350",
+ "type": "2",
+ "id": 49252812,
+ "eur": 0.0
+ },
+ {
+ "usd": "-70.68",
+ "btc_usd": 10722.35000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "0.18",
+ "btc": "0.00659209",
+ "type": "2",
+ "id": 49252809,
+ "eur": 0.0
+ },
+ {
+ "usd": "-6.02",
+ "btc_usd": 10717.81000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "0.02",
+ "btc": "0.00056127",
+ "type": "2",
+ "id": 49252807,
+ "eur": 0.0
+ },
+ {
+ "usd": "-2287.82",
+ "btc_usd": 10712.50000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "5.72",
+ "btc": "0.21356588",
+ "type": "2",
+ "id": 49252806,
+ "eur": 0.0
+ },
+ {
+ "usd": "-5356.25",
+ "btc_usd": 10712.50000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "13.40",
+ "btc": "0.50000000",
+ "type": "2",
+ "id": 49252805,
+ "eur": 0.0
+ },
+ {
+ "usd": "-203.54",
+ "btc_usd": 10712.50000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "0.51",
+ "btc": "0.01900000",
+ "type": "2",
+ "id": 49252804,
+ "eur": 0.0
+ },
+ {
+ "usd": "-801.75",
+ "btc_usd": 10699.99000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:55",
+ "fee": "2.01",
+ "btc": "0.07493008",
+ "type": "2",
+ "id": 49252803,
+ "eur": 0.0
+ },
+ {
+ "usd": "-288.68",
+ "btc_usd": 10699.99000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:54",
+ "fee": "0.73",
+ "btc": "0.02697918",
+ "type": "2",
+ "id": 49252802,
+ "eur": 0.0
+ },
+ {
+ "usd": "10131.24",
+ "btc_usd": "0.00",
+ "datetime": "2018-01-23 13:41:55",
+ "fee": "7.50",
+ "btc": 0.0,
+ "type": "0",
+ "id": 49102898,
+ "eur": 0.0
+ },
+ {
+ "fee": "0.00000000",
+ "btc_usd": "0.00",
+ "datetime": "2018-01-19 18:35:42",
+ "usd": 0.0,
+ "btc": "-0.56161419",
+ "type": "1",
+ "id": 48187525,
+ "eur": 0.0
+ },
+ {
+ "usd": "-142.59",
+ "btc_usd": 11279.95000000,
+ "order_id": 796260299,
+ "datetime": "2018-01-19 18:23:34",
+ "fee": "0.36",
+ "btc": "0.01264068",
+ "type": "2",
+ "id": 48181460,
+ "eur": 0.0
+ },
+ {
+ "usd": "-6192.39",
+ "btc_usd": 11279.95000000,
+ "order_id": 796260299,
+ "datetime": "2018-01-19 18:23:33",
+ "fee": "15.49",
+ "btc": "0.54897351",
+ "type": "2",
+ "id": 48181458,
+ "eur": 0.0
+ },
+ {
+ "usd": "6358.33",
+ "btc_usd": "0.00",
+ "datetime": "2018-01-19 14:11:11",
+ "fee": "7.50",
+ "btc": 0.0,
+ "type": "0",
+ "id": 48118600,
+ "eur": 0.0
+ }
+ ],
+ "queryString": "",
+ "bodyParams": "key=\u0026nonce=1560470788603888812\u0026signature=4B9BBCF0E9A4134800F50D540506ECBE0E8431E9C339B5641613A5BDC1193B18",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/user_transactions/btcusd/": {
+ "POST": [
+ {
+ "data": [
+ {
+ "usd": "-10555.01",
+ "btc_usd": 11170.21000000,
+ "order_id": 857979733,
+ "datetime": "2018-01-29 20:22:34",
+ "fee": "26.39",
+ "btc": "0.94492494",
+ "type": "2",
+ "id": 50197020,
+ "eur": 0.0
+ },
+ {
+ "usd": "-1083.72",
+ "btc_usd": 10724.22000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "2.71",
+ "btc": "0.10105350",
+ "type": "2",
+ "id": 49252812,
+ "eur": 0.0
+ },
+ {
+ "usd": "-70.68",
+ "btc_usd": 10722.35000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "0.18",
+ "btc": "0.00659209",
+ "type": "2",
+ "id": 49252809,
+ "eur": 0.0
+ },
+ {
+ "usd": "-6.02",
+ "btc_usd": 10717.81000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "0.02",
+ "btc": "0.00056127",
+ "type": "2",
+ "id": 49252807,
+ "eur": 0.0
+ },
+ {
+ "usd": "-2287.82",
+ "btc_usd": 10712.50000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "5.72",
+ "btc": "0.21356588",
+ "type": "2",
+ "id": 49252806,
+ "eur": 0.0
+ },
+ {
+ "usd": "-5356.25",
+ "btc_usd": 10712.50000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "13.40",
+ "btc": "0.50000000",
+ "type": "2",
+ "id": 49252805,
+ "eur": 0.0
+ },
+ {
+ "usd": "-203.54",
+ "btc_usd": 10712.50000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:56",
+ "fee": "0.51",
+ "btc": "0.01900000",
+ "type": "2",
+ "id": 49252804,
+ "eur": 0.0
+ },
+ {
+ "usd": "-801.75",
+ "btc_usd": 10699.99000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:55",
+ "fee": "2.01",
+ "btc": "0.07493008",
+ "type": "2",
+ "id": 49252803,
+ "eur": 0.0
+ },
+ {
+ "usd": "-288.68",
+ "btc_usd": 10699.99000000,
+ "order_id": 824343036,
+ "datetime": "2018-01-24 04:54:54",
+ "fee": "0.73",
+ "btc": "0.02697918",
+ "type": "2",
+ "id": 49252802,
+ "eur": 0.0
+ },
+ {
+ "usd": "-142.59",
+ "btc_usd": 11279.95000000,
+ "order_id": 796260299,
+ "datetime": "2018-01-19 18:23:34",
+ "fee": "0.36",
+ "btc": "0.01264068",
+ "type": "2",
+ "id": 48181460,
+ "eur": 0.0
+ },
+ {
+ "usd": "-6192.39",
+ "btc_usd": 11279.95000000,
+ "order_id": 796260299,
+ "datetime": "2018-01-19 18:23:33",
+ "fee": "15.49",
+ "btc": "0.54897351",
+ "type": "2",
+ "id": 48181458,
+ "eur": 0.0
+ }
+ ],
+ "queryString": "",
+ "bodyParams": "key=\u0026nonce=1560480869548338381\u0026signature=323C42A4A251A4ADC2FB65BE8F97B92342A6CF88BE524F7AF1E9FB639CD63DCC",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/v2/withdrawal/open/": {
+ "POST": [
+ {
+ "data": {
+ "status": "error",
+ "reason": {
+ "amount": [
+ "You have only 0.00 USD available. Check your account balance for details."
+ ]
+ }
+ },
+ "queryString": "",
+ "bodyParams": "account_currency=USD\u0026address=123+Fake+St\u0026amount=100\u0026bank_address=123+Fake+St\u0026bank_city=Tarry+Town\u0026bank_country=AU\u0026bank_name=Federal+Reserve+Bank\u0026bank_postal_code=2088\u0026bic=CTBAAU2S\u0026city=Tarry+Town\u0026comment=WITHDRAW+IT+ALL\u0026country=AU\u0026currency=USD\u0026iban=IT60X0542811101000000123456\u0026key=\u0026name=Satoshi+Nakamoto\u0026nonce=1560404081220544346\u0026postal_code=2088\u0026signature=17C71D3A9175255D46D786E9709B815E6C1B450B0E4E60B622EF35F0AD966B70\u0026type=international",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ },
+ {
+ "data": {
+ "status": "error",
+ "reason": {
+ "amount": [
+ "You have only 0.00 USD available. Check your account balance for details."
+ ]
+ }
+ },
+ "queryString": "",
+ "bodyParams": "account_currency=USD\u0026address=123+Fake+St\u0026amount=100\u0026bic=CTBAAU2S\u0026city=Tarry+Town\u0026comment=WITHDRAW+IT+ALL\u0026country=AU\u0026iban=IT60X0542811101000000123456\u0026key=\u0026name=Satoshi+Nakamoto\u0026nonce=1560405334882045192\u0026postal_code=2088\u0026signature=1EB01441F5FB1FA1335EF5586D86F210101F641768C7568A4F9D592AA529628B\u0026type=sepa",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/withdrawal_requests/": {
+ "POST": [
+ {
+ "data": [],
+ "queryString": "",
+ "bodyParams": "key=\u0026nonce=1560480184558170717\u0026signature=5CE4CEFAA663FA03DE0005741683D2AE77D9ACD75F4644A2A1E9030E596D4E04",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/testdata/http_mock/exclusion.json b/testdata/http_mock/exclusion.json
new file mode 100755
index 00000000000..ad277e1d648
--- /dev/null
+++ b/testdata/http_mock/exclusion.json
@@ -0,0 +1,19 @@
+{
+ "headers": [
+ "Key",
+ "X-Mbx-Apikey",
+ "Rest-Key",
+ "Apiauth-Key",
+ "X-Gemini-Apikey"
+ ],
+ "variables": [
+ "bsb",
+ "user",
+ "name",
+ "real_name",
+ "receiver_name",
+ "account_number",
+ "username",
+ "login"
+ ]
+}
\ No newline at end of file
diff --git a/testdata/http_mock/gemini/gemini.json b/testdata/http_mock/gemini/gemini.json
new file mode 100644
index 00000000000..96bd94e65ae
--- /dev/null
+++ b/testdata/http_mock/gemini/gemini.json
@@ -0,0 +1,2734 @@
+{
+ "routes": {
+ "/v1/auction/btcusd": {
+ "GET": [
+ {
+ "data": {
+ "last_auction_eid": 265387648,
+ "next_auction_ms": 1565726400000,
+ "next_update_ms": 1565725800000
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {}
+ }
+ ]
+ },
+ "/v1/auction/btcusd/history": {
+ "GET": [
+ {
+ "data": [
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265367818,
+ "event_type": "auction",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565640000,
+ "timestampms": 1565640000000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265367738,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639985,
+ "timestampms": 1565639985000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265367670,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639970,
+ "timestampms": 1565639970000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265367594,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639955,
+ "timestampms": 1565639955000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265367525,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639940,
+ "timestampms": 1565639940000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265367238,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639880,
+ "timestampms": 1565639880000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265367030,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639820,
+ "timestampms": 1565639820000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265366772,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639760,
+ "timestampms": 1565639760000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265366530,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639700,
+ "timestampms": 1565639700000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265366513,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639640,
+ "timestampms": 1565639640000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265366505,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639580,
+ "timestampms": 1565639580000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265366242,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639520,
+ "timestampms": 1565639520000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.94",
+ "eid": 265366000,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.32",
+ "timestamp": 1565639460,
+ "timestampms": 1565639460000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3136,
+ "auction_result": "failure",
+ "collar_price": "11391.90",
+ "eid": 265365766,
+ "event_type": "indicative",
+ "highest_bid_price": "11391.56",
+ "lowest_ask_price": "11392.24",
+ "timestamp": 1565639400,
+ "timestampms": 1565639400000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.955",
+ "eid": 264896173,
+ "event_type": "auction",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.91",
+ "timestamp": 1565553600,
+ "timestampms": 1565553600000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.955",
+ "eid": 264896124,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.91",
+ "timestamp": 1565553585,
+ "timestampms": 1565553585000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.955",
+ "eid": 264896071,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.91",
+ "timestamp": 1565553570,
+ "timestampms": 1565553570000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.955",
+ "eid": 264895999,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.91",
+ "timestamp": 1565553555,
+ "timestampms": 1565553555000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.955",
+ "eid": 264895915,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.91",
+ "timestamp": 1565553540,
+ "timestampms": 1565553540000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.955",
+ "eid": 264895644,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.91",
+ "timestamp": 1565553480,
+ "timestampms": 1565553480000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.955",
+ "eid": 264895370,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.91",
+ "timestamp": 1565553420,
+ "timestampms": 1565553420000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.955",
+ "eid": 264895088,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.91",
+ "timestamp": 1565553360,
+ "timestampms": 1565553360000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.955",
+ "eid": 264894814,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.91",
+ "timestamp": 1565553300,
+ "timestampms": 1565553300000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.82",
+ "eid": 264894529,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.64",
+ "timestamp": 1565553240,
+ "timestampms": 1565553240000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11365.82",
+ "eid": 264894334,
+ "event_type": "indicative",
+ "highest_bid_price": "11364.00",
+ "lowest_ask_price": "11367.64",
+ "timestamp": 1565553180,
+ "timestampms": 1565553180000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "10949.09",
+ "eid": 264893399,
+ "event_type": "indicative",
+ "highest_bid_price": "10530.54",
+ "lowest_ask_price": "11367.64",
+ "timestamp": 1565553120,
+ "timestampms": 1565553120000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11367.31",
+ "eid": 264892625,
+ "event_type": "indicative",
+ "highest_bid_price": "11365.10",
+ "lowest_ask_price": "11369.52",
+ "timestamp": 1565553060,
+ "timestampms": 1565553060000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3127,
+ "auction_result": "failure",
+ "collar_price": "11367.31",
+ "eid": 264892355,
+ "event_type": "indicative",
+ "highest_bid_price": "11365.10",
+ "lowest_ask_price": "11369.52",
+ "timestamp": 1565553000,
+ "timestampms": 1565553000000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11310.96",
+ "eid": 264422533,
+ "event_type": "auction",
+ "highest_bid_price": "11308.76",
+ "lowest_ask_price": "11313.16",
+ "timestamp": 1565467200,
+ "timestampms": 1565467200000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11310.96",
+ "eid": 264422460,
+ "event_type": "indicative",
+ "highest_bid_price": "11308.76",
+ "lowest_ask_price": "11313.16",
+ "timestamp": 1565467185,
+ "timestampms": 1565467185000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11310.96",
+ "eid": 264422378,
+ "event_type": "indicative",
+ "highest_bid_price": "11308.76",
+ "lowest_ask_price": "11313.16",
+ "timestamp": 1565467170,
+ "timestampms": 1565467170000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11310.96",
+ "eid": 264422311,
+ "event_type": "indicative",
+ "highest_bid_price": "11308.76",
+ "lowest_ask_price": "11313.16",
+ "timestamp": 1565467155,
+ "timestampms": 1565467155000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11310.96",
+ "eid": 264422230,
+ "event_type": "indicative",
+ "highest_bid_price": "11308.76",
+ "lowest_ask_price": "11313.16",
+ "timestamp": 1565467140,
+ "timestampms": 1565467140000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11311.025",
+ "eid": 264421990,
+ "event_type": "indicative",
+ "highest_bid_price": "11308.89",
+ "lowest_ask_price": "11313.16",
+ "timestamp": 1565467080,
+ "timestampms": 1565467080000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11311.095",
+ "eid": 264421860,
+ "event_type": "indicative",
+ "highest_bid_price": "11309.03",
+ "lowest_ask_price": "11313.16",
+ "timestamp": 1565467020,
+ "timestampms": 1565467020000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11311.095",
+ "eid": 264421842,
+ "event_type": "indicative",
+ "highest_bid_price": "11309.03",
+ "lowest_ask_price": "11313.16",
+ "timestamp": 1565466960,
+ "timestampms": 1565466960000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11320.14",
+ "eid": 264420567,
+ "event_type": "indicative",
+ "highest_bid_price": "11317.26",
+ "lowest_ask_price": "11323.02",
+ "timestamp": 1565466900,
+ "timestampms": 1565466900000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11320.15",
+ "eid": 264420293,
+ "event_type": "indicative",
+ "highest_bid_price": "11317.28",
+ "lowest_ask_price": "11323.02",
+ "timestamp": 1565466840,
+ "timestampms": 1565466840000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11320.33",
+ "eid": 264420012,
+ "event_type": "indicative",
+ "highest_bid_price": "11317.64",
+ "lowest_ask_price": "11323.02",
+ "timestamp": 1565466780,
+ "timestampms": 1565466780000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11320.33",
+ "eid": 264419740,
+ "event_type": "indicative",
+ "highest_bid_price": "11317.64",
+ "lowest_ask_price": "11323.02",
+ "timestamp": 1565466720,
+ "timestampms": 1565466720000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11320.33",
+ "eid": 264419500,
+ "event_type": "indicative",
+ "highest_bid_price": "11317.64",
+ "lowest_ask_price": "11323.02",
+ "timestamp": 1565466660,
+ "timestampms": 1565466660000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3121,
+ "auction_result": "failure",
+ "collar_price": "11320.33",
+ "eid": 264419235,
+ "event_type": "indicative",
+ "highest_bid_price": "11317.64",
+ "lowest_ask_price": "11323.02",
+ "timestamp": 1565466600,
+ "timestampms": 1565466600000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3118,
+ "auction_result": "failure",
+ "collar_price": "11808.195",
+ "eid": 263947225,
+ "event_type": "auction",
+ "highest_bid_price": "11806.62",
+ "lowest_ask_price": "11809.77",
+ "timestamp": 1565380800,
+ "timestampms": 1565380800000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3118,
+ "auction_result": "failure",
+ "collar_price": "11808.195",
+ "eid": 263947144,
+ "event_type": "indicative",
+ "highest_bid_price": "11806.62",
+ "lowest_ask_price": "11809.77",
+ "timestamp": 1565380785,
+ "timestampms": 1565380785000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3118,
+ "auction_result": "failure",
+ "collar_price": "11808.195",
+ "eid": 263947071,
+ "event_type": "indicative",
+ "highest_bid_price": "11806.62",
+ "lowest_ask_price": "11809.77",
+ "timestamp": 1565380770,
+ "timestampms": 1565380770000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3118,
+ "auction_result": "failure",
+ "collar_price": "11822.65",
+ "eid": 263945809,
+ "event_type": "indicative",
+ "highest_bid_price": "11821.61",
+ "lowest_ask_price": "11823.69",
+ "timestamp": 1565380755,
+ "timestampms": 1565380755000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3118,
+ "auction_result": "failure",
+ "collar_price": "11822.65",
+ "eid": 263945730,
+ "event_type": "indicative",
+ "highest_bid_price": "11821.61",
+ "lowest_ask_price": "11823.69",
+ "timestamp": 1565380740,
+ "timestampms": 1565380740000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3118,
+ "auction_result": "failure",
+ "collar_price": "11822.65",
+ "eid": 263945457,
+ "event_type": "indicative",
+ "highest_bid_price": "11821.61",
+ "lowest_ask_price": "11823.69",
+ "timestamp": 1565380680,
+ "timestampms": 1565380680000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3118,
+ "auction_result": "failure",
+ "collar_price": "11822.65",
+ "eid": 263945229,
+ "event_type": "indicative",
+ "highest_bid_price": "11821.61",
+ "lowest_ask_price": "11823.69",
+ "timestamp": 1565380620,
+ "timestampms": 1565380620000,
+ "unmatched_collar_quantity": "0"
+ },
+ {
+ "auction_id": 3118,
+ "auction_result": "failure",
+ "collar_price": "11822.65",
+ "eid": 263945016,
+ "event_type": "indicative",
+ "highest_bid_price": "11821.61",
+ "lowest_ask_price": "11823.69",
+ "timestamp": 1565380560,
+ "timestampms": 1565380560000,
+ "unmatched_collar_quantity": "0"
+ }
+ ],
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {}
+ }
+ ]
+ },
+ "/v1/balances": {
+ "POST": [
+ {
+ "data": [
+ {
+ "amount": "2015",
+ "available": "2015",
+ "availableForWithdrawal": "2015",
+ "currency": "BTC",
+ "type": "exchange"
+ },
+ {
+ "amount": "234354.69",
+ "available": "234354.69",
+ "availableForWithdrawal": "234354.69",
+ "currency": "USD",
+ "type": "exchange"
+ },
+ {
+ "amount": "40000",
+ "available": "40000",
+ "availableForWithdrawal": "40000",
+ "currency": "ETH",
+ "type": "exchange"
+ },
+ {
+ "amount": "40000",
+ "available": "40000",
+ "availableForWithdrawal": "40000",
+ "currency": "BCH",
+ "type": "exchange"
+ },
+ {
+ "amount": "20000",
+ "available": "20000",
+ "availableForWithdrawal": "20000",
+ "currency": "LTC",
+ "type": "exchange"
+ },
+ {
+ "amount": "20000",
+ "available": "20000",
+ "availableForWithdrawal": "20000",
+ "currency": "ZEC",
+ "type": "exchange"
+ }
+ ],
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565675398767136594\",\"request\":\"/v1/balances\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU2NzUzOTg3NjcxMzY1OTQiLCJyZXF1ZXN0IjoiL3YxL2JhbGFuY2VzIn0="
+ ],
+ "X-Gemini-Signature": [
+ "41d4e13ca3bbf5eba0a785ff213754c16df1679d07885f1ee7923ea8ee211f2bf848ef3c6dec71ff612ebdc2e7d419f4"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/book/btcusd": {
+ "GET": [
+ {
+ "data": {
+ "asks": [
+ {
+ "amount": "5.34093158",
+ "price": "11385.22",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.13914442",
+ "price": "11390.45",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1",
+ "price": "11390.46",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2",
+ "price": "11390.97",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2",
+ "price": "11391.11",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.753",
+ "price": "11391.50",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.11803397",
+ "price": "11392.38",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.35",
+ "price": "11392.91",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1",
+ "price": "11393.19",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.468",
+ "price": "11394.90",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1",
+ "price": "11396.23",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "4",
+ "price": "11396.92",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1.02153048",
+ "price": "11397.44",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2.8",
+ "price": "11397.92",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.35",
+ "price": "11398.91",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1",
+ "price": "11399.01",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "10",
+ "price": "11402.12",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "4.98",
+ "price": "11403.74",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.35",
+ "price": "11404.01",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "6.80387906",
+ "price": "11405.20",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "12.1",
+ "price": "11406.34",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.25",
+ "price": "11407.69",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.78",
+ "price": "11407.74",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1.80045786",
+ "price": "11409.46",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "5.2",
+ "price": "11410.07",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.35",
+ "price": "11410.29",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "8.1",
+ "price": "11411.66",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "10",
+ "price": "11413.95",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2.67",
+ "price": "11414.86",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "9.9",
+ "price": "11415.63",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "5",
+ "price": "11416.18",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "3.7",
+ "price": "11416.70",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2",
+ "price": "11420.44",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "3.41",
+ "price": "11423.05",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "5",
+ "price": "11426.51",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "9.45",
+ "price": "11430.68",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.402",
+ "price": "11433.22",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1.60397802",
+ "price": "11435.50",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "12.0726",
+ "price": "11438.59",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "5",
+ "price": "11439.20",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.06",
+ "price": "11440.00",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2.21365892",
+ "price": "11448.12",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.06",
+ "price": "11451.00",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "10.94",
+ "price": "11454.79",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.6",
+ "price": "11460.00",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.06",
+ "price": "11462.00",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2.79111801",
+ "price": "11463.20",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "10.9",
+ "price": "11464.12",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "25.65",
+ "price": "11467.89",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.06",
+ "price": "11473.00",
+ "timestamp": "1565588056"
+ }
+ ],
+ "bids": [
+ {
+ "amount": "2",
+ "price": "11382.49",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2.06957456",
+ "price": "11382.45",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2.06957719",
+ "price": "11381.72",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2",
+ "price": "11379.89",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2",
+ "price": "11379.75",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1",
+ "price": "11377.36",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "6.01991146",
+ "price": "11376.63",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.11803397",
+ "price": "11376.52",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "5",
+ "price": "11376.51",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1.313",
+ "price": "11375.75",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "5",
+ "price": "11375.00",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.35",
+ "price": "11374.80",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1",
+ "price": "11374.57",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2.97846952",
+ "price": "11373.81",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1",
+ "price": "11372.29",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.35",
+ "price": "11369.80",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1",
+ "price": "11369.68",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "10",
+ "price": "11368.56",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2.81",
+ "price": "11366.06",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.35",
+ "price": "11364.60",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "5",
+ "price": "11364.08",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1.09840451",
+ "price": "11362.99",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.537",
+ "price": "11362.52",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "4.3744",
+ "price": "11360.03",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "3.5098",
+ "price": "11359.70",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.35",
+ "price": "11359.60",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.79",
+ "price": "11359.20",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.732",
+ "price": "11359.12",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.26",
+ "price": "11358.91",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2",
+ "price": "11358.90",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.09",
+ "price": "11358.15",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "10",
+ "price": "11355.90",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "4.8",
+ "price": "11354.03",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "5",
+ "price": "11353.80",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "2.68",
+ "price": "11353.50",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "6.31636908",
+ "price": "11350.90",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.04396475",
+ "price": "11350.00",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1.35938518",
+ "price": "11348.55",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "4.78",
+ "price": "11347.44",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "8.1963",
+ "price": "11343.21",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "3.7947",
+ "price": "11340.58",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.44098282",
+ "price": "11338.31",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.00536173",
+ "price": "11333.03",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.5",
+ "price": "11330.20",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "10.27",
+ "price": "11329.63",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.727",
+ "price": "11329.41",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "1.69494039",
+ "price": "11329.27",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.00033196",
+ "price": "11326.42",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "25.66",
+ "price": "11323.30",
+ "timestamp": "1565588056"
+ },
+ {
+ "amount": "0.00033119",
+ "price": "11322.81",
+ "timestamp": "1565588056"
+ }
+ ]
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {}
+ }
+ ]
+ },
+ "/v1/deposit/btc/newAddress": {
+ "POST": [
+ {
+ "data": {
+ "message": "Cryptocurrency operations are not available in sandbox",
+ "reason": "EndpointUnavailableInThisEnvironment",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"label\":\"LOL123\",\"nonce\":\"1565675520004698760\",\"request\":\"/v1/deposit/btc/newAddress\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJsYWJlbCI6IkxPTDEyMyIsIm5vbmNlIjoiMTU2NTY3NTUyMDAwNDY5ODc2MCIsInJlcXVlc3QiOiIvdjEvZGVwb3NpdC9idGMvbmV3QWRkcmVzcyJ9"
+ ],
+ "X-Gemini-Signature": [
+ "0bed59b3d0ded52ead1f8f5d34918457c253ce293684f0c6c4b0de237ed45467e98b5c1d6173be06f3d75de929de0289"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/heartbeat": {
+ "POST": [
+ {
+ "data": {
+ "result": "ok"
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565678439020022654\",\"request\":\"/v1/heartbeat\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU2Nzg0MzkwMjAwMjI2NTQiLCJyZXF1ZXN0IjoiL3YxL2hlYXJ0YmVhdCJ9"
+ ],
+ "X-Gemini-Signature": [
+ "acf32982c5f48455a29e0e93c1a0e6298cb87f99a3c62f08e4036120ba483fc6ba4026eb1341c6d9ca925f8fcacff065"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/mytrades": {
+ "POST": [
+ {
+ "data": [
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72877194",
+ "price": "4365.44",
+ "tid": 72877196,
+ "timestamp": 1504774407,
+ "timestampms": 1504774407342,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72876948",
+ "price": "4365.44",
+ "tid": 72876950,
+ "timestamp": 1504774256,
+ "timestampms": 1504774256923,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72876939",
+ "price": "4365.44",
+ "tid": 72876941,
+ "timestamp": 1504774215,
+ "timestampms": 1504774215737,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72854559",
+ "price": "4365.44",
+ "tid": 72854561,
+ "timestamp": 1504742429,
+ "timestampms": 1504742429222,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72854554",
+ "price": "4365.44",
+ "tid": 72854556,
+ "timestamp": 1504742410,
+ "timestampms": 1504742410563,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72854469",
+ "price": "4365.44",
+ "tid": 72854471,
+ "timestamp": 1504742362,
+ "timestampms": 1504742362798,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72854064",
+ "price": "4365.44",
+ "tid": 72854066,
+ "timestamp": 1504742101,
+ "timestampms": 1504742101052,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72853499",
+ "price": "4365.44",
+ "tid": 72853501,
+ "timestamp": 1504741638,
+ "timestampms": 1504741638555,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72852534",
+ "price": "4365.44",
+ "tid": 72852536,
+ "timestamp": 1504740907,
+ "timestampms": 1504740907598,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72788487",
+ "price": "4365.44",
+ "tid": 72788489,
+ "timestamp": 1504692849,
+ "timestampms": 1504692849358,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72782959",
+ "price": "4365.44",
+ "tid": 72782961,
+ "timestamp": 1504688727,
+ "timestampms": 1504688727991,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72782794",
+ "price": "4365.44",
+ "tid": 72782796,
+ "timestamp": 1504688636,
+ "timestampms": 1504688636950,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72782789",
+ "price": "4365.44",
+ "tid": 72782791,
+ "timestamp": 1504688602,
+ "timestampms": 1504688602038,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72782704",
+ "price": "4365.44",
+ "tid": 72782706,
+ "timestamp": 1504688567,
+ "timestampms": 1504688567723,
+ "type": "Buy"
+ },
+ {
+ "aggressor": true,
+ "amount": "1",
+ "exchange": "gemini",
+ "fee_amount": "10.9136",
+ "fee_currency": "USD",
+ "is_auction_fill": false,
+ "order_id": "72782619",
+ "price": "4365.44",
+ "tid": 72782621,
+ "timestamp": 1504688467,
+ "timestampms": 1504688467928,
+ "type": "Buy"
+ }
+ ],
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565675130339156532\",\"request\":\"/v1/mytrades\",\"symbol\":\"btcusd\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU2NzUxMzAzMzkxNTY1MzIiLCJyZXF1ZXN0IjoiL3YxL215dHJhZGVzIiwic3ltYm9sIjoiYnRjdXNkIn0="
+ ],
+ "X-Gemini-Signature": [
+ "ad2fa169f26d48df2515e90c02b77c7efd7e3e8a061b5c0ecfdbc732b1bf94416c9c7c50fff9ab86b2f6b324ccf47b07"
+ ]
+ }
+ },
+ {
+ "data": {
+ "message": "Received invalid timestamp '-62135596800'. Timestamp field in payload must be either a string or an int representing seconds or milliseconds that can be parsed to a valid date and time.",
+ "reason": "InvalidTimestampInPayload",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565754197574051025\",\"request\":\"/v1/mytrades\",\"symbol\":\"LTCBTC\",\"timestamp\":-62135596800}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU3NTQxOTc1NzQwNTEwMjUiLCJyZXF1ZXN0IjoiL3YxL215dHJhZGVzIiwic3ltYm9sIjoiTFRDQlRDIiwidGltZXN0YW1wIjotNjIxMzU1OTY4MDB9"
+ ],
+ "X-Gemini-Signature": [
+ "fece9c3bbf0ab545666beac19b61aa247746caa65dd1ee9fb2fa86aa2aa28e1fc2be58ebaa08530dc10063e62a48bf91"
+ ]
+ }
+ },
+ {
+ "data": null,
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565754332374545960\",\"request\":\"/v1/mytrades\",\"symbol\":\"LTCBTC\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU3NTQzMzIzNzQ1NDU5NjAiLCJyZXF1ZXN0IjoiL3YxL215dHJhZGVzIiwic3ltYm9sIjoiTFRDQlRDIn0="
+ ],
+ "X-Gemini-Signature": [
+ "ce08e4878c682731d0d158ef91c250d318c290b44d920550b192bcd09100eee0314abf731e09f90036f41f4caf9a894e"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/notionalvolume": {
+ "POST": [
+ {
+ "data": {
+ "api_auction_fee_bps": 20,
+ "api_maker_fee_bps": 10,
+ "api_taker_fee_bps": 35,
+ "block_maker_fee_bps": 0,
+ "block_taker_fee_bps": 0,
+ "date": "2019-08-13",
+ "fix_auction_fee_bps": 20,
+ "fix_maker_fee_bps": 10,
+ "fix_taker_fee_bps": 35,
+ "last_updated_ms": 1565654400000,
+ "notional_1d_volume": [],
+ "notional_30d_volume": 0,
+ "web_auction_fee_bps": 100,
+ "web_maker_fee_bps": 100,
+ "web_taker_fee_bps": 100
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565671281858874030\",\"request\":\"/v1/notionalvolume\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU2NzEyODE4NTg4NzQwMzAiLCJyZXF1ZXN0IjoiL3YxL25vdGlvbmFsdm9sdW1lIn0="
+ ],
+ "X-Gemini-Signature": [
+ "3a28c6e51697af5df88141b45e57a1b42add6ee72c5c03ca714166ddcc5ac24ed9ea06453ec3684407959420ddc07c9d"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/order/cancel": {
+ "POST": [
+ {
+ "data": {
+ "avg_execution_price": "0.00",
+ "exchange": "gemini",
+ "executed_amount": "0",
+ "id": "265555413",
+ "is_cancelled": true,
+ "is_hidden": false,
+ "is_live": false,
+ "options": [],
+ "order_id": "265555413",
+ "original_amount": "1",
+ "price": "4500.00",
+ "reason": "Requested",
+ "remaining_amount": "1",
+ "side": "buy",
+ "symbol": "btcusd",
+ "timestamp": "1565673596",
+ "timestampms": 1565673596842,
+ "type": "exchange limit",
+ "was_forced": false
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565673746786096494\",\"order_id\":265555413,\"request\":\"/v1/order/cancel\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU2NzM3NDY3ODYwOTY0OTQiLCJvcmRlcl9pZCI6MjY1NTU1NDEzLCJyZXF1ZXN0IjoiL3YxL29yZGVyL2NhbmNlbCJ9"
+ ],
+ "X-Gemini-Signature": [
+ "165f303fd96b7d32c8ad0cda1dffbd644928329fb503604785da92ac972ab5bc5a9152bac46096606e642913207d9421"
+ ]
+ }
+ },
+ {
+ "data": {
+ "avg_execution_price": "0.00847",
+ "exchange": "gemini",
+ "executed_amount": "1",
+ "id": "266029865",
+ "is_cancelled": false,
+ "is_hidden": false,
+ "is_live": false,
+ "options": [],
+ "order_id": "266029865",
+ "original_amount": "1",
+ "price": "10",
+ "remaining_amount": "0",
+ "side": "buy",
+ "symbol": "ltcbtc",
+ "timestamp": "1565754961",
+ "timestampms": 1565754961967,
+ "type": "exchange limit",
+ "was_forced": false
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565755351866830715\",\"order_id\":266029865,\"request\":\"/v1/order/cancel\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU3NTUzNTE4NjY4MzA3MTUiLCJvcmRlcl9pZCI6MjY2MDI5ODY1LCJyZXF1ZXN0IjoiL3YxL29yZGVyL2NhbmNlbCJ9"
+ ],
+ "X-Gemini-Signature": [
+ "8bdd2fad91c8606618392624e7461dbf143df27c18c46364e27857c97e99e319eff3c16138cd3c2753c9ff34dd73ddcc"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/order/cancel/all": {
+ "POST": [
+ {
+ "data": {
+ "details": {
+ "cancelRejects": [],
+ "cancelledOrders": []
+ },
+ "result": "ok"
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565674594946783260\",\"request\":\"/v1/order/cancel/all\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU2NzQ1OTQ5NDY3ODMyNjAiLCJyZXF1ZXN0IjoiL3YxL29yZGVyL2NhbmNlbC9hbGwifQ=="
+ ],
+ "X-Gemini-Signature": [
+ "a555d19a45170c0304c4fc39d1b0059a7969dd03038c9ad6c5a03579750271dec92c3a131a2f138d58bd150f9b3a8b26"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/order/new": {
+ "POST": [
+ {
+ "data": {
+ "avg_execution_price": "0.00",
+ "exchange": "gemini",
+ "executed_amount": "0",
+ "id": "265555413",
+ "is_cancelled": false,
+ "is_hidden": false,
+ "is_live": true,
+ "options": [],
+ "order_id": "265555413",
+ "original_amount": "1",
+ "price": "4500.00",
+ "remaining_amount": "1",
+ "side": "buy",
+ "symbol": "btcusd",
+ "timestamp": "1565673596",
+ "timestampms": 1565673596842,
+ "type": "exchange limit",
+ "was_forced": false
+ },
+ "queryString": "",
+ "bodyParams": "{\"amount\":\"1\",\"nonce\":\"1565673595820662072\",\"price\":\"4500\",\"request\":\"/v1/order/new\",\"side\":\"buy\",\"symbol\":\"btcusd\",\"type\":\"exchange limit\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhbW91bnQiOiIxIiwibm9uY2UiOiIxNTY1NjczNTk1ODIwNjYyMDcyIiwicHJpY2UiOiI0NTAwIiwicmVxdWVzdCI6Ii92MS9vcmRlci9uZXciLCJzaWRlIjoiYnV5Iiwic3ltYm9sIjoiYnRjdXNkIiwidHlwZSI6ImV4Y2hhbmdlIGxpbWl0In0="
+ ],
+ "X-Gemini-Signature": [
+ "2d7336135e57c1245d6d66385fab5e2b8cd03ba82b675c0fbb61c030e1c17647cbf880e1bca6b918992310a20d994c92"
+ ]
+ }
+ },
+ {
+ "data": {
+ "message": "Received bad symbol 'LTC_BTC' but expected a supported symbol from ['BTCUSD', 'ETHBTC', 'ETHUSD', 'BCHUSD', 'BCHBTC', 'BCHETH', 'LTCUSD', 'LTCBTC', 'LTCETH', 'LTCBCH', 'ZECUSD', 'ZECBTC', 'ZECETH', 'ZECBCH', 'ZECLTC']",
+ "reason": "InvalidSymbol",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"amount\":\"1\",\"nonce\":\"1565754502321084878\",\"price\":\"10\",\"request\":\"/v1/order/new\",\"side\":\"BUY\",\"symbol\":\"LTC_BTC\",\"type\":\"MARKET\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhbW91bnQiOiIxIiwibm9uY2UiOiIxNTY1NzU0NTAyMzIxMDg0ODc4IiwicHJpY2UiOiIxMCIsInJlcXVlc3QiOiIvdjEvb3JkZXIvbmV3Iiwic2lkZSI6IkJVWSIsInN5bWJvbCI6IkxUQ19CVEMiLCJ0eXBlIjoiTUFSS0VUIn0="
+ ],
+ "X-Gemini-Signature": [
+ "bfd7efe0b682881339db42b87fd72c91a977a9e6e15b3d71dd5570f812d22c6669b6b9df9eeafdcd3a41a66145d94b03"
+ ]
+ }
+ },
+ {
+ "data": {
+ "message": "Invalid order type for symbol LTCBTC: 'MARKET'",
+ "reason": "InvalidOrderType",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"amount\":\"1\",\"nonce\":\"1565754590390234675\",\"price\":\"10\",\"request\":\"/v1/order/new\",\"side\":\"BUY\",\"symbol\":\"LTCBTC\",\"type\":\"MARKET\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhbW91bnQiOiIxIiwibm9uY2UiOiIxNTY1NzU0NTkwMzkwMjM0Njc1IiwicHJpY2UiOiIxMCIsInJlcXVlc3QiOiIvdjEvb3JkZXIvbmV3Iiwic2lkZSI6IkJVWSIsInN5bWJvbCI6IkxUQ0JUQyIsInR5cGUiOiJNQVJLRVQifQ=="
+ ],
+ "X-Gemini-Signature": [
+ "0f09187d9a0da71ae0c97fc582d55b7c40726f5287d0cfe276a06adbc7700cfd9e322ca03bc134d8ec9e7e1987bd8e14"
+ ]
+ }
+ },
+ {
+ "data": {
+ "message": "Invalid order type for symbol LTCBTC: 'LIMIT'",
+ "reason": "InvalidOrderType",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"amount\":\"1\",\"nonce\":\"1565754739098421455\",\"price\":\"10\",\"request\":\"/v1/order/new\",\"side\":\"BUY\",\"symbol\":\"LTCBTC\",\"type\":\"LIMIT\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhbW91bnQiOiIxIiwibm9uY2UiOiIxNTY1NzU0NzM5MDk4NDIxNDU1IiwicHJpY2UiOiIxMCIsInJlcXVlc3QiOiIvdjEvb3JkZXIvbmV3Iiwic2lkZSI6IkJVWSIsInN5bWJvbCI6IkxUQ0JUQyIsInR5cGUiOiJMSU1JVCJ9"
+ ],
+ "X-Gemini-Signature": [
+ "32bc55cb25e1f5c432e6bd350bf09ba0e40f3e11031d4a9142d82949e3f83a13887fe56611f705924abcce3ed1f738cf"
+ ]
+ }
+ },
+ {
+ "data": {
+ "avg_execution_price": "0.00847",
+ "exchange": "gemini",
+ "executed_amount": "1",
+ "id": "266029865",
+ "is_cancelled": false,
+ "is_hidden": false,
+ "is_live": false,
+ "options": [],
+ "order_id": "266029865",
+ "original_amount": "1",
+ "price": "10",
+ "remaining_amount": "0",
+ "side": "buy",
+ "symbol": "ltcbtc",
+ "timestamp": "1565754961",
+ "timestampms": 1565754961967,
+ "type": "exchange limit",
+ "was_forced": false
+ },
+ "queryString": "",
+ "bodyParams": "{\"amount\":\"1\",\"nonce\":\"1565754960920111289\",\"price\":\"10\",\"request\":\"/v1/order/new\",\"side\":\"BUY\",\"symbol\":\"LTCBTC\",\"type\":\"exchange limit\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhbW91bnQiOiIxIiwibm9uY2UiOiIxNTY1NzU0OTYwOTIwMTExMjg5IiwicHJpY2UiOiIxMCIsInJlcXVlc3QiOiIvdjEvb3JkZXIvbmV3Iiwic2lkZSI6IkJVWSIsInN5bWJvbCI6IkxUQ0JUQyIsInR5cGUiOiJleGNoYW5nZSBsaW1pdCJ9"
+ ],
+ "X-Gemini-Signature": [
+ "81412117758f361e7c6929335a28431775586bee9378b490df68a16034aba8877fee9f2c373db7739e3c50d490910e94"
+ ]
+ }
+ },
+ {
+ "data": {
+ "message": "InvalidSignature",
+ "reason": "InvalidSignature",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"amount\":\"1\",\"nonce\":\"1565757283294274961\",\"price\":\"9000\",\"request\":\"/v1/order/new\",\"side\":\"buy\",\"symbol\":\"btcusd\",\"type\":\"exchange limit\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhbW91bnQiOiIxIiwibm9uY2UiOiIxNTY1NzU3MjgzMjk0Mjc0OTYxIiwicHJpY2UiOiI5MDAwIiwicmVxdWVzdCI6Ii92MS9vcmRlci9uZXciLCJzaWRlIjoiYnV5Iiwic3ltYm9sIjoiYnRjdXNkIiwidHlwZSI6ImV4Y2hhbmdlIGxpbWl0In0="
+ ],
+ "X-Gemini-Signature": [
+ "7f709eb431a5ef61e86cc62713d6787143cec35743dce2dbd75c77f5c9079b4c306371d7923520f292362296aa5d3a60"
+ ]
+ }
+ },
+ {
+ "data": {
+ "message": "InvalidSignature",
+ "reason": "InvalidSignature",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"amount\":\"1\",\"nonce\":\"1565757330556534438\",\"price\":\"9000\",\"request\":\"/v1/order/new\",\"side\":\"buy\",\"symbol\":\"btcusd\",\"type\":\"exchange limit\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhbW91bnQiOiIxIiwibm9uY2UiOiIxNTY1NzU3MzMwNTU2NTM0NDM4IiwicHJpY2UiOiI5MDAwIiwicmVxdWVzdCI6Ii92MS9vcmRlci9uZXciLCJzaWRlIjoiYnV5Iiwic3ltYm9sIjoiYnRjdXNkIiwidHlwZSI6ImV4Y2hhbmdlIGxpbWl0In0="
+ ],
+ "X-Gemini-Signature": [
+ "cea8a1e0e7f5138c460b46885258df29fd9686d08f679a4a054e5be368a718f7873662708a3d46c9a406f8ee63914c83"
+ ]
+ }
+ },
+ {
+ "data": {
+ "avg_execution_price": "0.00",
+ "exchange": "gemini",
+ "executed_amount": "0",
+ "id": "266043798",
+ "is_cancelled": false,
+ "is_hidden": false,
+ "is_live": true,
+ "options": [],
+ "order_id": "266043798",
+ "original_amount": "1",
+ "price": "9000.00",
+ "remaining_amount": "1",
+ "side": "buy",
+ "symbol": "btcusd",
+ "timestamp": "1565757360",
+ "timestampms": 1565757360991,
+ "type": "exchange limit",
+ "was_forced": false
+ },
+ "queryString": "",
+ "bodyParams": "{\"amount\":\"1\",\"nonce\":\"1565757359970836683\",\"price\":\"9000\",\"request\":\"/v1/order/new\",\"side\":\"buy\",\"symbol\":\"btcusd\",\"type\":\"exchange limit\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhbW91bnQiOiIxIiwibm9uY2UiOiIxNTY1NzU3MzU5OTcwODM2NjgzIiwicHJpY2UiOiI5MDAwIiwicmVxdWVzdCI6Ii92MS9vcmRlci9uZXciLCJzaWRlIjoiYnV5Iiwic3ltYm9sIjoiYnRjdXNkIiwidHlwZSI6ImV4Y2hhbmdlIGxpbWl0In0="
+ ],
+ "X-Gemini-Signature": [
+ "8531b95a96ea6381d0e1d027687fd1a1ed2bc80e2ad3f138707d70367fac02b0b71a853be3af28ed9bcbab85791585bb"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/order/status": {
+ "POST": [
+ {
+ "data": {
+ "avg_execution_price": "0.00",
+ "exchange": "gemini",
+ "executed_amount": "0",
+ "id": "265563260",
+ "is_cancelled": true,
+ "is_hidden": false,
+ "is_live": false,
+ "options": [],
+ "order_id": "265563260",
+ "original_amount": "1",
+ "price": "9000.00",
+ "reason": "Requested",
+ "remaining_amount": "1",
+ "side": "buy",
+ "symbol": "btcusd",
+ "timestamp": "1565674818",
+ "timestampms": 1565674818313,
+ "type": "exchange limit",
+ "was_forced": false
+ },
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565674861178731900\",\"order_id\":265563260,\"request\":\"/v1/order/status\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU2NzQ4NjExNzg3MzE5MDAiLCJvcmRlcl9pZCI6MjY1NTYzMjYwLCJyZXF1ZXN0IjoiL3YxL29yZGVyL3N0YXR1cyJ9"
+ ],
+ "X-Gemini-Signature": [
+ "ddc154a1ca1398d9de075ddd81d99001e3d56b4fa7934dd269681c2dee3b2d3451b968067d97ab9bc9afde96573d42a9"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/orders": {
+ "POST": [
+ {
+ "data": null,
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565675056878829054\",\"request\":\"/v1/orders\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU2NzUwNTY4Nzg4MjkwNTQiLCJyZXF1ZXN0IjoiL3YxL29yZGVycyJ9"
+ ],
+ "X-Gemini-Signature": [
+ "8c193c505c6cdc3fb34fd968ba0f62a10b583d048f101cf242568fe04f1ab8066d29e2760d9d73b1a1755ade4b68b13e"
+ ]
+ }
+ },
+ {
+ "data": null,
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565749950340319722\",\"request\":\"/v1/orders\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU3NDk5NTAzNDAzMTk3MjIiLCJyZXF1ZXN0IjoiL3YxL29yZGVycyJ9"
+ ],
+ "X-Gemini-Signature": [
+ "b95f7062b488830d9a8e4c28b8451ddfbfa310808c95442112a10865993ffd91170ea82b26b45ee9ef28e7acfb3b57c0"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/pubticker/BTCUSD": {
+ "GET": [
+ {
+ "data": {
+ "ask": "11388.08",
+ "bid": "11381.50",
+ "last": "11381.47",
+ "volume": {
+ "BTC": "915.6534281291",
+ "USD": "10394749.066094351423000000000000000095",
+ "timestamp": 1565587800000
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {}
+ }
+ ]
+ },
+ "/v1/pubticker/bla": {
+ "GET": [
+ {
+ "data": {
+ "message": "Supplied value 'bla' is not a valid symbol. Please correct your API request to use one of the supported symbols: [zecbch, bchbtc, zecusd, ethusd, zecbtc, bcheth, zecltc, ltcbch, bchusd, ethbtc, ltcbtc, ltceth, zeceth, ltcusd, btcusd]",
+ "reason": "Bad Request",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {}
+ }
+ ]
+ },
+ "/v1/symbols": {
+ "GET": [
+ {
+ "data": [
+ "btcusd",
+ "ethbtc",
+ "ethusd",
+ "bchusd",
+ "bchbtc",
+ "bcheth",
+ "ltcusd",
+ "ltcbtc",
+ "ltceth",
+ "ltcbch",
+ "zecusd",
+ "zecbtc",
+ "zeceth",
+ "zecbch",
+ "zecltc"
+ ],
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {}
+ }
+ ]
+ },
+ "/v1/trades/btcusd": {
+ "GET": [
+ {
+ "data": [
+ {
+ "amount": "0.03",
+ "exchange": "gemini",
+ "price": "11410.49",
+ "tid": 7756154092,
+ "timestamp": 1565662735,
+ "timestampms": 1565662735226,
+ "type": "sell"
+ },
+ {
+ "amount": "0.0071767",
+ "exchange": "gemini",
+ "price": "11414.59",
+ "tid": 7756153529,
+ "timestamp": 1565662726,
+ "timestampms": 1565662726360,
+ "type": "buy"
+ },
+ {
+ "amount": "0.01717355",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756151885,
+ "timestamp": 1565662714,
+ "timestampms": 1565662714333,
+ "type": "buy"
+ },
+ {
+ "amount": "0.0045808",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756149211,
+ "timestamp": 1565662687,
+ "timestampms": 1565662687630,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00846135",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756149149,
+ "timestamp": 1565662686,
+ "timestampms": 1565662686732,
+ "type": "buy"
+ },
+ {
+ "amount": "0.04296096",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756147940,
+ "timestamp": 1565662676,
+ "timestampms": 1565662676986,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00832",
+ "exchange": "gemini",
+ "price": "11408.00",
+ "tid": 7756146325,
+ "timestamp": 1565662656,
+ "timestampms": 1565662656071,
+ "type": "sell"
+ },
+ {
+ "amount": "0.00213244",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756144273,
+ "timestamp": 1565662637,
+ "timestampms": 1565662637642,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00701265",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756141855,
+ "timestamp": 1565662599,
+ "timestampms": 1565662599028,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00032601",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756140963,
+ "timestamp": 1565662591,
+ "timestampms": 1565662591120,
+ "type": "buy"
+ },
+ {
+ "amount": "0.01019987",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756140337,
+ "timestamp": 1565662583,
+ "timestampms": 1565662583942,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00552876",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756139733,
+ "timestamp": 1565662570,
+ "timestampms": 1565662570945,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00043825",
+ "exchange": "gemini",
+ "price": "11408.01",
+ "tid": 7756134697,
+ "timestamp": 1565662520,
+ "timestampms": 1565662520860,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00583",
+ "exchange": "gemini",
+ "price": "11407.94",
+ "tid": 7756118198,
+ "timestamp": 1565662327,
+ "timestampms": 1565662327677,
+ "type": "sell"
+ },
+ {
+ "amount": "0.01263828",
+ "exchange": "gemini",
+ "price": "11410.72",
+ "tid": 7756117317,
+ "timestamp": 1565662317,
+ "timestampms": 1565662317982,
+ "type": "buy"
+ },
+ {
+ "amount": "0.04291914",
+ "exchange": "gemini",
+ "price": "11410.72",
+ "tid": 7756113787,
+ "timestamp": 1565662281,
+ "timestampms": 1565662281322,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00315954",
+ "exchange": "gemini",
+ "price": "11410.72",
+ "tid": 7756111860,
+ "timestamp": 1565662258,
+ "timestampms": 1565662258557,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00845327",
+ "exchange": "gemini",
+ "price": "11410.72",
+ "tid": 7756111825,
+ "timestamp": 1565662258,
+ "timestampms": 1565662258071,
+ "type": "buy"
+ },
+ {
+ "amount": "0.03667255",
+ "exchange": "gemini",
+ "price": "11414.35",
+ "tid": 7756105458,
+ "timestamp": 1565662212,
+ "timestampms": 1565662212913,
+ "type": "buy"
+ },
+ {
+ "amount": "0.41013308",
+ "exchange": "gemini",
+ "price": "11414.38",
+ "tid": 7756100793,
+ "timestamp": 1565662172,
+ "timestampms": 1565662172924,
+ "type": "buy"
+ },
+ {
+ "amount": "0.15663523",
+ "exchange": "gemini",
+ "price": "11409.25",
+ "tid": 7756100791,
+ "timestamp": 1565662172,
+ "timestampms": 1565662172924,
+ "type": "buy"
+ },
+ {
+ "amount": "0.0343667",
+ "exchange": "gemini",
+ "price": "11408.70",
+ "tid": 7756096273,
+ "timestamp": 1565662114,
+ "timestampms": 1565662114857,
+ "type": "buy"
+ },
+ {
+ "amount": "0.21478195",
+ "exchange": "gemini",
+ "price": "11408.70",
+ "tid": 7756095445,
+ "timestamp": 1565662108,
+ "timestampms": 1565662108455,
+ "type": "buy"
+ },
+ {
+ "amount": "0.12445907",
+ "exchange": "gemini",
+ "price": "11404.40",
+ "tid": 7756087118,
+ "timestamp": 1565662042,
+ "timestampms": 1565662042548,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00438358",
+ "exchange": "gemini",
+ "price": "11404.40",
+ "tid": 7756085279,
+ "timestamp": 1565662024,
+ "timestampms": 1565662024021,
+ "type": "buy"
+ },
+ {
+ "amount": "0.01366728",
+ "exchange": "gemini",
+ "price": "11406.18",
+ "tid": 7756071480,
+ "timestamp": 1565661926,
+ "timestampms": 1565661926111,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00157993",
+ "exchange": "gemini",
+ "price": "11406.18",
+ "tid": 7756070690,
+ "timestamp": 1565661906,
+ "timestampms": 1565661906420,
+ "type": "buy"
+ },
+ {
+ "amount": "0.16916508",
+ "exchange": "gemini",
+ "price": "11405.87",
+ "tid": 7756066120,
+ "timestamp": 1565661839,
+ "timestampms": 1565661839371,
+ "type": "buy"
+ },
+ {
+ "amount": "0.04297209",
+ "exchange": "gemini",
+ "price": "11405.06",
+ "tid": 7756064552,
+ "timestamp": 1565661817,
+ "timestampms": 1565661817849,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00197396",
+ "exchange": "gemini",
+ "price": "11405.80",
+ "tid": 7756059702,
+ "timestamp": 1565661787,
+ "timestampms": 1565661787203,
+ "type": "buy"
+ },
+ {
+ "amount": "0.01718667",
+ "exchange": "gemini",
+ "price": "11405.80",
+ "tid": 7756058987,
+ "timestamp": 1565661784,
+ "timestampms": 1565661784015,
+ "type": "buy"
+ },
+ {
+ "amount": "0.01464033",
+ "exchange": "gemini",
+ "price": "11416.39",
+ "tid": 7756045315,
+ "timestamp": 1565661724,
+ "timestampms": 1565661724752,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00236957",
+ "exchange": "gemini",
+ "price": "11415.53",
+ "tid": 7756041566,
+ "timestamp": 1565661698,
+ "timestampms": 1565661698300,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00991881",
+ "exchange": "gemini",
+ "price": "11409.33",
+ "tid": 7756030166,
+ "timestamp": 1565661644,
+ "timestampms": 1565661644988,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00316114",
+ "exchange": "gemini",
+ "price": "11409.33",
+ "tid": 7756026522,
+ "timestamp": 1565661634,
+ "timestampms": 1565661634763,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00316114",
+ "exchange": "gemini",
+ "price": "11409.31",
+ "tid": 7756021972,
+ "timestamp": 1565661616,
+ "timestampms": 1565661616557,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00008688",
+ "exchange": "gemini",
+ "price": "11396.47",
+ "tid": 7756018962,
+ "timestamp": 1565661603,
+ "timestampms": 1565661603828,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00846306",
+ "exchange": "gemini",
+ "price": "11399.41",
+ "tid": 7756015474,
+ "timestamp": 1565661561,
+ "timestampms": 1565661561099,
+ "type": "buy"
+ },
+ {
+ "amount": "0.03669667",
+ "exchange": "gemini",
+ "price": "11403.82",
+ "tid": 7756002472,
+ "timestamp": 1565661433,
+ "timestampms": 1565661433637,
+ "type": "buy"
+ },
+ {
+ "amount": "0.01579948",
+ "exchange": "gemini",
+ "price": "11403.83",
+ "tid": 7755997677,
+ "timestamp": 1565661391,
+ "timestampms": 1565661391558,
+ "type": "buy"
+ },
+ {
+ "amount": "0.0017609",
+ "exchange": "gemini",
+ "price": "11400.85",
+ "tid": 7755995726,
+ "timestamp": 1565661376,
+ "timestampms": 1565661376001,
+ "type": "sell"
+ },
+ {
+ "amount": "0.1",
+ "exchange": "gemini",
+ "price": "11397.94",
+ "tid": 7755979361,
+ "timestamp": 1565661289,
+ "timestampms": 1565661289055,
+ "type": "buy"
+ },
+ {
+ "amount": "0.0084669",
+ "exchange": "gemini",
+ "price": "11397.93",
+ "tid": 7755976484,
+ "timestamp": 1565661263,
+ "timestampms": 1565661263285,
+ "type": "buy"
+ },
+ {
+ "amount": "0.1088999",
+ "exchange": "gemini",
+ "price": "11393.57",
+ "tid": 7755972520,
+ "timestamp": 1565661244,
+ "timestampms": 1565661244552,
+ "type": "sell"
+ },
+ {
+ "amount": "0.01003316",
+ "exchange": "gemini",
+ "price": "11399.03",
+ "tid": 7755954448,
+ "timestamp": 1565661127,
+ "timestampms": 1565661127872,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00561447",
+ "exchange": "gemini",
+ "price": "11396.26",
+ "tid": 7755952680,
+ "timestamp": 1565661118,
+ "timestampms": 1565661118348,
+ "type": "sell"
+ },
+ {
+ "amount": "0.000032",
+ "exchange": "gemini",
+ "price": "11411.34",
+ "tid": 7755939408,
+ "timestamp": 1565661046,
+ "timestampms": 1565661046130,
+ "type": "buy"
+ },
+ {
+ "amount": "0.00052406",
+ "exchange": "gemini",
+ "price": "11410.99",
+ "tid": 7755939171,
+ "timestamp": 1565661044,
+ "timestampms": 1565661044529,
+ "type": "buy"
+ },
+ {
+ "amount": "0.028",
+ "exchange": "gemini",
+ "price": "11391.45",
+ "tid": 7755932784,
+ "timestamp": 1565661019,
+ "timestampms": 1565661019773,
+ "type": "sell"
+ },
+ {
+ "amount": "0.03435606",
+ "exchange": "gemini",
+ "price": "11391.35",
+ "tid": 7755926007,
+ "timestamp": 1565660948,
+ "timestampms": 1565660948681,
+ "type": "sell"
+ }
+ ],
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {}
+ }
+ ]
+ },
+ "/v1/tradevolume": {
+ "POST": [
+ {
+ "data": [
+ null
+ ],
+ "queryString": "",
+ "bodyParams": "{\"nonce\":\"1565675273154242836\",\"request\":\"/v1/tradevolume\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJub25jZSI6IjE1NjU2NzUyNzMxNTQyNDI4MzYiLCJyZXF1ZXN0IjoiL3YxL3RyYWRldm9sdW1lIn0="
+ ],
+ "X-Gemini-Signature": [
+ "dcd95c9f6713ea6cb1337d2c5cc6ab1299474d844fdd2ad9b10c0c593ed5d830495356894a7323c5fac2bed27a46fb95"
+ ]
+ }
+ }
+ ]
+ },
+ "/v1/withdraw/btc": {
+ "POST": [
+ {
+ "data": {
+ "message": "Cryptocurrency operations are not available in sandbox",
+ "reason": "EndpointUnavailableInThisEnvironment",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"address\":\"LOL123\",\"amount\":\"1\",\"nonce\":\"1565675733865010769\",\"request\":\"/v1/withdraw/btc\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhZGRyZXNzIjoiTE9MMTIzIiwiYW1vdW50IjoiMSIsIm5vbmNlIjoiMTU2NTY3NTczMzg2NTAxMDc2OSIsInJlcXVlc3QiOiIvdjEvd2l0aGRyYXcvYnRjIn0="
+ ],
+ "X-Gemini-Signature": [
+ "f40cc365ed5d04b79bcdd97c31bac22378ab86ce2308417c20329bc0f5dde1ce4da4ff2c99cdb13504a08d7b45312e87"
+ ]
+ }
+ },
+ {
+ "data": {
+ "message": "Cryptocurrency operations are not available in sandbox",
+ "reason": "EndpointUnavailableInThisEnvironment",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"address\":\"LOL123\",\"amount\":\"1\",\"nonce\":\"1565678114011106013\",\"request\":\"/v1/withdraw/btc\"}",
+ "headers": {
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhZGRyZXNzIjoiTE9MMTIzIiwiYW1vdW50IjoiMSIsIm5vbmNlIjoiMTU2NTY3ODExNDAxMTEwNjAxMyIsInJlcXVlc3QiOiIvdjEvd2l0aGRyYXcvYnRjIn0="
+ ],
+ "X-Gemini-Signature": [
+ "ef3e63bc5f7e124df66cea42463560e7178d5224ba456e92db92184220e2235c0f17d317cc9d332add5e7e34b7fe159a"
+ ]
+ }
+ },
+ {
+ "data": {
+ "message": "Cryptocurrency operations are not available in sandbox",
+ "reason": "EndpointUnavailableInThisEnvironment",
+ "result": "error"
+ },
+ "queryString": "",
+ "bodyParams": "{\"address\":\"1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB\",\"amount\":\"100\",\"nonce\":\"1565755733919473409\",\"request\":\"/v1/withdraw/btc\"}",
+ "headers": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Content-Type": [
+ "text/plain"
+ ],
+ "X-Gemini-Apikey": [
+ ""
+ ],
+ "X-Gemini-Payload": [
+ "eyJhZGRyZXNzIjoiMUY1elZEZ05qb3JKNTFvR2ViU3ZOQ3JTQUhwd0drVWREQiIsImFtb3VudCI6IjEwMCIsIm5vbmNlIjoiMTU2NTc1NTczMzkxOTQ3MzQwOSIsInJlcXVlc3QiOiIvdjEvd2l0aGRyYXcvYnRjIn0="
+ ],
+ "X-Gemini-Signature": [
+ "1e421f7d1726bfec26770e53b8f860f7406c33a329517ef199b1bdb2adf070e5866996bedcce1f69ffc6df19013ddc4e"
+ ]
+ }
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/testdata/http_mock/localbitcoins/localbitcoins.json b/testdata/http_mock/localbitcoins/localbitcoins.json
new file mode 100644
index 00000000000..f88cf267be4
--- /dev/null
+++ b/testdata/http_mock/localbitcoins/localbitcoins.json
@@ -0,0 +1,3400 @@
+{
+ "routes": {
+ "/api/ad-create/": {
+ "POST": [
+ {
+ "data": {
+ "error": {
+ "message": "Invalid parameters.",
+ "errors": {
+ "bank_name": "* This field is required.",
+ "trade_type": "* This field is required.",
+ "countrycode": "* This field is required.",
+ "lon": "* This field is required.",
+ "currency": "* This field is required.",
+ "online_provider": "* This field is required.",
+ "lat": "* This field is required.",
+ "price_equation": "* This field is required."
+ },
+ "error_code": 9,
+ "error_lists": {
+ "bank_name": [
+ "This field is required."
+ ],
+ "trade_type": [
+ "This field is required."
+ ],
+ "countrycode": [
+ "This field is required."
+ ],
+ "lon": [
+ "This field is required."
+ ],
+ "currency": [
+ "This field is required."
+ ],
+ "online_provider": [
+ "This field is required."
+ ],
+ "lat": [
+ "This field is required."
+ ],
+ "price_equation": [
+ "This field is required."
+ ]
+ }
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1560494018449563145"
+ ],
+ "Apiauth-Signature": [
+ "C369F0749F574A16403D561CD35987F18E956640E320EEEE9B864930050C0242"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/ad-delete/1/": {
+ "POST": [
+ {
+ "data": {
+ "error": {
+ "message": "No resource matching criteria was found.",
+ "error_code": 6
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1560493270888731262"
+ ],
+ "Apiauth-Signature": [
+ "597AF7294B303FA10CA398123133158C0998F37AB93E2DA5D6233F3D4E0E1E2A"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/ad-get/": {
+ "GET": [
+ {
+ "data": {
+ "error": {
+ "error_code": 11,
+ "message": "One or more of the ad IDs was not a valid integer"
+ }
+ },
+ "queryString": "ads=",
+ "bodyParams": "ads=",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1561959253543681207"
+ ],
+ "Apiauth-Signature": [
+ "A81AEA23AB65937ED0F957BAD72AC892E273383C83B6F55A574C3090091D89A0"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/ad/1337/": {
+ "POST": [
+ {
+ "data": {
+ "error": {
+ "message": "No resource matching criteria was found.",
+ "error_code": 6
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1560495093788997079"
+ ],
+ "Apiauth-Signature": [
+ "AE887E05554C9E9DFBD553A3698156D9479576F185BC0C833E6ED38243060848"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/ads/": {
+ "GET": [
+ {
+ "data": {
+ "data": {
+ "ad_list": [],
+ "ad_count": 0
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1560492666483445443"
+ ],
+ "Apiauth-Signature": [
+ "6F5246109A416AD75CC8F1C708BD7CA7426400CBE40464AE119EBE313B4F69BC"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/dashboard/": {
+ "GET": [
+ {
+ "data": {
+ "data": {
+ "contact_count": 0,
+ "contact_list": []
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1561960286136838890"
+ ],
+ "Apiauth-Signature": [
+ "88B82299DB73CA1CE039C13785605AFAFDEBC03B2A1FF5DC93773F30096150D6"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/dashboard/canceled/": {
+ "GET": [
+ {
+ "data": {
+ "data": {
+ "contact_count": 2,
+ "contact_list": [
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/32805",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/32805/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16885873/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16885873/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16885873/"
+ },
+ "data": {
+ "account_info": "{}",
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 99,
+ "last_online": "2019-04-12T07:33:34+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 32805,
+ "payment_method": "CASH_DEPOSIT",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "2000.00",
+ "amount_btc": "0.08903554",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 99,
+ "last_online": "2019-04-12T07:33:34+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": "2017-12-08T04:49:40+00:00",
+ "closed_at": "2017-12-08T04:49:40+00:00",
+ "contact_id": 16885873,
+ "created_at": "2017-12-08T04:31:29+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-12-08T04:31:29+00:00",
+ "exchange_rate_updated_at": "2017-12-08T04:31:29+00:00",
+ "fee_btc": "0.00089036",
+ "funded_at": "2017-12-08T04:31:29+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": null,
+ "reference_code": "L16885873BA1X81",
+ "released_at": null,
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/556123",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/556123/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/15160798/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/15160798/",
+ "release_url": "https://localbitcoins.com/api/contact_release/15160798/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2018-06-25T08:15:40+00:00",
+ "name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "id": 556123,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1055.84",
+ "amount_btc": "0.14999986",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2018-06-25T08:15:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-10-16T23:08:02+00:00",
+ "contact_id": 15160798,
+ "created_at": "2017-10-16T21:37:44+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-10-16T21:37:44+00:00",
+ "exchange_rate_updated_at": "2017-10-16T21:37:44+00:00",
+ "fee_btc": "0.00150000",
+ "funded_at": "2017-10-16T21:37:44+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": null,
+ "reference_code": "L15160798B90Y5A",
+ "released_at": null,
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ }
+ ]
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1561964296416293293"
+ ],
+ "Apiauth-Signature": [
+ "DFEC2CF704C6E63A2B7F6C5EB52086BB50737A3AFE8A17517BBA0B216C64C5B6"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/dashboard/closed/": {
+ "GET": [
+ {
+ "data": {
+ "data": {
+ "contact_count": 18,
+ "contact_list": [
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/654093",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/654093/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/20543871/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/20543871/",
+ "release_url": "https://localbitcoins.com/api/contact_release/20543871/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-30T21:32:38+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 654093,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "3038.91",
+ "amount_btc": "0.29599994",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "GB",
+ "countrycode_by_phone_number": "GB",
+ "feedback_score": 100,
+ "last_online": "2019-06-30T21:32:38+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-04-13T13:02:00+00:00",
+ "contact_id": 20543871,
+ "created_at": "2018-04-13T12:50:22+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-04-13T12:50:22+00:00",
+ "exchange_rate_updated_at": "2018-04-13T12:50:22+00:00",
+ "fee_btc": "0.00296000",
+ "funded_at": "2018-04-13T12:50:22+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-04-13T12:59:04+00:00",
+ "reference_code": "L20543871BC8BR3",
+ "released_at": "2018-04-13T13:02:00+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/243945",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/243945/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/18364961/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/18364961/",
+ "release_url": "https://localbitcoins.com/api/contact_release/18364961/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": "lbrun1.3"
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-16T02:46:03+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 243945,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "304.26",
+ "amount_btc": "0.02247995",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-06-16T02:46:03+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-01-24T06:31:43+00:00",
+ "contact_id": 18364961,
+ "created_at": "2018-01-24T05:58:35+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-01-24T05:58:35+00:00",
+ "exchange_rate_updated_at": "2018-01-24T05:58:35+00:00",
+ "fee_btc": "0.00022480",
+ "funded_at": "2018-01-24T05:58:35+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-01-24T06:27:05+00:00",
+ "reference_code": "L18364961BAXMHT",
+ "released_at": "2018-01-24T06:31:43+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/512104",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/512104/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/18364860/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/18364860/",
+ "release_url": "https://localbitcoins.com/api/contact_release/18364860/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": "lbrun1.6"
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-27T12:07:08+00:00",
+ "name": "",
+ "trade_count": "30+",
+ "username": ""
+ },
+ "id": 512104,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "7000.00",
+ "amount_btc": "0.49696073",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-06-27T12:07:08+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "30+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-01-24T06:30:07+00:00",
+ "contact_id": 18364860,
+ "created_at": "2018-01-24T05:48:23+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-01-24T05:48:23+00:00",
+ "exchange_rate_updated_at": "2018-01-24T05:48:23+00:00",
+ "fee_btc": "0.00496961",
+ "funded_at": "2018-01-24T05:48:23+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-01-24T06:26:15+00:00",
+ "reference_code": "L18364860BAXMF0",
+ "released_at": "2018-01-24T06:30:07+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/367850",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/367850/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/18364846/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/18364846/",
+ "release_url": "https://localbitcoins.com/api/contact_release/18364846/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": "lbrun1.5"
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 95,
+ "last_online": "2019-05-23T11:22:33+00:00",
+ "name": "",
+ "trade_count": "500+",
+ "username": ""
+ },
+ "id": 367850,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "5000.00",
+ "amount_btc": "0.35453299",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 95,
+ "last_online": "2019-05-23T11:22:33+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "500+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-01-24T06:13:59+00:00",
+ "contact_id": 18364846,
+ "created_at": "2018-01-24T05:47:12+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-01-24T05:47:12+00:00",
+ "exchange_rate_updated_at": "2018-01-24T05:47:12+00:00",
+ "fee_btc": "0.00354533",
+ "funded_at": "2018-01-24T05:47:12+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-01-24T06:05:45+00:00",
+ "reference_code": "L18364846BAXMEM",
+ "released_at": "2018-01-24T06:13:59+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/127500",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/127500/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/18364904/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/18364904/",
+ "release_url": "https://localbitcoins.com/api/contact_release/18364904/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": "lbrun1.4"
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:54:40+00:00",
+ "name": "",
+ "trade_count": "20 000+",
+ "username": ""
+ },
+ "id": 127500,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "962.00",
+ "amount_btc": "0.06836873",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:54:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "20 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-01-24T06:02:29+00:00",
+ "contact_id": 18364904,
+ "created_at": "2018-01-24T05:51:59+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-01-24T05:51:59+00:00",
+ "exchange_rate_updated_at": "2018-01-24T05:51:59+00:00",
+ "fee_btc": "0.00068369",
+ "funded_at": "2018-01-24T05:51:59+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-01-24T06:00:18+00:00",
+ "reference_code": "L18364904BAXMG8",
+ "released_at": "2018-01-24T06:02:29+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/613428",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/613428/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/17356107/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/17356107/",
+ "release_url": "https://localbitcoins.com/api/contact_release/17356107/"
+ },
+ "data": {
+ "account_info": "{}",
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:42:40+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 613428,
+ "payment_method": "SPECIFIC_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "2000.00",
+ "amount_btc": "0.09279954",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:42:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-12-20T21:04:14+00:00",
+ "contact_id": 17356107,
+ "created_at": "2017-12-20T20:57:32+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-12-20T20:57:32+00:00",
+ "exchange_rate_updated_at": "2017-12-20T20:57:32+00:00",
+ "fee_btc": "0.00092800",
+ "funded_at": "2017-12-20T20:57:32+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-12-20T21:02:59+00:00",
+ "reference_code": "L17356107BAC023",
+ "released_at": "2017-12-20T21:04:14+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/484383",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/484383/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16887828/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16887828/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16887828/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:42:40+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 484383,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1800.00",
+ "amount_btc": "0.08733069",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:42:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-12-08T06:30:04+00:00",
+ "contact_id": 16887828,
+ "created_at": "2017-12-08T06:16:01+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-12-08T06:16:01+00:00",
+ "exchange_rate_updated_at": "2017-12-08T06:16:01+00:00",
+ "fee_btc": "0.00087331",
+ "funded_at": "2017-12-08T06:16:01+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-12-08T06:25:30+00:00",
+ "reference_code": "L16887828BA1YQC",
+ "released_at": "2017-12-08T06:30:04+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/32805",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/32805/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16885873/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16885873/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16885873/"
+ },
+ "data": {
+ "account_info": "{}",
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 99,
+ "last_online": "2019-04-12T07:33:34+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 32805,
+ "payment_method": "CASH_DEPOSIT",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "2000.00",
+ "amount_btc": "0.08903554",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 99,
+ "last_online": "2019-04-12T07:33:34+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": "2017-12-08T04:49:40+00:00",
+ "closed_at": "2017-12-08T04:49:40+00:00",
+ "contact_id": 16885873,
+ "created_at": "2017-12-08T04:31:29+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-12-08T04:31:29+00:00",
+ "exchange_rate_updated_at": "2017-12-08T04:31:29+00:00",
+ "fee_btc": "0.00089036",
+ "funded_at": "2017-12-08T04:31:29+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": null,
+ "reference_code": "L16885873BA1X81",
+ "released_at": null,
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/367850",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/367850/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16658839/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16658839/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16658839/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 95,
+ "last_online": "2019-05-23T11:22:33+00:00",
+ "name": "",
+ "trade_count": "500+",
+ "username": ""
+ },
+ "id": 367850,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1200.00",
+ "amount_btc": "0.08218750",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 95,
+ "last_online": "2019-05-23T11:22:33+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "500+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-12-02T00:24:27+00:00",
+ "contact_id": 16658839,
+ "created_at": "2017-12-01T23:57:20+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-12-01T23:57:20+00:00",
+ "exchange_rate_updated_at": "2017-12-01T23:57:20+00:00",
+ "fee_btc": "0.00082188",
+ "funded_at": "2017-12-01T23:57:20+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-12-02T00:23:08+00:00",
+ "reference_code": "L16658839B9X21J",
+ "released_at": "2017-12-02T00:24:27+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/600091",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/600091/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16269655/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16269655/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16269655/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-30T21:32:38+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 600091,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1200.00",
+ "amount_btc": "0.11403170",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "GB",
+ "countrycode_by_phone_number": "GB",
+ "feedback_score": 100,
+ "last_online": "2019-06-30T21:32:38+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-11-20T06:33:08+00:00",
+ "contact_id": 16269655,
+ "created_at": "2017-11-20T06:29:02+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-11-20T06:29:02+00:00",
+ "exchange_rate_updated_at": "2017-11-20T06:29:02+00:00",
+ "fee_btc": "0.00114032",
+ "funded_at": "2017-11-20T06:29:02+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-11-20T06:31:43+00:00",
+ "reference_code": "L16269655B9OPQV",
+ "released_at": "2017-11-20T06:33:08+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/557284",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/557284/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16135919/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16135919/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16135919/"
+ },
+ "data": {
+ "account_info": "{}",
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 98,
+ "last_online": "2019-05-18T23:48:12+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 557284,
+ "payment_method": "CASH_DEPOSIT",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1000.00",
+ "amount_btc": "0.10197017",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 98,
+ "last_online": "2019-05-18T23:48:12+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-11-16T01:25:10+00:00",
+ "contact_id": 16135919,
+ "created_at": "2017-11-15T23:50:30+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-11-15T23:50:30+00:00",
+ "exchange_rate_updated_at": "2017-11-15T23:50:30+00:00",
+ "fee_btc": "0.00101970",
+ "funded_at": "2017-11-15T23:50:30+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-11-16T00:12:48+00:00",
+ "reference_code": "L16135919B9LUJZ",
+ "released_at": "2017-11-16T01:25:10+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/556123",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/556123/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/15625291/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/15625291/",
+ "release_url": "https://localbitcoins.com/api/contact_release/15625291/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2018-06-25T08:15:40+00:00",
+ "name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "id": 556123,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1000.00",
+ "amount_btc": "0.11965859",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2018-06-25T08:15:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-11-01T07:50:21+00:00",
+ "contact_id": 15625291,
+ "created_at": "2017-11-01T06:25:20+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-11-01T06:25:20+00:00",
+ "exchange_rate_updated_at": "2017-11-01T06:25:20+00:00",
+ "fee_btc": "0.00119659",
+ "funded_at": "2017-11-01T06:25:20+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-11-01T07:09:10+00:00",
+ "reference_code": "L15625291B9AWJV",
+ "released_at": "2017-11-01T07:50:21+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/513602",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/513602/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/15326580/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/15326580/",
+ "release_url": "https://localbitcoins.com/api/contact_release/15326580/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-29T17:21:27+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 513602,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1200.00",
+ "amount_btc": "0.16343052",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "BR",
+ "countrycode_by_phone_number": "BR",
+ "feedback_score": 100,
+ "last_online": "2019-06-29T17:21:27+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-10-22T05:40:05+00:00",
+ "contact_id": 15326580,
+ "created_at": "2017-10-22T04:53:51+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-10-22T04:53:51+00:00",
+ "exchange_rate_updated_at": "2017-10-22T04:53:51+00:00",
+ "fee_btc": "0.00163431",
+ "funded_at": "2017-10-22T04:53:51+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-10-22T05:11:29+00:00",
+ "reference_code": "L15326580B94I2C",
+ "released_at": "2017-10-22T05:40:05+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/271961",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/271961/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/15165674/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/15165674/",
+ "release_url": "https://localbitcoins.com/api/contact_release/15165674/"
+ },
+ "data": {
+ "account_info": "{}",
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2018-05-24T00:35:20+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 271961,
+ "payment_method": "SPECIFIC_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1049.16",
+ "amount_btc": "0.15000000",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": null,
+ "feedback_score": 100,
+ "last_online": "2018-05-24T00:35:20+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-10-17T03:18:50+00:00",
+ "contact_id": 15165674,
+ "created_at": "2017-10-17T02:49:59+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-10-17T02:49:59+00:00",
+ "exchange_rate_updated_at": "2017-10-17T02:49:59+00:00",
+ "fee_btc": "0.00150000",
+ "funded_at": "2017-10-17T02:49:59+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-10-17T03:12:46+00:00",
+ "reference_code": "L15165674B911WQ",
+ "released_at": "2017-10-17T03:18:50+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/556123",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/556123/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/15160798/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/15160798/",
+ "release_url": "https://localbitcoins.com/api/contact_release/15160798/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2018-06-25T08:15:40+00:00",
+ "name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "id": 556123,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1055.84",
+ "amount_btc": "0.14999986",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2018-06-25T08:15:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-10-16T23:08:02+00:00",
+ "contact_id": 15160798,
+ "created_at": "2017-10-16T21:37:44+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-10-16T21:37:44+00:00",
+ "exchange_rate_updated_at": "2017-10-16T21:37:44+00:00",
+ "fee_btc": "0.00150000",
+ "funded_at": "2017-10-16T21:37:44+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": null,
+ "reference_code": "L15160798B90Y5A",
+ "released_at": null,
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/555158",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/555158/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/14635637/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/14635637/",
+ "release_url": "https://localbitcoins.com/api/contact_release/14635637/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-05-16T12:33:56+00:00",
+ "name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "id": 555158,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1039.09",
+ "amount_btc": "0.20000077",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-05-16T12:33:56+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-09-29T01:11:57+00:00",
+ "contact_id": 14635637,
+ "created_at": "2017-09-29T00:56:22+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-09-29T00:56:22+00:00",
+ "exchange_rate_updated_at": "2017-09-29T00:56:22+00:00",
+ "fee_btc": "0.00200001",
+ "funded_at": "2017-09-29T00:56:22+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-09-29T01:10:58+00:00",
+ "reference_code": "L14635637B8POXH",
+ "released_at": "2017-09-29T01:11:57+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/72713",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/72713/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/14353081/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/14353081/",
+ "release_url": "https://localbitcoins.com/api/contact_release/14353081/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 98,
+ "last_online": "2019-02-09T05:54:26+00:00",
+ "name": "",
+ "trade_count": "15 000+",
+ "username": ""
+ },
+ "id": 72713,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1046.01",
+ "amount_btc": "0.20699993",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 98,
+ "last_online": "2019-02-09T05:54:26+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "15 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-09-18T23:10:20+00:00",
+ "contact_id": 14353081,
+ "created_at": "2017-09-18T21:53:08+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-09-18T21:53:08+00:00",
+ "exchange_rate_updated_at": "2017-09-18T21:53:08+00:00",
+ "fee_btc": "0.00207000",
+ "funded_at": "2017-09-18T21:53:08+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-09-18T22:24:20+00:00",
+ "reference_code": "L14353081B8JMWP",
+ "released_at": "2017-09-18T23:10:20+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/243945",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/243945/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/13641301/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/13641301/",
+ "release_url": "https://localbitcoins.com/api/contact_release/13641301/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-16T02:46:03+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 243945,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1272.60",
+ "amount_btc": "0.25000098",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-06-16T02:46:03+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-08-24T05:33:01+00:00",
+ "contact_id": 13641301,
+ "created_at": "2017-08-24T05:01:24+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-08-24T05:01:24+00:00",
+ "exchange_rate_updated_at": "2017-08-24T05:01:24+00:00",
+ "fee_btc": "0.00250001",
+ "funded_at": "2017-08-24T05:01:24+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-08-24T05:27:34+00:00",
+ "reference_code": "L13641301B84DP1",
+ "released_at": "2017-08-24T05:33:01+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ }
+ ]
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1561964296416293294"
+ ],
+ "Apiauth-Signature": [
+ "32B5FDB6D38A3D068C9FCB1076F38E6329AEE43C38BBF85F5243ADC7C9EA588E"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/dashboard/released/": {
+ "GET": [
+ {
+ "data": {
+ "data": {
+ "contact_count": 16,
+ "contact_list": [
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/654093",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/654093/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/20543871/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/20543871/",
+ "release_url": "https://localbitcoins.com/api/contact_release/20543871/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-30T21:32:38+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 654093,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "3038.91",
+ "amount_btc": "0.29599994",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "GB",
+ "countrycode_by_phone_number": "GB",
+ "feedback_score": 100,
+ "last_online": "2019-06-30T21:32:38+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-04-13T13:02:00+00:00",
+ "contact_id": 20543871,
+ "created_at": "2018-04-13T12:50:22+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-04-13T12:50:22+00:00",
+ "exchange_rate_updated_at": "2018-04-13T12:50:22+00:00",
+ "fee_btc": "0.00296000",
+ "funded_at": "2018-04-13T12:50:22+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-04-13T12:59:04+00:00",
+ "reference_code": "L20543871BC8BR3",
+ "released_at": "2018-04-13T13:02:00+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/243945",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/243945/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/18364961/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/18364961/",
+ "release_url": "https://localbitcoins.com/api/contact_release/18364961/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": "lbrun1.3"
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-16T02:46:03+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 243945,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "304.26",
+ "amount_btc": "0.02247995",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-06-16T02:46:03+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-01-24T06:31:43+00:00",
+ "contact_id": 18364961,
+ "created_at": "2018-01-24T05:58:35+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-01-24T05:58:35+00:00",
+ "exchange_rate_updated_at": "2018-01-24T05:58:35+00:00",
+ "fee_btc": "0.00022480",
+ "funded_at": "2018-01-24T05:58:35+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-01-24T06:27:05+00:00",
+ "reference_code": "L18364961BAXMHT",
+ "released_at": "2018-01-24T06:31:43+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/512104",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/512104/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/18364860/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/18364860/",
+ "release_url": "https://localbitcoins.com/api/contact_release/18364860/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": "lbrun1.6"
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-27T12:07:08+00:00",
+ "name": "",
+ "trade_count": "30+",
+ "username": ""
+ },
+ "id": 512104,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "7000.00",
+ "amount_btc": "0.49696073",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-06-27T12:07:08+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "30+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-01-24T06:30:07+00:00",
+ "contact_id": 18364860,
+ "created_at": "2018-01-24T05:48:23+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-01-24T05:48:23+00:00",
+ "exchange_rate_updated_at": "2018-01-24T05:48:23+00:00",
+ "fee_btc": "0.00496961",
+ "funded_at": "2018-01-24T05:48:23+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-01-24T06:26:15+00:00",
+ "reference_code": "L18364860BAXMF0",
+ "released_at": "2018-01-24T06:30:07+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/367850",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/367850/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/18364846/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/18364846/",
+ "release_url": "https://localbitcoins.com/api/contact_release/18364846/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": "lbrun1.5"
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 95,
+ "last_online": "2019-05-23T11:22:33+00:00",
+ "name": "",
+ "trade_count": "500+",
+ "username": ""
+ },
+ "id": 367850,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "5000.00",
+ "amount_btc": "0.35453299",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 95,
+ "last_online": "2019-05-23T11:22:33+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "500+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-01-24T06:13:59+00:00",
+ "contact_id": 18364846,
+ "created_at": "2018-01-24T05:47:12+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-01-24T05:47:12+00:00",
+ "exchange_rate_updated_at": "2018-01-24T05:47:12+00:00",
+ "fee_btc": "0.00354533",
+ "funded_at": "2018-01-24T05:47:12+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-01-24T06:05:45+00:00",
+ "reference_code": "L18364846BAXMEM",
+ "released_at": "2018-01-24T06:13:59+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/127500",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/127500/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/18364904/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/18364904/",
+ "release_url": "https://localbitcoins.com/api/contact_release/18364904/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": "lbrun1.4"
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:54:40+00:00",
+ "name": "",
+ "trade_count": "20 000+",
+ "username": ""
+ },
+ "id": 127500,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "962.00",
+ "amount_btc": "0.06836873",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:54:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "20 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2018-01-24T06:02:29+00:00",
+ "contact_id": 18364904,
+ "created_at": "2018-01-24T05:51:59+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2018-01-24T05:51:59+00:00",
+ "exchange_rate_updated_at": "2018-01-24T05:51:59+00:00",
+ "fee_btc": "0.00068369",
+ "funded_at": "2018-01-24T05:51:59+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2018-01-24T06:00:18+00:00",
+ "reference_code": "L18364904BAXMG8",
+ "released_at": "2018-01-24T06:02:29+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/613428",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/613428/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/17356107/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/17356107/",
+ "release_url": "https://localbitcoins.com/api/contact_release/17356107/"
+ },
+ "data": {
+ "account_info": "{}",
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:42:40+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 613428,
+ "payment_method": "SPECIFIC_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "2000.00",
+ "amount_btc": "0.09279954",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:42:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-12-20T21:04:14+00:00",
+ "contact_id": 17356107,
+ "created_at": "2017-12-20T20:57:32+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-12-20T20:57:32+00:00",
+ "exchange_rate_updated_at": "2017-12-20T20:57:32+00:00",
+ "fee_btc": "0.00092800",
+ "funded_at": "2017-12-20T20:57:32+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-12-20T21:02:59+00:00",
+ "reference_code": "L17356107BAC023",
+ "released_at": "2017-12-20T21:04:14+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/484383",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/484383/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16887828/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16887828/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16887828/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:42:40+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 484383,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1800.00",
+ "amount_btc": "0.08733069",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:42:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-12-08T06:30:04+00:00",
+ "contact_id": 16887828,
+ "created_at": "2017-12-08T06:16:01+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-12-08T06:16:01+00:00",
+ "exchange_rate_updated_at": "2017-12-08T06:16:01+00:00",
+ "fee_btc": "0.00087331",
+ "funded_at": "2017-12-08T06:16:01+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-12-08T06:25:30+00:00",
+ "reference_code": "L16887828BA1YQC",
+ "released_at": "2017-12-08T06:30:04+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/367850",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/367850/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16658839/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16658839/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16658839/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 95,
+ "last_online": "2019-05-23T11:22:33+00:00",
+ "name": "",
+ "trade_count": "500+",
+ "username": ""
+ },
+ "id": 367850,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1200.00",
+ "amount_btc": "0.08218750",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 95,
+ "last_online": "2019-05-23T11:22:33+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "500+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-12-02T00:24:27+00:00",
+ "contact_id": 16658839,
+ "created_at": "2017-12-01T23:57:20+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-12-01T23:57:20+00:00",
+ "exchange_rate_updated_at": "2017-12-01T23:57:20+00:00",
+ "fee_btc": "0.00082188",
+ "funded_at": "2017-12-01T23:57:20+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-12-02T00:23:08+00:00",
+ "reference_code": "L16658839B9X21J",
+ "released_at": "2017-12-02T00:24:27+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/600091",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/600091/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16269655/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16269655/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16269655/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-30T21:32:38+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 600091,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1200.00",
+ "amount_btc": "0.11403170",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "GB",
+ "countrycode_by_phone_number": "GB",
+ "feedback_score": 100,
+ "last_online": "2019-06-30T21:32:38+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-11-20T06:33:08+00:00",
+ "contact_id": 16269655,
+ "created_at": "2017-11-20T06:29:02+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-11-20T06:29:02+00:00",
+ "exchange_rate_updated_at": "2017-11-20T06:29:02+00:00",
+ "fee_btc": "0.00114032",
+ "funded_at": "2017-11-20T06:29:02+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-11-20T06:31:43+00:00",
+ "reference_code": "L16269655B9OPQV",
+ "released_at": "2017-11-20T06:33:08+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/557284",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/557284/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/16135919/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/16135919/",
+ "release_url": "https://localbitcoins.com/api/contact_release/16135919/"
+ },
+ "data": {
+ "account_info": "{}",
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 98,
+ "last_online": "2019-05-18T23:48:12+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 557284,
+ "payment_method": "CASH_DEPOSIT",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1000.00",
+ "amount_btc": "0.10197017",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 98,
+ "last_online": "2019-05-18T23:48:12+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-11-16T01:25:10+00:00",
+ "contact_id": 16135919,
+ "created_at": "2017-11-15T23:50:30+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-11-15T23:50:30+00:00",
+ "exchange_rate_updated_at": "2017-11-15T23:50:30+00:00",
+ "fee_btc": "0.00101970",
+ "funded_at": "2017-11-15T23:50:30+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-11-16T00:12:48+00:00",
+ "reference_code": "L16135919B9LUJZ",
+ "released_at": "2017-11-16T01:25:10+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/556123",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/556123/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/15625291/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/15625291/",
+ "release_url": "https://localbitcoins.com/api/contact_release/15625291/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2018-06-25T08:15:40+00:00",
+ "name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "id": 556123,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1000.00",
+ "amount_btc": "0.11965859",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2018-06-25T08:15:40+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-11-01T07:50:21+00:00",
+ "contact_id": 15625291,
+ "created_at": "2017-11-01T06:25:20+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-11-01T06:25:20+00:00",
+ "exchange_rate_updated_at": "2017-11-01T06:25:20+00:00",
+ "fee_btc": "0.00119659",
+ "funded_at": "2017-11-01T06:25:20+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-11-01T07:09:10+00:00",
+ "reference_code": "L15625291B9AWJV",
+ "released_at": "2017-11-01T07:50:21+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/513602",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/513602/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/15326580/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/15326580/",
+ "release_url": "https://localbitcoins.com/api/contact_release/15326580/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-29T17:21:27+00:00",
+ "name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "id": 513602,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1200.00",
+ "amount_btc": "0.16343052",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "BR",
+ "countrycode_by_phone_number": "BR",
+ "feedback_score": 100,
+ "last_online": "2019-06-29T17:21:27+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "3000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-10-22T05:40:05+00:00",
+ "contact_id": 15326580,
+ "created_at": "2017-10-22T04:53:51+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-10-22T04:53:51+00:00",
+ "exchange_rate_updated_at": "2017-10-22T04:53:51+00:00",
+ "fee_btc": "0.00163431",
+ "funded_at": "2017-10-22T04:53:51+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-10-22T05:11:29+00:00",
+ "reference_code": "L15326580B94I2C",
+ "released_at": "2017-10-22T05:40:05+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/271961",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/271961/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/15165674/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/15165674/",
+ "release_url": "https://localbitcoins.com/api/contact_release/15165674/"
+ },
+ "data": {
+ "account_info": "{}",
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2018-05-24T00:35:20+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 271961,
+ "payment_method": "SPECIFIC_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1049.16",
+ "amount_btc": "0.15000000",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": null,
+ "feedback_score": 100,
+ "last_online": "2018-05-24T00:35:20+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-10-17T03:18:50+00:00",
+ "contact_id": 15165674,
+ "created_at": "2017-10-17T02:49:59+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-10-17T02:49:59+00:00",
+ "exchange_rate_updated_at": "2017-10-17T02:49:59+00:00",
+ "fee_btc": "0.00150000",
+ "funded_at": "2017-10-17T02:49:59+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-10-17T03:12:46+00:00",
+ "reference_code": "L15165674B911WQ",
+ "released_at": "2017-10-17T03:18:50+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/555158",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/555158/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/14635637/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/14635637/",
+ "release_url": "https://localbitcoins.com/api/contact_release/14635637/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-05-16T12:33:56+00:00",
+ "name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "id": 555158,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1039.09",
+ "amount_btc": "0.20000077",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-05-16T12:33:56+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "1000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-09-29T01:11:57+00:00",
+ "contact_id": 14635637,
+ "created_at": "2017-09-29T00:56:22+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-09-29T00:56:22+00:00",
+ "exchange_rate_updated_at": "2017-09-29T00:56:22+00:00",
+ "fee_btc": "0.00200001",
+ "funded_at": "2017-09-29T00:56:22+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-09-29T01:10:58+00:00",
+ "reference_code": "L14635637B8POXH",
+ "released_at": "2017-09-29T01:11:57+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/72713",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/72713/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/14353081/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/14353081/",
+ "release_url": "https://localbitcoins.com/api/contact_release/14353081/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 98,
+ "last_online": "2019-02-09T05:54:26+00:00",
+ "name": "",
+ "trade_count": "15 000+",
+ "username": ""
+ },
+ "id": 72713,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1046.01",
+ "amount_btc": "0.20699993",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 98,
+ "last_online": "2019-02-09T05:54:26+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "15 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-09-18T23:10:20+00:00",
+ "contact_id": 14353081,
+ "created_at": "2017-09-18T21:53:08+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-09-18T21:53:08+00:00",
+ "exchange_rate_updated_at": "2017-09-18T21:53:08+00:00",
+ "fee_btc": "0.00207000",
+ "funded_at": "2017-09-18T21:53:08+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-09-18T22:24:20+00:00",
+ "reference_code": "L14353081B8JMWP",
+ "released_at": "2017-09-18T23:10:20+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ },
+ {
+ "actions": {
+ "advertisement_public_view": "https://localbitcoins.com/ad/243945",
+ "advertisement_url": "https://localbitcoins.com/api/ad-get/243945/",
+ "message_post_url": "https://localbitcoins.com/api/contact_message_post/13641301/",
+ "messages_url": "https://localbitcoins.com/api/contact_messages/13641301/",
+ "release_url": "https://localbitcoins.com/api/contact_release/13641301/"
+ },
+ "data": {
+ "account_details": {
+ "account_number": "",
+ "bsb": "",
+ "receiver_name": "",
+ "reference": ""
+ },
+ "advertisement": {
+ "advertiser": {
+ "feedback_score": 100,
+ "last_online": "2019-06-16T02:46:03+00:00",
+ "name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "id": 243945,
+ "payment_method": "NATIONAL_BANK",
+ "trade_type": "ONLINE_BUY"
+ },
+ "amount": "1272.60",
+ "amount_btc": "0.25000098",
+ "buyer": {
+ "company_name": null,
+ "countrycode_by_ip": "AU",
+ "countrycode_by_phone_number": "AU",
+ "feedback_score": 100,
+ "last_online": "2019-06-16T02:46:03+00:00",
+ "name": "",
+ "real_name": "",
+ "trade_count": "10 000+",
+ "username": ""
+ },
+ "canceled_at": null,
+ "closed_at": "2017-08-24T05:33:01+00:00",
+ "contact_id": 13641301,
+ "created_at": "2017-08-24T05:01:24+00:00",
+ "currency": "AUD",
+ "disputed_at": null,
+ "escrowed_at": "2017-08-24T05:01:24+00:00",
+ "exchange_rate_updated_at": "2017-08-24T05:01:24+00:00",
+ "fee_btc": "0.00250001",
+ "funded_at": "2017-08-24T05:01:24+00:00",
+ "is_buying": false,
+ "is_selling": true,
+ "payment_completed_at": "2017-08-24T05:27:34+00:00",
+ "reference_code": "L13641301B84DP1",
+ "released_at": "2017-08-24T05:33:01+00:00",
+ "seller": {
+ "feedback_score": 100,
+ "last_online": "2019-07-01T06:56:40+00:00",
+ "name": "",
+ "trade_count": "16",
+ "username": ""
+ }
+ }
+ }
+ ]
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1561964296416293295"
+ ],
+ "Apiauth-Signature": [
+ "00C8D42CE7ABC89BB9DD68A839628BC1E482F5A47A9BBC1D5AE12A1601A0434D"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/myself/": {
+ "GET": [
+ {
+ "data": {
+ "data": {
+ "age_text": "4 years, 11 months",
+ "blocked_count": 0,
+ "confirmed_trade_count_text": "16",
+ "created_at": "2014-07-18T21:12:23+00:00",
+ "feedback_count": 5,
+ "feedback_score": 100,
+ "feedbacks_unconfirmed_count": 3,
+ "has_common_trades": false,
+ "has_feedback": false,
+ "identity_verified_at": "2017-12-08T05:59:48+00:00",
+ "real_name_verifications_rejected": 0,
+ "real_name_verifications_trusted": 0,
+ "real_name_verifications_untrusted": 0,
+ "trade_volume_text": "2-5 BTC",
+ "trading_partners_count": 12,
+ "trusted_count": 2,
+ "url": "",
+ "username": ""
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1561959130359152477"
+ ],
+ "Apiauth-Signature": [
+ "80D9F6E9EC1AC1BD30F24C7F74B6D4737052C41D14142422C02FD4DF0E81B291"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/wallet-addr/": {
+ "POST": [
+ {
+ "data": {
+ "data": {
+ "address": "3BxxAysZpNkHL2cFLmft8923cGfMa2WdQw",
+ "message": "OK!"
+ }
+ },
+ "queryString": "",
+ "bodyParams": "",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1561957957028764420"
+ ],
+ "Apiauth-Signature": [
+ "51D4769CC4714D2B459D25A66FF1E72FF46CB8E94B65EA18455BB24AE35C068B"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/api/wallet-send/": {
+ "POST": [
+ {
+ "data": {
+ "error": {
+ "message": "One or more parameters did not validate. Please check the API documentation for usage.",
+ "errors": {
+ "amount": "Not enough balance"
+ },
+ "error_code": 19
+ }
+ },
+ "queryString": "",
+ "bodyParams": "address=1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB\u0026amount=100",
+ "headers": {
+ "Apiauth-Key": [
+ ""
+ ],
+ "Apiauth-Nonce": [
+ "1560491240845487036"
+ ],
+ "Apiauth-Signature": [
+ "8B7AB8E9648102F2EB7EE55F5A75FCEE4722680516D8CDFA9722942641C28ADA"
+ ],
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ]
+ }
+ }
+ ]
+ },
+ "/bitcoinaverage/ticker-all-currencies/": {
+ "GET": [
+ {
+ "data": {
+ "COP": {
+ "avg_12h": "25537196.67",
+ "volume_btc": "57.30794705",
+ "avg_24h": "25449596.12",
+ "avg_1h": "25764777.31",
+ "rates": {
+ "last": "25897996.85"
+ },
+ "avg_6h": "25412534.30"
+ },
+ "USD": {
+ "avg_12h": "8562.48",
+ "volume_btc": "140.85448370",
+ "avg_24h": "8586.36",
+ "avg_1h": "8492.03",
+ "rates": {
+ "last": "8214.00"
+ },
+ "avg_6h": "8568.07"
+ },
+ "JPY": {
+ "avg_12h": "847915.64",
+ "volume_btc": "0.02230900",
+ "avg_24h": "847915.64",
+ "rates": {
+ "last": "845980.00"
+ },
+ "avg_6h": "845980.00"
+ },
+ "TWD": {
+ "avg_12h": "281295.08",
+ "volume_btc": "2.26245037",
+ "avg_24h": "278202.56",
+ "avg_1h": "278103.89",
+ "rates": {
+ "last": "276672.61"
+ },
+ "avg_6h": "281295.08"
+ },
+ "GHS": {
+ "avg_12h": "44134.30",
+ "volume_btc": "1.98283093",
+ "avg_24h": "43651.70",
+ "rates": {
+ "last": "43650.15"
+ },
+ "avg_6h": "44060.04"
+ },
+ "NGN": {
+ "avg_12h": "2916614.26",
+ "volume_btc": "72.41011739",
+ "avg_24h": "2899101.32",
+ "avg_1h": "2921923.59",
+ "rates": {
+ "last": "2923100.01"
+ },
+ "avg_6h": "2916981.81"
+ },
+ "EGP": {
+ "avg_12h": "151813.87",
+ "volume_btc": "0.68349646",
+ "avg_24h": "150018.16",
+ "rates": {
+ "last": "209994.20"
+ }
+ },
+ "IDR": {
+ "avg_12h": "124164915.73",
+ "volume_btc": "0.09193647",
+ "avg_24h": "123191340.72",
+ "avg_1h": "121643007.78",
+ "rates": {
+ "last": "121643007.78"
+ },
+ "avg_6h": "124164915.73"
+ },
+ "MVR": {
+ "volume_btc": "0.02007789",
+ "avg_24h": "149418.09",
+ "rates": {
+ "last": "149418.09"
+ }
+ },
+ "SZL": {
+ "volume_btc": "0.01069374",
+ "avg_24h": "140268.98",
+ "rates": {
+ "last": "150000.15"
+ }
+ },
+ "ISK": {
+ "volume_btc": "0.20086962",
+ "avg_24h": "995670.72",
+ "rates": {
+ "last": "995670.72"
+ }
+ },
+ "CRC": {
+ "avg_12h": "4757140.30",
+ "volume_btc": "0.41437268",
+ "avg_24h": "4811297.94",
+ "rates": {
+ "last": "4955842.50"
+ },
+ "avg_6h": "4968659.22"
+ },
+ "XRP": {
+ "avg_12h": "21090.70",
+ "volume_btc": "0.25386409",
+ "avg_24h": "21023.45",
+ "rates": {
+ "last": "21124.01"
+ },
+ "avg_6h": "21184.65"
+ },
+ "AED": {
+ "volume_btc": "2.18671211",
+ "avg_24h": "29974.93",
+ "rates": {
+ "last": "29777.40"
+ }
+ },
+ "GBP": {
+ "avg_12h": "6517.46",
+ "volume_btc": "67.51203997",
+ "avg_24h": "6430.57",
+ "avg_1h": "6545.48",
+ "rates": {
+ "last": "6159.46"
+ },
+ "avg_6h": "6619.35"
+ },
+ "ETH": {
+ "avg_12h": "31.98",
+ "volume_btc": "0.30525867",
+ "avg_24h": "31.19",
+ "rates": {
+ "last": "31.93"
+ }
+ },
+ "BHD": {
+ "volume_btc": "0.02748994",
+ "avg_24h": "3455.81",
+ "rates": {
+ "last": "3455.81"
+ }
+ },
+ "LKR": {
+ "avg_12h": "1606872.20",
+ "volume_btc": "0.78053341",
+ "avg_24h": "1608097.45",
+ "avg_1h": "1804552.72",
+ "rates": {
+ "last": "1804552.72"
+ },
+ "avg_6h": "1606872.20"
+ },
+ "BOB": {
+ "avg_12h": "59376.89",
+ "volume_btc": "0.24588149",
+ "avg_24h": "55902.99",
+ "rates": {
+ "last": "59189.11"
+ },
+ "avg_6h": "59189.11"
+ },
+ "RSD": {
+ "avg_12h": "793701.45",
+ "volume_btc": "0.01338060",
+ "avg_24h": "869090.33",
+ "rates": {
+ "last": "793701.45"
+ }
+ },
+ "VES": {
+ "avg_12h": "59124424.76",
+ "volume_btc": "138.63954251",
+ "avg_24h": "58500831.77",
+ "rates": {
+ "last": "57319869.26"
+ },
+ "avg_6h": "59157392.40"
+ },
+ "PKR": {
+ "avg_12h": "1260400.03",
+ "volume_btc": "4.67788383",
+ "avg_24h": "1257798.07",
+ "avg_1h": "1281991.62",
+ "rates": {
+ "last": "1278624.55"
+ },
+ "avg_6h": "1273742.81"
+ },
+ "LBP": {
+ "avg_12h": "13596207.95",
+ "volume_btc": "0.03653960",
+ "avg_24h": "13596207.95",
+ "rates": {
+ "last": "13596207.95"
+ }
+ },
+ "TZS": {
+ "avg_12h": "19530777.00",
+ "volume_btc": "1.06554909",
+ "avg_24h": "19227157.06",
+ "avg_1h": "20357598.44",
+ "rates": {
+ "last": "20405664.61"
+ },
+ "avg_6h": "19407156.98"
+ },
+ "VND": {
+ "avg_12h": "201629484.83",
+ "volume_btc": "0.26768301",
+ "avg_24h": "201557439.41",
+ "rates": {
+ "last": "206358652.99"
+ },
+ "avg_6h": "201629484.83"
+ },
+ "GEL": {
+ "avg_12h": "20897.64",
+ "volume_btc": "0.05139655",
+ "avg_24h": "22491.78",
+ "rates": {
+ "last": "20897.64"
+ },
+ "avg_6h": "20897.64"
+ },
+ "LTC": {
+ "avg_12h": "64.20",
+ "volume_btc": "0.21374261",
+ "avg_24h": "63.91",
+ "rates": {
+ "last": "61.25"
+ }
+ },
+ "RON": {
+ "avg_12h": "32314.31",
+ "volume_btc": "3.41826662",
+ "avg_24h": "32447.47",
+ "rates": {
+ "last": "30515.15"
+ },
+ "avg_6h": "32024.17"
+ },
+ "HUF": {
+ "volume_btc": "0.10050384",
+ "avg_24h": "2437717.80",
+ "rates": {
+ "last": "2819598.69"
+ }
+ },
+ "MYR": {
+ "avg_12h": "33996.15",
+ "volume_btc": "8.81478056",
+ "avg_24h": "33956.83",
+ "avg_1h": "34476.72",
+ "rates": {
+ "last": "33858.00"
+ },
+ "avg_6h": "33755.81"
+ },
+ "GTQ": {
+ "avg_12h": "68974.61",
+ "volume_btc": "0.00959425",
+ "avg_24h": "69312.35",
+ "rates": {
+ "last": "70153.06"
+ }
+ },
+ "ZMW": {
+ "avg_12h": "123419.20",
+ "volume_btc": "0.24337546",
+ "avg_24h": "124378.68",
+ "rates": {
+ "last": "123078.65"
+ },
+ "avg_6h": "123419.20"
+ },
+ "MUR": {
+ "volume_btc": "0.01487938",
+ "avg_24h": "349476.93",
+ "rates": {
+ "last": "352219.22"
+ }
+ },
+ "UAH": {
+ "avg_12h": "211829.83",
+ "volume_btc": "16.66117945",
+ "avg_24h": "209677.23",
+ "avg_1h": "212630.36",
+ "rates": {
+ "last": "220388.34"
+ },
+ "avg_6h": "208239.32"
+ },
+ "UGX": {
+ "avg_12h": "29686183.01",
+ "volume_btc": "0.37545684",
+ "avg_24h": "29711353.80",
+ "avg_1h": "30835713.02",
+ "rates": {
+ "last": "30829092.51"
+ },
+ "avg_6h": "29620104.90"
+ },
+ "XOF": {
+ "avg_12h": "4861132.03",
+ "volume_btc": "0.09694489",
+ "avg_24h": "4772973.28",
+ "rates": {
+ "last": "4275733.70"
+ }
+ },
+ "QAR": {
+ "volume_btc": "0.27356116",
+ "avg_24h": "33256.77",
+ "rates": {
+ "last": "33732.04"
+ }
+ },
+ "SAR": {
+ "avg_12h": "32647.94",
+ "volume_btc": "5.37359276",
+ "avg_24h": "32537.28",
+ "rates": {
+ "last": "33848.64"
+ },
+ "avg_6h": "32663.09"
+ },
+ "DKK": {
+ "volume_btc": "0.22476957",
+ "avg_24h": "68590.24",
+ "rates": {
+ "last": "70473.55"
+ }
+ },
+ "CAD": {
+ "avg_12h": "11078.67",
+ "volume_btc": "8.94868269",
+ "avg_24h": "11031.59",
+ "avg_1h": "10446.42",
+ "rates": {
+ "last": "10446.42"
+ },
+ "avg_6h": "10959.13"
+ },
+ "SEK": {
+ "avg_12h": "80823.78",
+ "volume_btc": "8.90365116",
+ "avg_24h": "81244.54",
+ "avg_1h": "83288.12",
+ "rates": {
+ "last": "83343.47"
+ },
+ "avg_6h": "81469.29"
+ },
+ "SGD": {
+ "avg_12h": "11503.01",
+ "volume_btc": "5.99224704",
+ "avg_24h": "11330.54",
+ "avg_1h": "11532.92",
+ "rates": {
+ "last": "13134.52"
+ },
+ "avg_6h": "11360.59"
+ },
+ "HKD": {
+ "avg_12h": "67815.30",
+ "volume_btc": "19.69548211",
+ "avg_24h": "66039.28",
+ "rates": {
+ "last": "69484.34"
+ },
+ "avg_6h": "67853.45"
+ },
+ "TTD": {
+ "avg_12h": "58619.24",
+ "volume_btc": "0.16048185",
+ "avg_24h": "73729.08",
+ "rates": {
+ "last": "58619.24"
+ }
+ },
+ "BWP": {
+ "volume_btc": "0.04654223",
+ "avg_24h": "107429.32",
+ "rates": {
+ "last": "107429.32"
+ }
+ },
+ "OMR": {
+ "volume_btc": "0.01492234",
+ "avg_24h": "3350.68",
+ "rates": {
+ "last": "3350.68"
+ }
+ },
+ "AUD": {
+ "avg_12h": "12277.45",
+ "volume_btc": "13.09770688",
+ "avg_24h": "12128.46",
+ "avg_1h": "12108.70",
+ "rates": {
+ "last": "11641.01"
+ },
+ "avg_6h": "12253.63"
+ },
+ "CHF": {
+ "avg_12h": "7818.23",
+ "volume_btc": "0.72358711",
+ "avg_24h": "8291.80",
+ "avg_1h": "7800.76",
+ "rates": {
+ "last": "7800.76"
+ },
+ "avg_6h": "7800.76"
+ },
+ "IRR": {
+ "avg_12h": "1114656387.13",
+ "volume_btc": "1.80755109",
+ "avg_24h": "1086115901.27",
+ "rates": {
+ "last": "1093155904.81"
+ },
+ "avg_6h": "1093155904.81"
+ },
+ "JOD": {
+ "avg_12h": "6408.70",
+ "volume_btc": "0.01560379",
+ "avg_24h": "6408.70",
+ "rates": {
+ "last": "6408.70"
+ }
+ },
+ "KRW": {
+ "avg_12h": "10521366.18",
+ "volume_btc": "0.66149015",
+ "avg_24h": "10241401.49",
+ "avg_1h": "10484782.42",
+ "rates": {
+ "last": "10448609.25"
+ },
+ "avg_6h": "10511052.91"
+ },
+ "CNY": {
+ "avg_12h": "57135.62",
+ "volume_btc": "76.07019214",
+ "avg_24h": "57038.10",
+ "avg_1h": "57867.84",
+ "rates": {
+ "last": "58069.13"
+ },
+ "avg_6h": "57003.97"
+ },
+ "BYN": {
+ "avg_12h": "17747.08",
+ "volume_btc": "5.35404022",
+ "avg_24h": "17605.81",
+ "avg_1h": "17717.32",
+ "rates": {
+ "last": "17517.74"
+ },
+ "avg_6h": "17886.64"
+ },
+ "BDT": {
+ "volume_btc": "0.05384503",
+ "avg_24h": "759587.28",
+ "rates": {
+ "last": "761916.37"
+ }
+ },
+ "PAB": {
+ "avg_12h": "8325.37",
+ "volume_btc": "10.00787138",
+ "avg_24h": "8290.60",
+ "rates": {
+ "last": "9050.00"
+ },
+ "avg_6h": "8301.55"
+ },
+ "HRK": {
+ "avg_12h": "49999.80",
+ "volume_btc": "0.15555978",
+ "avg_24h": "55059.22",
+ "rates": {
+ "last": "49999.80"
+ }
+ },
+ "NZD": {
+ "avg_12h": "12810.86",
+ "volume_btc": "2.47636431",
+ "avg_24h": "12794.70",
+ "avg_1h": "13146.12",
+ "rates": {
+ "last": "13126.00"
+ },
+ "avg_6h": "12761.27"
+ },
+ "UYU": {
+ "avg_12h": "322604.75",
+ "volume_btc": "0.12983623",
+ "avg_24h": "318832.42",
+ "rates": {
+ "last": "324518.87"
+ }
+ },
+ "DOP": {
+ "avg_12h": "420879.60",
+ "volume_btc": "3.19533678",
+ "avg_24h": "417549.81",
+ "rates": {
+ "last": "425721.21"
+ },
+ "avg_6h": "426208.10"
+ },
+ "CLP": {
+ "avg_12h": "5819221.14",
+ "volume_btc": "4.28572068",
+ "avg_24h": "5814758.27",
+ "rates": {
+ "last": "6119335.79"
+ },
+ "avg_6h": "5846384.78"
+ },
+ "THB": {
+ "avg_12h": "259567.58",
+ "volume_btc": "7.37083947",
+ "avg_24h": "258321.79",
+ "avg_1h": "262775.63",
+ "rates": {
+ "last": "266794.22"
+ },
+ "avg_6h": "260131.35"
+ },
+ "XAF": {
+ "volume_btc": "0.02868090",
+ "avg_24h": "4826286.14",
+ "rates": {
+ "last": "5611300.00"
+ }
+ },
+ "EUR": {
+ "avg_12h": "7412.86",
+ "volume_btc": "76.17180176",
+ "avg_24h": "7287.46",
+ "avg_1h": "7382.68",
+ "rates": {
+ "last": "7397.11"
+ },
+ "avg_6h": "7456.86"
+ },
+ "TRY": {
+ "avg_12h": "47907.50",
+ "volume_btc": "1.02053262",
+ "avg_24h": "47153.18",
+ "rates": {
+ "last": "62899.91"
+ }
+ },
+ "ARS": {
+ "avg_12h": "382366.90",
+ "volume_btc": "4.92769759",
+ "avg_24h": "380152.45",
+ "rates": {
+ "last": "365500.00"
+ },
+ "avg_6h": "384722.46"
+ },
+ "ILS": {
+ "avg_12h": "31194.83",
+ "volume_btc": "0.10562972",
+ "avg_24h": "30071.17",
+ "rates": {
+ "last": "31194.83"
+ }
+ },
+ "RWF": {
+ "avg_12h": "7673007.07",
+ "volume_btc": "0.08569526",
+ "avg_24h": "7510809.81",
+ "rates": {
+ "last": "7748214.04"
+ }
+ },
+ "KZT": {
+ "avg_12h": "3301025.25",
+ "volume_btc": "2.59196053",
+ "avg_24h": "3297043.02",
+ "avg_1h": "3356280.87",
+ "rates": {
+ "last": "3384713.28"
+ },
+ "avg_6h": "3350564.14"
+ },
+ "NOK": {
+ "avg_12h": "79420.45",
+ "volume_btc": "4.09546929",
+ "avg_24h": "78398.04",
+ "avg_1h": "79396.38",
+ "rates": {
+ "last": "79396.38"
+ },
+ "avg_6h": "79417.99"
+ },
+ "RUB": {
+ "avg_12h": "548638.43",
+ "volume_btc": "302.23941176",
+ "avg_24h": "543679.83",
+ "avg_1h": "543842.57",
+ "rates": {
+ "last": "563329.00"
+ },
+ "avg_6h": "547455.94"
+ },
+ "KES": {
+ "avg_12h": "826764.39",
+ "volume_btc": "8.09195505",
+ "avg_24h": "818332.89",
+ "avg_1h": "820436.51",
+ "rates": {
+ "last": "810682.85"
+ },
+ "avg_6h": "826962.52"
+ },
+ "KWD": {
+ "volume_btc": "0.39533718",
+ "avg_24h": "2605.37",
+ "rates": {
+ "last": "2737.64"
+ }
+ },
+ "PEN": {
+ "avg_12h": "27718.82",
+ "volume_btc": "17.70290717",
+ "avg_24h": "27664.96",
+ "avg_1h": "28018.35",
+ "rates": {
+ "last": "27035.01"
+ },
+ "avg_6h": "27791.63"
+ },
+ "INR": {
+ "avg_12h": "585205.33",
+ "volume_btc": "34.16374139",
+ "avg_24h": "584777.59",
+ "avg_1h": "585045.89",
+ "rates": {
+ "last": "575000.00"
+ },
+ "avg_6h": "585831.47"
+ },
+ "MXN": {
+ "avg_12h": "157593.02",
+ "volume_btc": "9.59066308",
+ "avg_24h": "160108.13",
+ "avg_1h": "167000.11",
+ "rates": {
+ "last": "167000.11"
+ },
+ "avg_6h": "162571.49"
+ },
+ "CZK": {
+ "volume_btc": "0.41412138",
+ "avg_24h": "201936.54",
+ "rates": {
+ "last": "174537.75"
+ }
+ },
+ "BRL": {
+ "avg_12h": "32900.90",
+ "volume_btc": "8.97094556",
+ "avg_24h": "32589.27",
+ "avg_1h": "33176.14",
+ "rates": {
+ "last": "33176.14"
+ },
+ "avg_6h": "33886.68"
+ },
+ "MAD": {
+ "avg_12h": "76479.19",
+ "volume_btc": "1.14882279",
+ "avg_24h": "80824.78",
+ "avg_1h": "74500.77",
+ "rates": {
+ "last": "74500.77"
+ },
+ "avg_6h": "74500.77"
+ },
+ "PLN": {
+ "avg_12h": "29765.85",
+ "volume_btc": "2.60538097",
+ "avg_24h": "29825.91",
+ "avg_1h": "33232.43",
+ "rates": {
+ "last": "28826.25"
+ },
+ "avg_6h": "33232.43"
+ },
+ "PHP": {
+ "avg_12h": "435189.26",
+ "volume_btc": "7.04342165",
+ "avg_24h": "433672.76",
+ "avg_1h": "421470.00",
+ "rates": {
+ "last": "508063.17"
+ },
+ "avg_6h": "434893.31"
+ },
+ "ZAR": {
+ "avg_12h": "126001.90",
+ "volume_btc": "20.14267295",
+ "avg_24h": "125704.49",
+ "avg_1h": "128216.45",
+ "rates": {
+ "last": "124066.59"
+ },
+ "avg_6h": "127185.17"
+ },
+ "JMD": {
+ "volume_btc": "0.00976113",
+ "avg_24h": "1690378.06",
+ "rates": {
+ "last": "1690378.06"
+ }
+ }
+ },
+ "queryString": "",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {}
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/testdata/http_mock/poloniex/poloniex.json b/testdata/http_mock/poloniex/poloniex.json
new file mode 100644
index 00000000000..3c6186c0e65
--- /dev/null
+++ b/testdata/http_mock/poloniex/poloniex.json
@@ -0,0 +1,9031 @@
+{
+ "routes": {
+ "/public": {
+ "GET": [
+ {
+ "data": {
+ "offers": [
+ {
+ "rate": "0.00001000",
+ "amount": "0.01106802",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00005000",
+ "amount": "0.01421371",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051121",
+ "amount": "0.01194792",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051180",
+ "amount": "0.20407105",
+ "rangeMin": 10,
+ "rangeMax": 10
+ },
+ {
+ "rate": "0.00051200",
+ "amount": "1.39196698",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051221",
+ "amount": "0.01251915",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051259",
+ "amount": "0.13936621",
+ "rangeMin": 2,
+ "rangeMax": 7
+ },
+ {
+ "rate": "0.00051261",
+ "amount": "0.08577806",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051300",
+ "amount": "30.62159808",
+ "rangeMin": 2,
+ "rangeMax": 3
+ },
+ {
+ "rate": "0.00051307",
+ "amount": "0.11240023",
+ "rangeMin": 2,
+ "rangeMax": 15
+ },
+ {
+ "rate": "0.00051321",
+ "amount": "0.04123649",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051359",
+ "amount": "0.01000000",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051361",
+ "amount": "0.01222452",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051383",
+ "amount": "0.04123649",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051400",
+ "amount": "11.86021806",
+ "rangeMin": 2,
+ "rangeMax": 60
+ },
+ {
+ "rate": "0.00051407",
+ "amount": "0.01156721",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051445",
+ "amount": "0.04123649",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051461",
+ "amount": "0.01000000",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051472",
+ "amount": "0.01139563",
+ "rangeMin": 7,
+ "rangeMax": 7
+ },
+ {
+ "rate": "0.00051490",
+ "amount": "0.17328314",
+ "rangeMin": 30,
+ "rangeMax": 30
+ },
+ {
+ "rate": "0.00051500",
+ "amount": "1.58067150",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051507",
+ "amount": "0.31612314",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051509",
+ "amount": "0.02767539",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051599",
+ "amount": "0.02591969",
+ "rangeMin": 7,
+ "rangeMax": 7
+ },
+ {
+ "rate": "0.00051600",
+ "amount": "7.56304844",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051607",
+ "amount": "0.31683506",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051686",
+ "amount": "0.01139563",
+ "rangeMin": 7,
+ "rangeMax": 7
+ },
+ {
+ "rate": "0.00051700",
+ "amount": "1.68550042",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051707",
+ "amount": "0.00574744",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051709",
+ "amount": "0.02867412",
+ "rangeMin": 60,
+ "rangeMax": 60
+ },
+ {
+ "rate": "0.00051729",
+ "amount": "0.01219097",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051730",
+ "amount": "0.01264114",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051799",
+ "amount": "0.01043269",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051800",
+ "amount": "4.58136320",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051829",
+ "amount": "0.06309791",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051859",
+ "amount": "0.01079156",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051899",
+ "amount": "0.24673262",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00051900",
+ "amount": "1.75619162",
+ "rangeMin": 7,
+ "rangeMax": 60
+ },
+ {
+ "rate": "0.00052000",
+ "amount": "0.01905141",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00052100",
+ "amount": "0.05404361",
+ "rangeMin": 2,
+ "rangeMax": 30
+ },
+ {
+ "rate": "0.00052189",
+ "amount": "0.08045529",
+ "rangeMin": 60,
+ "rangeMax": 60
+ },
+ {
+ "rate": "0.00052200",
+ "amount": "0.30165715",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00052299",
+ "amount": "0.00521692",
+ "rangeMin": 19,
+ "rangeMax": 19
+ },
+ {
+ "rate": "0.00052300",
+ "amount": "1.34778650",
+ "rangeMin": 2,
+ "rangeMax": 60
+ },
+ {
+ "rate": "0.00052389",
+ "amount": "0.07713974",
+ "rangeMin": 10,
+ "rangeMax": 20
+ },
+ {
+ "rate": "0.00052400",
+ "amount": "1.28093787",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00052500",
+ "amount": "0.38279138",
+ "rangeMin": 2,
+ "rangeMax": 60
+ },
+ {
+ "rate": "0.00052550",
+ "amount": "0.01065640",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00052600",
+ "amount": "3.20808196",
+ "rangeMin": 2,
+ "rangeMax": 2
+ },
+ {
+ "rate": "0.00052800",
+ "amount": "3.21858925",
+ "rangeMin": 2,
+ "rangeMax": 2
+ }
+ ],
+ "demands": [
+ {
+ "rate": "0.00000100",
+ "amount": "0.07730000",
+ "rangeMin": 2,
+ "rangeMax": 2
+ }
+ ]
+ },
+ "queryString": "command=returnLoanOrders\u0026currency=BTC",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {
+ "Key": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": {
+ "1CR": {
+ "id": 1,
+ "name": "1CRedit",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ABY": {
+ "id": 2,
+ "name": "ArtByte",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "AC": {
+ "id": 3,
+ "name": "AsiaCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ACH": {
+ "id": 4,
+ "name": "Altcoin Herald",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ADN": {
+ "id": 5,
+ "name": "Aiden",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "AEON": {
+ "id": 6,
+ "name": "AEON Coin",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": "WmrzAb4yy6i4otzaTZznsmaeBn8UKoBqS14XdW2DDzXr3DQnwz4o1XPJAJuo7QTqSoD9WVrdEQfn15udzhsJWmNR1jAEETQ2N",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "AERO": {
+ "id": 7,
+ "name": "Aerocoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "AIR": {
+ "id": 8,
+ "name": "AIRcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "AMP": {
+ "id": 275,
+ "name": "Synereo AMP",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "5.00000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "APH": {
+ "id": 9,
+ "name": "AphroditeCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ARCH": {
+ "id": 258,
+ "name": "ARCHcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ARDR": {
+ "id": 285,
+ "name": "Ardor",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "2.00000000",
+ "minConf": 20,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ATOM": {
+ "id": 313,
+ "name": "Cosmos",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00500000",
+ "minConf": 0,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "AUR": {
+ "id": 10,
+ "name": "Auroracoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "AXIS": {
+ "id": 11,
+ "name": "Axis",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BALLS": {
+ "id": 12,
+ "name": "Snowballs",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "6.40000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BANK": {
+ "id": 13,
+ "name": "BankCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BAT": {
+ "id": 302,
+ "name": "Basic Attention Token",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "9.00000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BBL": {
+ "id": 14,
+ "name": "BitBlock",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BBR": {
+ "id": 15,
+ "name": "Boolberry",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.00500000",
+ "minConf": 10000,
+ "depositAddress": "1D9hJ1nEjwuhxZMk6fupoTjKLtS2KzkfCQ7kF25k5B6Sc4UJjt9FrvDNYomVd4ZVHv36FskVRJGZa1JZAnZ35GiuAHf7gBy",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BCC": {
+ "id": 16,
+ "name": "BTCtalkcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BCH": {
+ "id": 292,
+ "name": "Bitcoin Cash (FROZEN)",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00010000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 1,
+ "isGeofenced": 0
+ },
+ "BCHABC": {
+ "id": 308,
+ "name": "Bitcoin Cash",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 11,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BCHSV": {
+ "id": 309,
+ "name": "Bitcoin SV",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 36,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BCN": {
+ "id": 17,
+ "name": "Bytecoin",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "1.00000000",
+ "minConf": 1000,
+ "depositAddress": "25cZNQYVAi3issDCoa6fWA2Aogd4FgPhYdpX3p8KLfhKC6sN8s6Q9WpcW4778TPwcUS5jEM25JrQvjD3XjsvXuNHSWhYUsu",
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BCY": {
+ "id": 269,
+ "name": "BitCrystals",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "4.00000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BDC": {
+ "id": 18,
+ "name": "Black Dragon Coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BDG": {
+ "id": 19,
+ "name": "Badgercoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BELA": {
+ "id": 20,
+ "name": "Bela Legacy",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BITCNY": {
+ "id": 273,
+ "name": "BitCNY",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "1.00000000",
+ "minConf": 10000,
+ "depositAddress": "poloniexwallet",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BITS": {
+ "id": 21,
+ "name": "Bitstar",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BITUSD": {
+ "id": 272,
+ "name": "BitUSD",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.15000000",
+ "minConf": 10000,
+ "depositAddress": "poloniexwallet",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BLK": {
+ "id": 22,
+ "name": "BlackCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BLOCK": {
+ "id": 23,
+ "name": "Blocknet",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 100000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 1,
+ "isGeofenced": 0
+ },
+ "BLU": {
+ "id": 24,
+ "name": "BlueCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BNS": {
+ "id": 25,
+ "name": "BonusCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BNT": {
+ "id": 305,
+ "name": "Bancor",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.10000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BONES": {
+ "id": 26,
+ "name": "Bones",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BOST": {
+ "id": 27,
+ "name": "BoostCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BTC": {
+ "id": 28,
+ "name": "Bitcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00050000",
+ "minConf": 1,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BTCD": {
+ "id": 29,
+ "name": "BitcoinDark",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BTCS": {
+ "id": 30,
+ "name": "Bitcoin-sCrypt",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BTM": {
+ "id": 31,
+ "name": "Bitmark",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BTS": {
+ "id": 32,
+ "name": "BitShares",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "5.00000000",
+ "minConf": 50,
+ "depositAddress": "poloniexwallet",
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BURN": {
+ "id": 33,
+ "name": "BurnerCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "BURST": {
+ "id": 34,
+ "name": "Burst",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.00000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "C2": {
+ "id": 35,
+ "name": "Coin2.0",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CACH": {
+ "id": 36,
+ "name": "CACHeCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CAI": {
+ "id": 37,
+ "name": "CaiShen",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CC": {
+ "id": 38,
+ "name": "Colbert Coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CCN": {
+ "id": 39,
+ "name": "Cannacoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CGA": {
+ "id": 40,
+ "name": "Cryptographic Anomaly",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CHA": {
+ "id": 41,
+ "name": "Chancecoin",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CINNI": {
+ "id": 42,
+ "name": "CinniCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CLAM": {
+ "id": 43,
+ "name": "CLAMS",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 6,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CNL": {
+ "id": 44,
+ "name": "ConcealCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CNMT": {
+ "id": 45,
+ "name": "Coinomat1",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CNOTE": {
+ "id": 46,
+ "name": "C-Note",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "COMM": {
+ "id": 47,
+ "name": "CommunityCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CON": {
+ "id": 48,
+ "name": "Coino",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.10000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CORG": {
+ "id": 49,
+ "name": "CorgiCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CRYPT": {
+ "id": 50,
+ "name": "CryptCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CURE": {
+ "id": 51,
+ "name": "Curecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CVC": {
+ "id": 294,
+ "name": "Civic",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.00000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "CYC": {
+ "id": 52,
+ "name": "Conspiracy Coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DAO": {
+ "id": 279,
+ "name": "The DAO",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DASH": {
+ "id": 60,
+ "name": "Dash",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 50,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DCR": {
+ "id": 277,
+ "name": "Decred",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.10000000",
+ "minConf": 4,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DGB": {
+ "id": 53,
+ "name": "DigiByte",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.10000000",
+ "minConf": 40,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DICE": {
+ "id": 54,
+ "name": "NeoDICE",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DIEM": {
+ "id": 55,
+ "name": "Diem",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DIME": {
+ "id": 56,
+ "name": "Dimecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DIS": {
+ "id": 57,
+ "name": "DistroCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DNS": {
+ "id": 58,
+ "name": "BitShares DNS",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.50000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DOGE": {
+ "id": 59,
+ "name": "Dogecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "100.00000000",
+ "minConf": 6,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DRKC": {
+ "id": 61,
+ "name": "DarkCash",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DRM": {
+ "id": 62,
+ "name": "Dreamcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DSH": {
+ "id": 63,
+ "name": "Dashcoin",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "1.00000000",
+ "minConf": 10000,
+ "depositAddress": "D8PDwmpq4KMhTy6u8RvWt5PLTMwEayGN3jeYoS3pkJQJMULNt2CyYKXG7KhqSahe9DPppRKqzkWGoMjf8C4L2mzFAgsJZXs",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "DVK": {
+ "id": 64,
+ "name": "DvoraKoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "EAC": {
+ "id": 65,
+ "name": "EarthCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "EBT": {
+ "id": 66,
+ "name": "EBTcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ECC": {
+ "id": 67,
+ "name": "ECCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "EFL": {
+ "id": 68,
+ "name": "Electronic Gulden",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "EMC2": {
+ "id": 69,
+ "name": "Einsteinium",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "EMO": {
+ "id": 70,
+ "name": "EmotiCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ENC": {
+ "id": 71,
+ "name": "Entropycoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "EOS": {
+ "id": 298,
+ "name": "EOS",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.00000000",
+ "minConf": 600,
+ "depositAddress": "poloniexeos1",
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ETC": {
+ "id": 283,
+ "name": "Ethereum Classic",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 600,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ETH": {
+ "id": 267,
+ "name": "Ethereum",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "eTOK": {
+ "id": 72,
+ "name": "eToken",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "EXE": {
+ "id": 73,
+ "name": "Execoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "EXP": {
+ "id": 270,
+ "name": "Expanse",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 8000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FAC": {
+ "id": 74,
+ "name": "Faircoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FCN": {
+ "id": 75,
+ "name": "Fantomcoin",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": "6mkbrPdSAjeaQKCCx8Nus1JiKb4HdeTDXC4bEWunDzTMXMPESd7aFNYPAG1U4MUpnhHfJfzVyTqnRFRW2REKN6efBVRMoSY",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FCT": {
+ "id": 271,
+ "name": "Factom",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 3,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FIBRE": {
+ "id": 76,
+ "name": "Fibrecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FLAP": {
+ "id": 77,
+ "name": "FlappyCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FLDC": {
+ "id": 78,
+ "name": "FoldingCoin",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "750.00000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FLO": {
+ "id": 254,
+ "name": "Florincoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FLT": {
+ "id": 79,
+ "name": "FlutterCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FOAM": {
+ "id": 307,
+ "name": "Foam",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.00000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FOX": {
+ "id": 80,
+ "name": "FoxCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FRAC": {
+ "id": 81,
+ "name": "Fractalcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FRK": {
+ "id": 82,
+ "name": "Franko",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FRQ": {
+ "id": 83,
+ "name": "FairQuark",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FVZ": {
+ "id": 84,
+ "name": "FVZCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FZ": {
+ "id": 85,
+ "name": "Frozen",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "FZN": {
+ "id": 86,
+ "name": "Fuzon",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GAME": {
+ "id": 93,
+ "name": "GameCredits",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 80,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GAP": {
+ "id": 87,
+ "name": "Gapcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GAS": {
+ "id": 296,
+ "name": "Gas",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 18,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GDN": {
+ "id": 88,
+ "name": "Global Denomination",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GEMZ": {
+ "id": 89,
+ "name": "GetGems",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "500.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GEO": {
+ "id": 90,
+ "name": "GeoCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GIAR": {
+ "id": 91,
+ "name": "Giarcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GLB": {
+ "id": 92,
+ "name": "Globe",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GML": {
+ "id": 94,
+ "name": "GameleagueCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 1,
+ "isGeofenced": 0
+ },
+ "GNO": {
+ "id": 291,
+ "name": "Gnosis",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.01500000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GNS": {
+ "id": 95,
+ "name": "GenesisCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GNT": {
+ "id": 290,
+ "name": "Golem",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.00000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GOLD": {
+ "id": 96,
+ "name": "GoldEagles",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GPC": {
+ "id": 97,
+ "name": "GROUPCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GPUC": {
+ "id": 98,
+ "name": "GPU Coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GRC": {
+ "id": 261,
+ "name": "Gridcoin Research",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GRCX": {
+ "id": 99,
+ "name": "Gridcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GRIN": {
+ "id": 314,
+ "name": "Grin",
+ "humanType": "MimbleWimble",
+ "currencyType": "mimblewimble",
+ "txFee": "0.10000000",
+ "minConf": 15,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GRS": {
+ "id": 100,
+ "name": "Groestlcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 100000,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "GUE": {
+ "id": 101,
+ "name": "Guerillacoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "H2O": {
+ "id": 102,
+ "name": "H2O Coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "HIRO": {
+ "id": 103,
+ "name": "Hirocoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "HOT": {
+ "id": 104,
+ "name": "Hotcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "HUC": {
+ "id": 105,
+ "name": "Huntercoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "HUGE": {
+ "id": 260,
+ "name": "BIGcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 1,
+ "isGeofenced": 0
+ },
+ "HVC": {
+ "id": 106,
+ "name": "Heavycoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "HYP": {
+ "id": 107,
+ "name": "HyperStake",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "HZ": {
+ "id": 108,
+ "name": "Horizon",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "IFC": {
+ "id": 109,
+ "name": "Infinitecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "2000.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "INDEX": {
+ "id": 265,
+ "name": "CoinoIndex",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "IOC": {
+ "id": 263,
+ "name": "IO Digital Currency",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ITC": {
+ "id": 110,
+ "name": "Information Coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "IXC": {
+ "id": 111,
+ "name": "iXcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "JLH": {
+ "id": 112,
+ "name": "jl777hodl",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "JPC": {
+ "id": 113,
+ "name": "JackpotCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "JUG": {
+ "id": 114,
+ "name": "JuggaloCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "KDC": {
+ "id": 115,
+ "name": "KlondikeCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "KEY": {
+ "id": 116,
+ "name": "KeyCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "KNC": {
+ "id": 301,
+ "name": "Kyber",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.50000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LBC": {
+ "id": 280,
+ "name": "LBRY Credits",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.05000000",
+ "minConf": 11,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LC": {
+ "id": 117,
+ "name": "Limecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LCL": {
+ "id": 118,
+ "name": "Limecoin Lite",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LEAF": {
+ "id": 119,
+ "name": "Leafcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.10000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LGC": {
+ "id": 120,
+ "name": "Logicoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LOL": {
+ "id": 121,
+ "name": "LeagueCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LOOM": {
+ "id": 303,
+ "name": "LOOM Network",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "19.00000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LOVE": {
+ "id": 122,
+ "name": "LOVEcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LPT": {
+ "id": 312,
+ "name": "Livepeer",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.05000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LQD": {
+ "id": 123,
+ "name": "LIQUID",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LSK": {
+ "id": 278,
+ "name": "Lisk",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.10000000",
+ "minConf": 303,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LTBC": {
+ "id": 124,
+ "name": "LTBCoin",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "15000.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LTC": {
+ "id": 125,
+ "name": "Litecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 4,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "LTCX": {
+ "id": 126,
+ "name": "LiteCoinX",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MAID": {
+ "id": 127,
+ "name": "MaidSafeCoin",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "80.00000000",
+ "minConf": 1,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MANA": {
+ "id": 306,
+ "name": "Decentraland",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "22.00000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MAST": {
+ "id": 128,
+ "name": "MastiffCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MAX": {
+ "id": 129,
+ "name": "MaxCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MCN": {
+ "id": 130,
+ "name": "Moneta Verde",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "1.00000000",
+ "minConf": 10000,
+ "depositAddress": "VdttvavdPJNGD4NzPQf8Hn4tWUGyy9mQ58ScwXxKbx9ve4Kp8xXZ1kD1KmXUMp5qtX8GmRgMk16aNVBhENEHNQAb3488Ha7Vv",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MEC": {
+ "id": 131,
+ "name": "Megacoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "METH": {
+ "id": 132,
+ "name": "CryptoMETH",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MIL": {
+ "id": 133,
+ "name": "Millennium Coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MIN": {
+ "id": 134,
+ "name": "Minerals",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MINT": {
+ "id": 135,
+ "name": "Mintcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.10000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MMC": {
+ "id": 136,
+ "name": "MemoryCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MMNXT": {
+ "id": 137,
+ "name": "MMNXT",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MMXIV": {
+ "id": 138,
+ "name": "Maieuticoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MNTA": {
+ "id": 139,
+ "name": "Moneta",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MON": {
+ "id": 140,
+ "name": "Monocle",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MRC": {
+ "id": 141,
+ "name": "microCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MRS": {
+ "id": 142,
+ "name": "Marscoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MTS": {
+ "id": 144,
+ "name": "Metiscoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MUN": {
+ "id": 145,
+ "name": "Muniti",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MYR": {
+ "id": 146,
+ "name": "Myriadcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "MZC": {
+ "id": 147,
+ "name": "MazaCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "N5X": {
+ "id": 148,
+ "name": "N5coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NAS": {
+ "id": 149,
+ "name": "NAS",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NAUT": {
+ "id": 150,
+ "name": "Nautiluscoin",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address-payment-id",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NAV": {
+ "id": 151,
+ "name": "NAVCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 480,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NBT": {
+ "id": 152,
+ "name": "NuBits",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NEOS": {
+ "id": 153,
+ "name": "Neoscoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00010000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NL": {
+ "id": 154,
+ "name": "Nanolite",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NMC": {
+ "id": 155,
+ "name": "Namecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NMR": {
+ "id": 310,
+ "name": "Numeraire",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.05000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NOBL": {
+ "id": 156,
+ "name": "NobleCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NOTE": {
+ "id": 157,
+ "name": "DNotes",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NOXT": {
+ "id": 158,
+ "name": "NobleNXT",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NRS": {
+ "id": 159,
+ "name": "NoirShares",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NSR": {
+ "id": 160,
+ "name": "NuShares",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "2.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NTX": {
+ "id": 161,
+ "name": "NTX",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NXC": {
+ "id": 288,
+ "name": "Nexium",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "10.00000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NXT": {
+ "id": 162,
+ "name": "NXT",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address-payment-id",
+ "txFee": "1.00000000",
+ "minConf": 24,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "NXTI": {
+ "id": 163,
+ "name": "NXTInspect",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "OMG": {
+ "id": 295,
+ "name": "OmiseGO",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.30000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "OMNI": {
+ "id": 143,
+ "name": "Omni",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "4.00000000",
+ "minConf": 1,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "OPAL": {
+ "id": 164,
+ "name": "Opal",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PAND": {
+ "id": 165,
+ "name": "PandaCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PASC": {
+ "id": 289,
+ "name": "PascalCoin",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.01000000",
+ "minConf": 300,
+ "depositAddress": "86646-64",
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PAWN": {
+ "id": 166,
+ "name": "Pawncoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PIGGY": {
+ "id": 167,
+ "name": "New Piggycoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PINK": {
+ "id": 168,
+ "name": "Pinkcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PLX": {
+ "id": 169,
+ "name": "ParallaxCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PMC": {
+ "id": 170,
+ "name": "Premine",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "POLY": {
+ "id": 311,
+ "name": "Polymath",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.25000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "POT": {
+ "id": 171,
+ "name": "PotCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PPC": {
+ "id": 172,
+ "name": "Peercoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PRC": {
+ "id": 173,
+ "name": "ProsperCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PRT": {
+ "id": 174,
+ "name": "Particle",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "PTS": {
+ "id": 175,
+ "name": "BitShares PTS",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "25.00000000",
+ "minConf": 10000,
+ "depositAddress": "poloniexwallet",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "Q2C": {
+ "id": 176,
+ "name": "QubitCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "QBK": {
+ "id": 177,
+ "name": "Qibuck",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "QCN": {
+ "id": 178,
+ "name": "QuazarCoin",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": "1VQpANF1pcKHPRAsZpeyG4jLDd1kbPn32YMeXkr9n8jNFvf8aaJdecB3FyAvo7X1DWJDQt3nii9eUTP5kJSfRpL5AwT72FM",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "QORA": {
+ "id": 179,
+ "name": "Qora",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "QTL": {
+ "id": 180,
+ "name": "Quatloo",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "QTUM": {
+ "id": 304,
+ "name": "Qtum",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 6,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "RADS": {
+ "id": 274,
+ "name": "Radium",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "RBY": {
+ "id": 181,
+ "name": "Rubycoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "RDD": {
+ "id": 182,
+ "name": "Reddcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "REP": {
+ "id": 284,
+ "name": "Augur",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.10000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "RIC": {
+ "id": 183,
+ "name": "Riecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "RZR": {
+ "id": 184,
+ "name": "Razor",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SBD": {
+ "id": 282,
+ "name": "Steem Dollars",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": "poloniex",
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SC": {
+ "id": 268,
+ "name": "Siacoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "10.00000000",
+ "minConf": 6,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SDC": {
+ "id": 185,
+ "name": "Shadow",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SHIBE": {
+ "id": 186,
+ "name": "ShibeCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SHOPX": {
+ "id": 187,
+ "name": "ShopX",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SILK": {
+ "id": 188,
+ "name": "Silkcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SJCX": {
+ "id": 189,
+ "name": "Storjcoin X",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "3.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SLR": {
+ "id": 190,
+ "name": "SolarCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SMC": {
+ "id": 191,
+ "name": "SmartCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SNT": {
+ "id": 300,
+ "name": "Status",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "200.00000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SOC": {
+ "id": 192,
+ "name": "SocialCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SPA": {
+ "id": 193,
+ "name": "Spaincoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SQL": {
+ "id": 194,
+ "name": "Squallcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SRCC": {
+ "id": 195,
+ "name": "SourceCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SRG": {
+ "id": 196,
+ "name": "Surge",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SSD": {
+ "id": 197,
+ "name": "Sonic",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "STEEM": {
+ "id": 281,
+ "name": "STEEM",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.01000000",
+ "minConf": 50,
+ "depositAddress": "poloniex",
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "STORJ": {
+ "id": 297,
+ "name": "Storj",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1.00000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "STR": {
+ "id": 198,
+ "name": "Stellar",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.00001000",
+ "minConf": 2,
+ "depositAddress": "GCF7F72LNF3ODSJIIWPJWEVWX33VT2SVZSUQ5NMDKDLK3N2NFCUAUHPT",
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "STRAT": {
+ "id": 287,
+ "name": "Stratis",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 24,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SUM": {
+ "id": 199,
+ "name": "SummerCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SUN": {
+ "id": 200,
+ "name": "Suncoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SWARM": {
+ "id": 201,
+ "name": "SWARM",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "1000.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SXC": {
+ "id": 202,
+ "name": "Sexcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SYNC": {
+ "id": 203,
+ "name": "Sync",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00010000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "SYS": {
+ "id": 204,
+ "name": "Syscoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "TAC": {
+ "id": 205,
+ "name": "Talkcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "TOR": {
+ "id": 206,
+ "name": "TorCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "TRUST": {
+ "id": 207,
+ "name": "TrustPlus",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "TWE": {
+ "id": 208,
+ "name": "Twecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "UIS": {
+ "id": 209,
+ "name": "Unitus",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ULTC": {
+ "id": 210,
+ "name": "Umbrella-LTC",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "UNITY": {
+ "id": 211,
+ "name": "SuperNET",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "URO": {
+ "id": 212,
+ "name": "Uro",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "USDC": {
+ "id": 299,
+ "name": "USD Coin",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.02000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "USDE": {
+ "id": 213,
+ "name": "USDE",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "USDT": {
+ "id": 214,
+ "name": "Tether USD",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "10.00000000",
+ "minConf": 2,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "UTC": {
+ "id": 215,
+ "name": "UltraCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "UTIL": {
+ "id": 216,
+ "name": "UtilityCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "UVC": {
+ "id": 217,
+ "name": "UniversityCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "VIA": {
+ "id": 218,
+ "name": "Viacoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 60,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "VOOT": {
+ "id": 219,
+ "name": "VootCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "VOX": {
+ "id": 276,
+ "name": "Voxels",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "VRC": {
+ "id": 220,
+ "name": "VeriCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "VTC": {
+ "id": 221,
+ "name": "Vertcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 600,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "WC": {
+ "id": 222,
+ "name": "WhiteCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "WDC": {
+ "id": 223,
+ "name": "Worldcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "WIKI": {
+ "id": 224,
+ "name": "Wikicoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.10000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "WOLF": {
+ "id": 225,
+ "name": "InsanityCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.02000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "X13": {
+ "id": 226,
+ "name": "X13Coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XAI": {
+ "id": 227,
+ "name": "Sapience AIFX",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XAP": {
+ "id": 228,
+ "name": "API Coin",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "100.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XBC": {
+ "id": 229,
+ "name": "BitcoinPlus",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00010000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XC": {
+ "id": 230,
+ "name": "XCurrency",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XCH": {
+ "id": 231,
+ "name": "ClearingHouse",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XCN": {
+ "id": 232,
+ "name": "Cryptonite",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.02000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XCP": {
+ "id": 233,
+ "name": "Counterparty",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "16.00000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XCR": {
+ "id": 234,
+ "name": "Crypti",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00017818",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XDN": {
+ "id": 235,
+ "name": "DigitalNote",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "1.00000000",
+ "minConf": 10000,
+ "depositAddress": "ddddecTXF5B9PDwqZXP4Bs1FwttZbhF2YTRstruKctMoFJTE3VgD5uKd4RzmTHdzkv52wWWK2NYmfJeaiTuut2Pe2RVimGCvZ",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XDP": {
+ "id": 236,
+ "name": "Dogeparty",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XEM": {
+ "id": 256,
+ "name": "NEM",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "15.00000000",
+ "minConf": 18,
+ "depositAddress": "NBZMQO7ZPBYNBDUR7F75MAKA2S3DHDCIFG775N3D",
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XHC": {
+ "id": 237,
+ "name": "Honorcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XLB": {
+ "id": 238,
+ "name": "Libertycoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XMG": {
+ "id": 239,
+ "name": "Magi",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XMR": {
+ "id": 240,
+ "name": "Monero",
+ "humanType": "BTC Clone",
+ "currencyType": "address-payment-id",
+ "txFee": "0.00010000",
+ "minConf": 8,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XPB": {
+ "id": 241,
+ "name": "Pebblecoin",
+ "humanType": "Payment ID",
+ "currencyType": "address-payment-id",
+ "txFee": "0.10000000",
+ "minConf": 10000,
+ "depositAddress": "PByFtxkMuoFRwrhXU19PBXLgHssTtcvTDSGzNf7Rvt5uKEf5PnRL4ccK4pWN4dpwvGhggGq12gH4bMqbxLyQGhkf3RLfzurMdK",
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XPM": {
+ "id": 242,
+ "name": "Primecoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 2880,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XRP": {
+ "id": 243,
+ "name": "Ripple",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.15000000",
+ "minConf": 12,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XSI": {
+ "id": 244,
+ "name": "Stability Shares",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XST": {
+ "id": 245,
+ "name": "StealthCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XSV": {
+ "id": 246,
+ "name": "Silicon Valley Coin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XUSD": {
+ "id": 247,
+ "name": "CoinoUSD",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "0.00000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XVC": {
+ "id": 253,
+ "name": "Vcash",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 1000000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "XXC": {
+ "id": 248,
+ "name": "CREDS",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "YACC": {
+ "id": 249,
+ "name": "YACCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "YANG": {
+ "id": 250,
+ "name": "Yangcoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "YC": {
+ "id": 251,
+ "name": "YellowCoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "YIN": {
+ "id": 252,
+ "name": "Yincoin",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.01000000",
+ "minConf": 10000,
+ "depositAddress": null,
+ "disabled": 1,
+ "delisted": 1,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ZEC": {
+ "id": 286,
+ "name": "Zcash",
+ "humanType": "BTC Clone",
+ "currencyType": "address",
+ "txFee": "0.00100000",
+ "minConf": 8,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ },
+ "ZRX": {
+ "id": 293,
+ "name": "0x",
+ "humanType": "Sweep to Main Account",
+ "currencyType": "address",
+ "txFee": "5.00000000",
+ "minConf": 30,
+ "depositAddress": null,
+ "disabled": 0,
+ "delisted": 0,
+ "frozen": 0,
+ "isGeofenced": 0
+ }
+ },
+ "queryString": "command=returnCurrencies",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {
+ "Key": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": [
+ {
+ "date": 1405699200,
+ "high": 0.00413615,
+ "low": 0.00403986,
+ "open": 0.00404545,
+ "close": 0.00403997,
+ "volume": 4.95713239,
+ "quoteVolume": 1205.10503896,
+ "weightedAverage": 0.00411344
+ }
+ ],
+ "queryString": "command=returnChartData\u0026currencyPair=BTC_XMR\u0026end=1405699400\u0026period=300\u0026start=1405699200",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {
+ "Key": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": [
+ {
+ "globalTradeID": 419660422,
+ "tradeID": 19495952,
+ "date": "2019-06-11 04:31:22",
+ "type": "buy",
+ "rate": "0.01087441",
+ "amount": "3.67796814",
+ "total": "0.03999573",
+ "orderNumber": 378714356664
+ },
+ {
+ "globalTradeID": 419660404,
+ "tradeID": 19495951,
+ "date": "2019-06-11 04:30:31",
+ "type": "sell",
+ "rate": "0.01086990",
+ "amount": "0.00571394",
+ "total": "0.00006210",
+ "orderNumber": 378714099921
+ },
+ {
+ "globalTradeID": 419660400,
+ "tradeID": 19495950,
+ "date": "2019-06-11 04:30:26",
+ "type": "sell",
+ "rate": "0.01086990",
+ "amount": "0.00230268",
+ "total": "0.00002502",
+ "orderNumber": 378714088932
+ },
+ {
+ "globalTradeID": 419660390,
+ "tradeID": 19495949,
+ "date": "2019-06-11 04:30:07",
+ "type": "buy",
+ "rate": "0.01086995",
+ "amount": "0.09199674",
+ "total": "0.00099999",
+ "orderNumber": 378714018003
+ },
+ {
+ "globalTradeID": 419660384,
+ "tradeID": 19495948,
+ "date": "2019-06-11 04:29:44",
+ "type": "buy",
+ "rate": "0.01086995",
+ "amount": "0.18399348",
+ "total": "0.00199999",
+ "orderNumber": 378713958063
+ },
+ {
+ "globalTradeID": 419660320,
+ "tradeID": 19495947,
+ "date": "2019-06-11 04:27:43",
+ "type": "buy",
+ "rate": "0.01086995",
+ "amount": "0.00921345",
+ "total": "0.00010014",
+ "orderNumber": 378713556465
+ },
+ {
+ "globalTradeID": 419660311,
+ "tradeID": 19495946,
+ "date": "2019-06-11 04:27:16",
+ "type": "sell",
+ "rate": "0.01087360",
+ "amount": "0.00977015",
+ "total": "0.00010623",
+ "orderNumber": 378713374647
+ },
+ {
+ "globalTradeID": 419660294,
+ "tradeID": 19495945,
+ "date": "2019-06-11 04:27:08",
+ "type": "sell",
+ "rate": "0.01087361",
+ "amount": "0.00059317",
+ "total": "0.00000644",
+ "orderNumber": 378713343678
+ },
+ {
+ "globalTradeID": 419660267,
+ "tradeID": 19495944,
+ "date": "2019-06-11 04:25:46",
+ "type": "buy",
+ "rate": "0.01087743",
+ "amount": "0.09193288",
+ "total": "0.00099999",
+ "orderNumber": 378713085936
+ },
+ {
+ "globalTradeID": 419660245,
+ "tradeID": 19495943,
+ "date": "2019-06-11 04:25:30",
+ "type": "sell",
+ "rate": "0.01087360",
+ "amount": "0.00391038",
+ "total": "0.00004251",
+ "orderNumber": 378712987035
+ },
+ {
+ "globalTradeID": 419660244,
+ "tradeID": 19495942,
+ "date": "2019-06-11 04:25:30",
+ "type": "buy",
+ "rate": "0.01087756",
+ "amount": "0.18386391",
+ "total": "0.00199999",
+ "orderNumber": 378712985037
+ },
+ {
+ "globalTradeID": 419660236,
+ "tradeID": 19495941,
+ "date": "2019-06-11 04:25:00",
+ "type": "sell",
+ "rate": "0.01088420",
+ "amount": "0.01369197",
+ "total": "0.00014902",
+ "orderNumber": 378712820202
+ },
+ {
+ "globalTradeID": 419660229,
+ "tradeID": 19495940,
+ "date": "2019-06-11 04:24:35",
+ "type": "sell",
+ "rate": "0.01088519",
+ "amount": "0.01427388",
+ "total": "0.00015537",
+ "orderNumber": 378712682340
+ },
+ {
+ "globalTradeID": 419660226,
+ "tradeID": 19495939,
+ "date": "2019-06-11 04:24:34",
+ "type": "sell",
+ "rate": "0.01088768",
+ "amount": "0.00097304",
+ "total": "0.00001059",
+ "orderNumber": 378712674348
+ },
+ {
+ "globalTradeID": 419660173,
+ "tradeID": 19495938,
+ "date": "2019-06-11 04:22:05",
+ "type": "sell",
+ "rate": "0.01088769",
+ "amount": "1.48700000",
+ "total": "0.01618999",
+ "orderNumber": 378711816207
+ },
+ {
+ "globalTradeID": 419660171,
+ "tradeID": 19495937,
+ "date": "2019-06-11 04:22:02",
+ "type": "sell",
+ "rate": "0.01088768",
+ "amount": "1.31174004",
+ "total": "0.01428180",
+ "orderNumber": 378711803220
+ },
+ {
+ "globalTradeID": 419660170,
+ "tradeID": 19495936,
+ "date": "2019-06-11 04:22:02",
+ "type": "sell",
+ "rate": "0.01089626",
+ "amount": "0.01425996",
+ "total": "0.00015538",
+ "orderNumber": 378711803220
+ },
+ {
+ "globalTradeID": 419660132,
+ "tradeID": 19495935,
+ "date": "2019-06-11 04:20:05",
+ "type": "sell",
+ "rate": "0.01089627",
+ "amount": "5.95100000",
+ "total": "0.06484370",
+ "orderNumber": 378711129894
+ },
+ {
+ "globalTradeID": 419660131,
+ "tradeID": 19495934,
+ "date": "2019-06-11 04:20:05",
+ "type": "sell",
+ "rate": "0.01089627",
+ "amount": "3.65950000",
+ "total": "0.03987490",
+ "orderNumber": 378711122901
+ },
+ {
+ "globalTradeID": 419660129,
+ "tradeID": 19495933,
+ "date": "2019-06-11 04:20:01",
+ "type": "sell",
+ "rate": "0.01091500",
+ "amount": "0.16900000",
+ "total": "0.00184463",
+ "orderNumber": 378711079944
+ },
+ {
+ "globalTradeID": 419660126,
+ "tradeID": 19495932,
+ "date": "2019-06-11 04:20:01",
+ "type": "sell",
+ "rate": "0.01091935",
+ "amount": "21.93500000",
+ "total": "0.23951594",
+ "orderNumber": 378711075948
+ },
+ {
+ "globalTradeID": 419660124,
+ "tradeID": 19495931,
+ "date": "2019-06-11 04:20:01",
+ "type": "sell",
+ "rate": "0.01091935",
+ "amount": "11.44500000",
+ "total": "0.12497196",
+ "orderNumber": 378711073950
+ },
+ {
+ "globalTradeID": 419660123,
+ "tradeID": 19495930,
+ "date": "2019-06-11 04:20:00",
+ "type": "sell",
+ "rate": "0.01091935",
+ "amount": "37.87000000",
+ "total": "0.41351578",
+ "orderNumber": 378711071952
+ },
+ {
+ "globalTradeID": 419660122,
+ "tradeID": 19495929,
+ "date": "2019-06-11 04:20:00",
+ "type": "sell",
+ "rate": "0.01091937",
+ "amount": "0.11441976",
+ "total": "0.00124939",
+ "orderNumber": 378711070953
+ },
+ {
+ "globalTradeID": 419660106,
+ "tradeID": 19495928,
+ "date": "2019-06-11 04:19:08",
+ "type": "buy",
+ "rate": "0.01092168",
+ "amount": "0.00001589",
+ "total": "0.00000017",
+ "orderNumber": 378710872152
+ },
+ {
+ "globalTradeID": 419660079,
+ "tradeID": 19495927,
+ "date": "2019-06-11 04:17:33",
+ "type": "buy",
+ "rate": "0.01094157",
+ "amount": "0.00000361",
+ "total": "0.00000003",
+ "orderNumber": 378710442582
+ },
+ {
+ "globalTradeID": 419660064,
+ "tradeID": 19495926,
+ "date": "2019-06-11 04:17:25",
+ "type": "buy",
+ "rate": "0.01094825",
+ "amount": "0.10771685",
+ "total": "0.00117931",
+ "orderNumber": 378710362662
+ },
+ {
+ "globalTradeID": 419660041,
+ "tradeID": 19495925,
+ "date": "2019-06-11 04:17:17",
+ "type": "buy",
+ "rate": "0.01092001",
+ "amount": "0.00038186",
+ "total": "0.00000416",
+ "orderNumber": 378710310714
+ },
+ {
+ "globalTradeID": 419660040,
+ "tradeID": 19495924,
+ "date": "2019-06-11 04:17:17",
+ "type": "buy",
+ "rate": "0.01092000",
+ "amount": "0.00020349",
+ "total": "0.00000222",
+ "orderNumber": 378710310714
+ },
+ {
+ "globalTradeID": 419660037,
+ "tradeID": 19495923,
+ "date": "2019-06-11 04:17:15",
+ "type": "buy",
+ "rate": "0.01092000",
+ "amount": "0.05500000",
+ "total": "0.00060060",
+ "orderNumber": 378710295729
+ },
+ {
+ "globalTradeID": 419659984,
+ "tradeID": 19495922,
+ "date": "2019-06-11 04:15:16",
+ "type": "sell",
+ "rate": "0.01091912",
+ "amount": "13.40208261",
+ "total": "0.14633894",
+ "orderNumber": 378709791234
+ },
+ {
+ "globalTradeID": 419659967,
+ "tradeID": 19495921,
+ "date": "2019-06-11 04:14:24",
+ "type": "buy",
+ "rate": "0.01092001",
+ "amount": "0.00003551",
+ "total": "0.00000038",
+ "orderNumber": 378709500525
+ },
+ {
+ "globalTradeID": 419659939,
+ "tradeID": 19495920,
+ "date": "2019-06-11 04:12:52",
+ "type": "sell",
+ "rate": "0.01091700",
+ "amount": "0.05223877",
+ "total": "0.00057029",
+ "orderNumber": 378709035990
+ },
+ {
+ "globalTradeID": 419659917,
+ "tradeID": 19495919,
+ "date": "2019-06-11 04:11:42",
+ "type": "buy",
+ "rate": "0.01092001",
+ "amount": "0.11400000",
+ "total": "0.00124488",
+ "orderNumber": 378708709317
+ },
+ {
+ "globalTradeID": 419659887,
+ "tradeID": 19495918,
+ "date": "2019-06-11 04:10:11",
+ "type": "buy",
+ "rate": "0.01092641",
+ "amount": "0.59200000",
+ "total": "0.00646843",
+ "orderNumber": 378708191835
+ },
+ {
+ "globalTradeID": 419659868,
+ "tradeID": 19495917,
+ "date": "2019-06-11 04:09:36",
+ "type": "sell",
+ "rate": "0.01090201",
+ "amount": "8.04867515",
+ "total": "0.08774673",
+ "orderNumber": 378707979048
+ },
+ {
+ "globalTradeID": 419659867,
+ "tradeID": 19495916,
+ "date": "2019-06-11 04:09:36",
+ "type": "sell",
+ "rate": "0.01090202",
+ "amount": "0.11441976",
+ "total": "0.00124740",
+ "orderNumber": 378707979048
+ },
+ {
+ "globalTradeID": 419659866,
+ "tradeID": 19495915,
+ "date": "2019-06-11 04:09:36",
+ "type": "sell",
+ "rate": "0.01090310",
+ "amount": "2.31990509",
+ "total": "0.02529415",
+ "orderNumber": 378707979048
+ },
+ {
+ "globalTradeID": 419659865,
+ "tradeID": 19495914,
+ "date": "2019-06-11 04:09:36",
+ "type": "sell",
+ "rate": "0.01092004",
+ "amount": "0.01700000",
+ "total": "0.00018564",
+ "orderNumber": 378707979048
+ },
+ {
+ "globalTradeID": 419659807,
+ "tradeID": 19495913,
+ "date": "2019-06-11 04:07:31",
+ "type": "sell",
+ "rate": "0.01095075",
+ "amount": "0.01418870",
+ "total": "0.00015537",
+ "orderNumber": 378707249778
+ },
+ {
+ "globalTradeID": 419659769,
+ "tradeID": 19495912,
+ "date": "2019-06-11 04:05:05",
+ "type": "sell",
+ "rate": "0.01096500",
+ "amount": "0.04206385",
+ "total": "0.00046123",
+ "orderNumber": 378706749279
+ },
+ {
+ "globalTradeID": 419659591,
+ "tradeID": 19495911,
+ "date": "2019-06-11 04:00:04",
+ "type": "buy",
+ "rate": "0.01096866",
+ "amount": "0.00000182",
+ "total": "0.00000001",
+ "orderNumber": 378705401628
+ },
+ {
+ "globalTradeID": 419659509,
+ "tradeID": 19495910,
+ "date": "2019-06-11 03:58:27",
+ "type": "sell",
+ "rate": "0.01096500",
+ "amount": "0.00131691",
+ "total": "0.00001443",
+ "orderNumber": 378705024006
+ },
+ {
+ "globalTradeID": 419659489,
+ "tradeID": 19495909,
+ "date": "2019-06-11 03:56:54",
+ "type": "buy",
+ "rate": "0.01096874",
+ "amount": "0.00000503",
+ "total": "0.00000005",
+ "orderNumber": 378704656374
+ },
+ {
+ "globalTradeID": 419659483,
+ "tradeID": 19495908,
+ "date": "2019-06-11 03:56:52",
+ "type": "sell",
+ "rate": "0.01096500",
+ "amount": "0.00095029",
+ "total": "0.00001041",
+ "orderNumber": 378704634396
+ },
+ {
+ "globalTradeID": 419659466,
+ "tradeID": 19495907,
+ "date": "2019-06-11 03:55:53",
+ "type": "buy",
+ "rate": "0.01096886",
+ "amount": "0.77346138",
+ "total": "0.00848398",
+ "orderNumber": 378704373657
+ },
+ {
+ "globalTradeID": 419659465,
+ "tradeID": 19495906,
+ "date": "2019-06-11 03:55:53",
+ "type": "buy",
+ "rate": "0.01096885",
+ "amount": "0.13853132",
+ "total": "0.00151952",
+ "orderNumber": 378704373657
+ },
+ {
+ "globalTradeID": 419659451,
+ "tradeID": 19495905,
+ "date": "2019-06-11 03:55:18",
+ "type": "buy",
+ "rate": "0.01097328",
+ "amount": "0.00000182",
+ "total": "0.00000001",
+ "orderNumber": 378704154876
+ },
+ {
+ "globalTradeID": 419659388,
+ "tradeID": 19495904,
+ "date": "2019-06-11 03:53:35",
+ "type": "sell",
+ "rate": "0.01097102",
+ "amount": "0.00323397",
+ "total": "0.00003547",
+ "orderNumber": 378703612419
+ },
+ {
+ "globalTradeID": 419659387,
+ "tradeID": 19495903,
+ "date": "2019-06-11 03:53:35",
+ "type": "sell",
+ "rate": "0.01097102",
+ "amount": "0.01121592",
+ "total": "0.00012305",
+ "orderNumber": 378703612419
+ },
+ {
+ "globalTradeID": 419659361,
+ "tradeID": 19495902,
+ "date": "2019-06-11 03:51:59",
+ "type": "buy",
+ "rate": "0.01097329",
+ "amount": "0.00000551",
+ "total": "0.00000006",
+ "orderNumber": 378703243788
+ },
+ {
+ "globalTradeID": 419659311,
+ "tradeID": 19495901,
+ "date": "2019-06-11 03:50:22",
+ "type": "buy",
+ "rate": "0.01097337",
+ "amount": "0.00000302",
+ "total": "0.00000003",
+ "orderNumber": 378702896136
+ },
+ {
+ "globalTradeID": 419659308,
+ "tradeID": 19495900,
+ "date": "2019-06-11 03:50:19",
+ "type": "sell",
+ "rate": "0.01097102",
+ "amount": "0.00001640",
+ "total": "0.00000017",
+ "orderNumber": 378702885147
+ },
+ {
+ "globalTradeID": 419659273,
+ "tradeID": 19495899,
+ "date": "2019-06-11 03:49:39",
+ "type": "buy",
+ "rate": "0.01097341",
+ "amount": "0.02814583",
+ "total": "0.00030885",
+ "orderNumber": 378702765267
+ },
+ {
+ "globalTradeID": 419659247,
+ "tradeID": 19495898,
+ "date": "2019-06-11 03:48:46",
+ "type": "buy",
+ "rate": "0.01097347",
+ "amount": "0.00000202",
+ "total": "0.00000002",
+ "orderNumber": 378702529503
+ },
+ {
+ "globalTradeID": 419659206,
+ "tradeID": 19495897,
+ "date": "2019-06-11 03:47:11",
+ "type": "buy",
+ "rate": "0.01098449",
+ "amount": "0.00000903",
+ "total": "0.00000009",
+ "orderNumber": 378702105927
+ },
+ {
+ "globalTradeID": 419659201,
+ "tradeID": 19495896,
+ "date": "2019-06-11 03:47:06",
+ "type": "sell",
+ "rate": "0.01097123",
+ "amount": "0.00114936",
+ "total": "0.00001260",
+ "orderNumber": 378702095937
+ },
+ {
+ "globalTradeID": 419659162,
+ "tradeID": 19495895,
+ "date": "2019-06-11 03:45:33",
+ "type": "buy",
+ "rate": "0.01098220",
+ "amount": "0.00000607",
+ "total": "0.00000006",
+ "orderNumber": 378701612421
+ },
+ {
+ "globalTradeID": 419659121,
+ "tradeID": 19495894,
+ "date": "2019-06-11 03:43:57",
+ "type": "buy",
+ "rate": "0.01098466",
+ "amount": "0.00001116",
+ "total": "0.00000012",
+ "orderNumber": 378701091942
+ },
+ {
+ "globalTradeID": 419659098,
+ "tradeID": 19495893,
+ "date": "2019-06-11 03:42:20",
+ "type": "buy",
+ "rate": "0.01098497",
+ "amount": "0.00000381",
+ "total": "0.00000004",
+ "orderNumber": 378700626408
+ },
+ {
+ "globalTradeID": 419659053,
+ "tradeID": 19495892,
+ "date": "2019-06-11 03:39:06",
+ "type": "buy",
+ "rate": "0.01098849",
+ "amount": "0.00000521",
+ "total": "0.00000005",
+ "orderNumber": 378699644391
+ },
+ {
+ "globalTradeID": 419659027,
+ "tradeID": 19495891,
+ "date": "2019-06-11 03:37:49",
+ "type": "buy",
+ "rate": "0.01098390",
+ "amount": "1.56192145",
+ "total": "0.01715598",
+ "orderNumber": 378699299736
+ },
+ {
+ "globalTradeID": 419659020,
+ "tradeID": 19495890,
+ "date": "2019-06-11 03:37:30",
+ "type": "buy",
+ "rate": "0.01098390",
+ "amount": "0.00000203",
+ "total": "0.00000002",
+ "orderNumber": 378699228807
+ },
+ {
+ "globalTradeID": 419659010,
+ "tradeID": 19495889,
+ "date": "2019-06-11 03:37:09",
+ "type": "buy",
+ "rate": "0.01098499",
+ "amount": "1.82224405",
+ "total": "0.02001733",
+ "orderNumber": 378699142893
+ },
+ {
+ "globalTradeID": 419659009,
+ "tradeID": 19495888,
+ "date": "2019-06-11 03:37:09",
+ "type": "buy",
+ "rate": "0.01097301",
+ "amount": "0.63389687",
+ "total": "0.00695575",
+ "orderNumber": 378699142893
+ },
+ {
+ "globalTradeID": 419658982,
+ "tradeID": 19495887,
+ "date": "2019-06-11 03:35:52",
+ "type": "buy",
+ "rate": "0.01097301",
+ "amount": "0.00000313",
+ "total": "0.00000003",
+ "orderNumber": 378698852184
+ },
+ {
+ "globalTradeID": 419658951,
+ "tradeID": 19495886,
+ "date": "2019-06-11 03:34:14",
+ "type": "buy",
+ "rate": "0.01097401",
+ "amount": "0.00000343",
+ "total": "0.00000003",
+ "orderNumber": 378698676360
+ },
+ {
+ "globalTradeID": 419658906,
+ "tradeID": 19495885,
+ "date": "2019-06-11 03:32:36",
+ "type": "buy",
+ "rate": "0.01098544",
+ "amount": "0.00003856",
+ "total": "0.00000042",
+ "orderNumber": 378698162874
+ },
+ {
+ "globalTradeID": 419658856,
+ "tradeID": 19495884,
+ "date": "2019-06-11 03:30:54",
+ "type": "buy",
+ "rate": "0.01100470",
+ "amount": "0.00000822",
+ "total": "0.00000009",
+ "orderNumber": 378697679358
+ },
+ {
+ "globalTradeID": 419658782,
+ "tradeID": 19495883,
+ "date": "2019-06-11 03:27:44",
+ "type": "buy",
+ "rate": "0.01099742",
+ "amount": "0.00005336",
+ "total": "0.00000058",
+ "orderNumber": 378696543495
+ },
+ {
+ "globalTradeID": 419658690,
+ "tradeID": 19495882,
+ "date": "2019-06-11 03:25:32",
+ "type": "buy",
+ "rate": "0.01099155",
+ "amount": "1.59326119",
+ "total": "0.01751241",
+ "orderNumber": 378696202836
+ },
+ {
+ "globalTradeID": 419658624,
+ "tradeID": 19495881,
+ "date": "2019-06-11 03:22:57",
+ "type": "buy",
+ "rate": "0.01100279",
+ "amount": "0.00000776",
+ "total": "0.00000008",
+ "orderNumber": 378695513526
+ },
+ {
+ "globalTradeID": 419658597,
+ "tradeID": 19495880,
+ "date": "2019-06-11 03:21:18",
+ "type": "sell",
+ "rate": "0.01099501",
+ "amount": "0.00181536",
+ "total": "0.00001995",
+ "orderNumber": 378694987053
+ },
+ {
+ "globalTradeID": 419658524,
+ "tradeID": 19495879,
+ "date": "2019-06-11 03:18:10",
+ "type": "buy",
+ "rate": "0.01102096",
+ "amount": "0.00000823",
+ "total": "0.00000009",
+ "orderNumber": 378694251789
+ },
+ {
+ "globalTradeID": 419658405,
+ "tradeID": 19495878,
+ "date": "2019-06-11 03:16:43",
+ "type": "sell",
+ "rate": "0.01100509",
+ "amount": "0.04754874",
+ "total": "0.00052327",
+ "orderNumber": 378693959082
+ },
+ {
+ "globalTradeID": 419658370,
+ "tradeID": 19495877,
+ "date": "2019-06-11 03:15:56",
+ "type": "sell",
+ "rate": "0.01099326",
+ "amount": "0.63690866",
+ "total": "0.00700170",
+ "orderNumber": 378693752289
+ },
+ {
+ "globalTradeID": 419658369,
+ "tradeID": 19495876,
+ "date": "2019-06-11 03:15:56",
+ "type": "sell",
+ "rate": "0.01099501",
+ "amount": "0.11409631",
+ "total": "0.00125449",
+ "orderNumber": 378693752289
+ },
+ {
+ "globalTradeID": 419658368,
+ "tradeID": 19495875,
+ "date": "2019-06-11 03:15:56",
+ "type": "sell",
+ "rate": "0.01099826",
+ "amount": "0.01688839",
+ "total": "0.00018574",
+ "orderNumber": 378693752289
+ },
+ {
+ "globalTradeID": 419658367,
+ "tradeID": 19495874,
+ "date": "2019-06-11 03:15:56",
+ "type": "sell",
+ "rate": "0.01102244",
+ "amount": "0.15215954",
+ "total": "0.00167716",
+ "orderNumber": 378693752289
+ },
+ {
+ "globalTradeID": 419658294,
+ "tradeID": 19495873,
+ "date": "2019-06-11 03:15:10",
+ "type": "buy",
+ "rate": "0.01102244",
+ "amount": "0.21255099",
+ "total": "0.00234283",
+ "orderNumber": 378693585456
+ },
+ {
+ "globalTradeID": 419658268,
+ "tradeID": 19495872,
+ "date": "2019-06-11 03:14:56",
+ "type": "sell",
+ "rate": "0.01101010",
+ "amount": "0.00019436",
+ "total": "0.00000213",
+ "orderNumber": 378693515526
+ },
+ {
+ "globalTradeID": 419658029,
+ "tradeID": 19495871,
+ "date": "2019-06-11 03:08:32",
+ "type": "sell",
+ "rate": "0.01100114",
+ "amount": "0.00000181",
+ "total": "0.00000001",
+ "orderNumber": 378691456587
+ },
+ {
+ "globalTradeID": 419658023,
+ "tradeID": 19495870,
+ "date": "2019-06-11 03:08:29",
+ "type": "sell",
+ "rate": "0.01100112",
+ "amount": "0.00101626",
+ "total": "0.00001117",
+ "orderNumber": 378691443600
+ },
+ {
+ "globalTradeID": 419658017,
+ "tradeID": 19495869,
+ "date": "2019-06-11 03:08:23",
+ "type": "sell",
+ "rate": "0.01100110",
+ "amount": "0.00026088",
+ "total": "0.00000286",
+ "orderNumber": 378691431612
+ },
+ {
+ "globalTradeID": 419657999,
+ "tradeID": 19495868,
+ "date": "2019-06-11 03:06:50",
+ "type": "sell",
+ "rate": "0.01100023",
+ "amount": "0.00016545",
+ "total": "0.00000181",
+ "orderNumber": 378691103940
+ },
+ {
+ "globalTradeID": 419657996,
+ "tradeID": 19495867,
+ "date": "2019-06-11 03:06:49",
+ "type": "sell",
+ "rate": "0.01100023",
+ "amount": "0.00023999",
+ "total": "0.00000263",
+ "orderNumber": 378691102941
+ },
+ {
+ "globalTradeID": 419657740,
+ "tradeID": 19495866,
+ "date": "2019-06-11 02:58:48",
+ "type": "sell",
+ "rate": "0.01099843",
+ "amount": "0.00011456",
+ "total": "0.00000125",
+ "orderNumber": 378689243802
+ },
+ {
+ "globalTradeID": 419657701,
+ "tradeID": 19495865,
+ "date": "2019-06-11 02:56:40",
+ "type": "buy",
+ "rate": "0.01101556",
+ "amount": "0.03917163",
+ "total": "0.00043149",
+ "orderNumber": 378688729317
+ },
+ {
+ "globalTradeID": 419657601,
+ "tradeID": 19495864,
+ "date": "2019-06-11 02:53:35",
+ "type": "sell",
+ "rate": "0.01101519",
+ "amount": "0.13679308",
+ "total": "0.00150680",
+ "orderNumber": 378687637410
+ },
+ {
+ "globalTradeID": 419657476,
+ "tradeID": 19495863,
+ "date": "2019-06-11 02:50:54",
+ "type": "sell",
+ "rate": "0.01101013",
+ "amount": "0.01058570",
+ "total": "0.00011654",
+ "orderNumber": 378686860188
+ },
+ {
+ "globalTradeID": 419657453,
+ "tradeID": 19495862,
+ "date": "2019-06-11 02:50:18",
+ "type": "buy",
+ "rate": "0.01101828",
+ "amount": "0.04280000",
+ "total": "0.00047158",
+ "orderNumber": 378686618430
+ },
+ {
+ "globalTradeID": 419657452,
+ "tradeID": 19495861,
+ "date": "2019-06-11 02:50:18",
+ "type": "buy",
+ "rate": "0.01101780",
+ "amount": "0.01398753",
+ "total": "0.00015411",
+ "orderNumber": 378686618430
+ },
+ {
+ "globalTradeID": 419657451,
+ "tradeID": 19495860,
+ "date": "2019-06-11 02:50:18",
+ "type": "buy",
+ "rate": "0.01101629",
+ "amount": "2.39150539",
+ "total": "0.02634551",
+ "orderNumber": 378686618430
+ },
+ {
+ "globalTradeID": 419657450,
+ "tradeID": 19495859,
+ "date": "2019-06-11 02:50:18",
+ "type": "buy",
+ "rate": "0.01101230",
+ "amount": "0.01340400",
+ "total": "0.00014760",
+ "orderNumber": 378686618430
+ },
+ {
+ "globalTradeID": 419657449,
+ "tradeID": 19495858,
+ "date": "2019-06-11 02:50:18",
+ "type": "buy",
+ "rate": "0.01100868",
+ "amount": "0.16756661",
+ "total": "0.00184468",
+ "orderNumber": 378686618430
+ },
+ {
+ "globalTradeID": 419657448,
+ "tradeID": 19495857,
+ "date": "2019-06-11 02:50:18",
+ "type": "buy",
+ "rate": "0.01100810",
+ "amount": "0.01390076",
+ "total": "0.00015302",
+ "orderNumber": 378686618430
+ },
+ {
+ "globalTradeID": 419657447,
+ "tradeID": 19495856,
+ "date": "2019-06-11 02:50:18",
+ "type": "buy",
+ "rate": "0.01100551",
+ "amount": "0.01411744",
+ "total": "0.00015536",
+ "orderNumber": 378686618430
+ },
+ {
+ "globalTradeID": 419657445,
+ "tradeID": 19495855,
+ "date": "2019-06-11 02:50:18",
+ "type": "buy",
+ "rate": "0.01100543",
+ "amount": "0.04273596",
+ "total": "0.00047032",
+ "orderNumber": 378686615433
+ },
+ {
+ "globalTradeID": 419657298,
+ "tradeID": 19495854,
+ "date": "2019-06-11 02:45:31",
+ "type": "buy",
+ "rate": "0.01100142",
+ "amount": "0.01515621",
+ "total": "0.00016673",
+ "orderNumber": 378685060989
+ },
+ {
+ "globalTradeID": 419657290,
+ "tradeID": 19495853,
+ "date": "2019-06-11 02:44:56",
+ "type": "buy",
+ "rate": "0.01100060",
+ "amount": "0.01395757",
+ "total": "0.00015354",
+ "orderNumber": 378684828222
+ },
+ {
+ "globalTradeID": 419657119,
+ "tradeID": 19495852,
+ "date": "2019-06-11 02:39:35",
+ "type": "sell",
+ "rate": "0.01099521",
+ "amount": "0.07110823",
+ "total": "0.00078184",
+ "orderNumber": 378683079972
+ },
+ {
+ "globalTradeID": 419657062,
+ "tradeID": 19495851,
+ "date": "2019-06-11 02:38:00",
+ "type": "sell",
+ "rate": "0.01098911",
+ "amount": "0.00017289",
+ "total": "0.00000189",
+ "orderNumber": 378682556496
+ },
+ {
+ "globalTradeID": 419657049,
+ "tradeID": 19495850,
+ "date": "2019-06-11 02:37:35",
+ "type": "buy",
+ "rate": "0.01100000",
+ "amount": "0.28712708",
+ "total": "0.00315839",
+ "orderNumber": 378682396656
+ },
+ {
+ "globalTradeID": 419657048,
+ "tradeID": 19495849,
+ "date": "2019-06-11 02:37:35",
+ "type": "buy",
+ "rate": "0.01100000",
+ "amount": "11.98089159",
+ "total": "0.13178980",
+ "orderNumber": 378682396656
+ },
+ {
+ "globalTradeID": 419657047,
+ "tradeID": 19495848,
+ "date": "2019-06-11 02:37:35",
+ "type": "buy",
+ "rate": "0.01100000",
+ "amount": "20.28670000",
+ "total": "0.22315370",
+ "orderNumber": 378682391661
+ },
+ {
+ "globalTradeID": 419657037,
+ "tradeID": 19495847,
+ "date": "2019-06-11 02:37:23",
+ "type": "buy",
+ "rate": "0.01100000",
+ "amount": "19.58857431",
+ "total": "0.21547431",
+ "orderNumber": 378682329723
+ },
+ {
+ "globalTradeID": 419657036,
+ "tradeID": 19495846,
+ "date": "2019-06-11 02:37:23",
+ "type": "buy",
+ "rate": "0.01100000",
+ "amount": "0.10000400",
+ "total": "0.00110004",
+ "orderNumber": 378682329723
+ },
+ {
+ "globalTradeID": 419657035,
+ "tradeID": 19495845,
+ "date": "2019-06-11 02:37:23",
+ "type": "buy",
+ "rate": "0.01099996",
+ "amount": "0.10000000",
+ "total": "0.00109999",
+ "orderNumber": 378682329723
+ },
+ {
+ "globalTradeID": 419657034,
+ "tradeID": 19495844,
+ "date": "2019-06-11 02:37:23",
+ "type": "buy",
+ "rate": "0.01099969",
+ "amount": "0.09091165",
+ "total": "0.00099999",
+ "orderNumber": 378682329723
+ },
+ {
+ "globalTradeID": 419657033,
+ "tradeID": 19495843,
+ "date": "2019-06-11 02:37:23",
+ "type": "buy",
+ "rate": "0.01099922",
+ "amount": "2.39651004",
+ "total": "0.02635974",
+ "orderNumber": 378682329723
+ },
+ {
+ "globalTradeID": 419657007,
+ "tradeID": 19495842,
+ "date": "2019-06-11 02:37:02",
+ "type": "buy",
+ "rate": "0.01099588",
+ "amount": "1.02574734",
+ "total": "0.01127899",
+ "orderNumber": 378682212840
+ },
+ {
+ "globalTradeID": 419656977,
+ "tradeID": 19495841,
+ "date": "2019-06-11 02:36:41",
+ "type": "buy",
+ "rate": "0.01099588",
+ "amount": "0.27600000",
+ "total": "0.00303486",
+ "orderNumber": 378682057995
+ },
+ {
+ "globalTradeID": 419656960,
+ "tradeID": 19495840,
+ "date": "2019-06-11 02:36:09",
+ "type": "buy",
+ "rate": "0.01098950",
+ "amount": "2.76229338",
+ "total": "0.03035622",
+ "orderNumber": 378681860193
+ },
+ {
+ "globalTradeID": 419656926,
+ "tradeID": 19495839,
+ "date": "2019-06-11 02:34:47",
+ "type": "sell",
+ "rate": "0.01097903",
+ "amount": "0.00085253",
+ "total": "0.00000935",
+ "orderNumber": 378681331722
+ },
+ {
+ "globalTradeID": 419656922,
+ "tradeID": 19495838,
+ "date": "2019-06-11 02:34:44",
+ "type": "sell",
+ "rate": "0.01097902",
+ "amount": "0.00263502",
+ "total": "0.00002892",
+ "orderNumber": 378681311742
+ },
+ {
+ "globalTradeID": 419656903,
+ "tradeID": 19495837,
+ "date": "2019-06-11 02:33:09",
+ "type": "sell",
+ "rate": "0.01097738",
+ "amount": "0.00072603",
+ "total": "0.00000796",
+ "orderNumber": 378680730324
+ },
+ {
+ "globalTradeID": 419656875,
+ "tradeID": 19495836,
+ "date": "2019-06-11 02:31:53",
+ "type": "buy",
+ "rate": "0.01098999",
+ "amount": "3.81362404",
+ "total": "0.04191169",
+ "orderNumber": 378680249805
+ },
+ {
+ "globalTradeID": 419656867,
+ "tradeID": 19495835,
+ "date": "2019-06-11 02:31:36",
+ "type": "sell",
+ "rate": "0.01099140",
+ "amount": "3.51884830",
+ "total": "0.03867706",
+ "orderNumber": 378680109945
+ },
+ {
+ "globalTradeID": 419656866,
+ "tradeID": 19495834,
+ "date": "2019-06-11 02:31:32",
+ "type": "buy",
+ "rate": "0.01099141",
+ "amount": "0.00000181",
+ "total": "0.00000001",
+ "orderNumber": 378680107947
+ },
+ {
+ "globalTradeID": 419656858,
+ "tradeID": 19495833,
+ "date": "2019-06-11 02:31:13",
+ "type": "sell",
+ "rate": "0.01099140",
+ "amount": "1.19047895",
+ "total": "0.01308503",
+ "orderNumber": 378680036019
+ },
+ {
+ "globalTradeID": 419656857,
+ "tradeID": 19495832,
+ "date": "2019-06-11 02:31:11",
+ "type": "sell",
+ "rate": "0.01099140",
+ "amount": "0.09067275",
+ "total": "0.00099662",
+ "orderNumber": 378680020035
+ },
+ {
+ "globalTradeID": 419656847,
+ "tradeID": 19495831,
+ "date": "2019-06-11 02:30:30",
+ "type": "buy",
+ "rate": "0.01099140",
+ "amount": "0.20000000",
+ "total": "0.00219828",
+ "orderNumber": 378679878177
+ },
+ {
+ "globalTradeID": 419656831,
+ "tradeID": 19495830,
+ "date": "2019-06-11 02:29:54",
+ "type": "sell",
+ "rate": "0.01098366",
+ "amount": "0.00028223",
+ "total": "0.00000309",
+ "orderNumber": 378679691364
+ },
+ {
+ "globalTradeID": 419656743,
+ "tradeID": 19495829,
+ "date": "2019-06-11 02:26:56",
+ "type": "buy",
+ "rate": "0.01099141",
+ "amount": "14.18000000",
+ "total": "0.15585819",
+ "orderNumber": 378678498558
+ },
+ {
+ "globalTradeID": 419656741,
+ "tradeID": 19495828,
+ "date": "2019-06-11 02:26:55",
+ "type": "buy",
+ "rate": "0.01099141",
+ "amount": "6.67800000",
+ "total": "0.07340063",
+ "orderNumber": 378678496560
+ },
+ {
+ "globalTradeID": 419656738,
+ "tradeID": 19495827,
+ "date": "2019-06-11 02:26:55",
+ "type": "buy",
+ "rate": "0.01099141",
+ "amount": "9.80754099",
+ "total": "0.10779870",
+ "orderNumber": 378678492564
+ },
+ {
+ "globalTradeID": 419656737,
+ "tradeID": 19495826,
+ "date": "2019-06-11 02:26:55",
+ "type": "buy",
+ "rate": "0.01099100",
+ "amount": "0.10000000",
+ "total": "0.00109910",
+ "orderNumber": 378678492564
+ },
+ {
+ "globalTradeID": 419656736,
+ "tradeID": 19495825,
+ "date": "2019-06-11 02:26:55",
+ "type": "buy",
+ "rate": "0.01099100",
+ "amount": "0.58045901",
+ "total": "0.00637982",
+ "orderNumber": 378678492564
+ },
+ {
+ "globalTradeID": 419656692,
+ "tradeID": 19495824,
+ "date": "2019-06-11 02:25:28",
+ "type": "buy",
+ "rate": "0.01099141",
+ "amount": "0.97118176",
+ "total": "0.01067465",
+ "orderNumber": 378677876181
+ },
+ {
+ "globalTradeID": 419656686,
+ "tradeID": 19495823,
+ "date": "2019-06-11 02:25:22",
+ "type": "buy",
+ "rate": "0.01099141",
+ "amount": "1.21323848",
+ "total": "0.01333520",
+ "orderNumber": 378677830227
+ },
+ {
+ "globalTradeID": 419656674,
+ "tradeID": 19495822,
+ "date": "2019-06-11 02:25:10",
+ "type": "buy",
+ "rate": "0.01099141",
+ "amount": "0.61200000",
+ "total": "0.00672674",
+ "orderNumber": 378677745312
+ },
+ {
+ "globalTradeID": 419656673,
+ "tradeID": 19495821,
+ "date": "2019-06-11 02:25:10",
+ "type": "buy",
+ "rate": "0.01099141",
+ "amount": "4.42298415",
+ "total": "0.04861483",
+ "orderNumber": 378677743314
+ },
+ {
+ "globalTradeID": 419656672,
+ "tradeID": 19495820,
+ "date": "2019-06-11 02:25:10",
+ "type": "buy",
+ "rate": "0.01099140",
+ "amount": "0.32001585",
+ "total": "0.00351742",
+ "orderNumber": 378677743314
+ },
+ {
+ "globalTradeID": 419656622,
+ "tradeID": 19495819,
+ "date": "2019-06-11 02:23:58",
+ "type": "buy",
+ "rate": "0.01099139",
+ "amount": "0.09194560",
+ "total": "0.00101060",
+ "orderNumber": 378677170887
+ },
+ {
+ "globalTradeID": 419656536,
+ "tradeID": 19495818,
+ "date": "2019-06-11 02:22:33",
+ "type": "buy",
+ "rate": "0.01098805",
+ "amount": "0.89333991",
+ "total": "0.00981606",
+ "orderNumber": 378676565493
+ },
+ {
+ "globalTradeID": 419656535,
+ "tradeID": 19495817,
+ "date": "2019-06-11 02:22:33",
+ "type": "buy",
+ "rate": "0.01098804",
+ "amount": "3.46666009",
+ "total": "0.03809179",
+ "orderNumber": 378676565493
+ },
+ {
+ "globalTradeID": 419656510,
+ "tradeID": 19495816,
+ "date": "2019-06-11 02:21:53",
+ "type": "buy",
+ "rate": "0.01098616",
+ "amount": "2.83098726",
+ "total": "0.03110167",
+ "orderNumber": 378676284774
+ },
+ {
+ "globalTradeID": 419656509,
+ "tradeID": 19495815,
+ "date": "2019-06-11 02:21:53",
+ "type": "buy",
+ "rate": "0.01098615",
+ "amount": "9.88401274",
+ "total": "0.10858724",
+ "orderNumber": 378676284774
+ },
+ {
+ "globalTradeID": 419656507,
+ "tradeID": 19495814,
+ "date": "2019-06-11 02:21:52",
+ "type": "buy",
+ "rate": "0.01098615",
+ "amount": "2.51900000",
+ "total": "0.02767411",
+ "orderNumber": 378676279779
+ },
+ {
+ "globalTradeID": 419656505,
+ "tradeID": 19495813,
+ "date": "2019-06-11 02:21:52",
+ "type": "buy",
+ "rate": "0.01098615",
+ "amount": "6.19100000",
+ "total": "0.06801525",
+ "orderNumber": 378676271787
+ },
+ {
+ "globalTradeID": 419656504,
+ "tradeID": 19495812,
+ "date": "2019-06-11 02:21:52",
+ "type": "buy",
+ "rate": "0.01098615",
+ "amount": "1.80100000",
+ "total": "0.01978605",
+ "orderNumber": 378676269789
+ },
+ {
+ "globalTradeID": 419656503,
+ "tradeID": 19495811,
+ "date": "2019-06-11 02:21:52",
+ "type": "buy",
+ "rate": "0.01098615",
+ "amount": "10.26000000",
+ "total": "0.11271789",
+ "orderNumber": 378676268790
+ },
+ {
+ "globalTradeID": 419656502,
+ "tradeID": 19495810,
+ "date": "2019-06-11 02:21:51",
+ "type": "buy",
+ "rate": "0.01098615",
+ "amount": "1.98492975",
+ "total": "0.02180673",
+ "orderNumber": 378676266792
+ },
+ {
+ "globalTradeID": 419656501,
+ "tradeID": 19495809,
+ "date": "2019-06-11 02:21:51",
+ "type": "buy",
+ "rate": "0.01098614",
+ "amount": "0.22807025",
+ "total": "0.00250561",
+ "orderNumber": 378676266792
+ },
+ {
+ "globalTradeID": 419656499,
+ "tradeID": 19495808,
+ "date": "2019-06-11 02:21:51",
+ "type": "buy",
+ "rate": "0.01098615",
+ "amount": "8.26400000",
+ "total": "0.09078954",
+ "orderNumber": 378676262796
+ },
+ {
+ "globalTradeID": 419656496,
+ "tradeID": 19495807,
+ "date": "2019-06-11 02:21:51",
+ "type": "buy",
+ "rate": "0.01098615",
+ "amount": "3.63000000",
+ "total": "0.03987972",
+ "orderNumber": 378676261797
+ },
+ {
+ "globalTradeID": 419656491,
+ "tradeID": 19495806,
+ "date": "2019-06-11 02:21:46",
+ "type": "buy",
+ "rate": "0.01098615",
+ "amount": "5.82605751",
+ "total": "0.06400594",
+ "orderNumber": 378676256802
+ },
+ {
+ "globalTradeID": 419656488,
+ "tradeID": 19495805,
+ "date": "2019-06-11 02:21:46",
+ "type": "buy",
+ "rate": "0.01098616",
+ "amount": "5.82459583",
+ "total": "0.06398994",
+ "orderNumber": 378676251807
+ },
+ {
+ "globalTradeID": 419656478,
+ "tradeID": 19495804,
+ "date": "2019-06-11 02:21:46",
+ "type": "buy",
+ "rate": "0.01098617",
+ "amount": "5.82323047",
+ "total": "0.06397499",
+ "orderNumber": 378676247811
+ },
+ {
+ "globalTradeID": 419656401,
+ "tradeID": 19495803,
+ "date": "2019-06-11 02:17:12",
+ "type": "sell",
+ "rate": "0.01097003",
+ "amount": "0.00011303",
+ "total": "0.00000123",
+ "orderNumber": 378674915145
+ },
+ {
+ "globalTradeID": 419656344,
+ "tradeID": 19495802,
+ "date": "2019-06-11 02:15:35",
+ "type": "sell",
+ "rate": "0.01096700",
+ "amount": "0.00622868",
+ "total": "0.00006830",
+ "orderNumber": 378674362698
+ },
+ {
+ "globalTradeID": 419656335,
+ "tradeID": 19495801,
+ "date": "2019-06-11 02:14:58",
+ "type": "sell",
+ "rate": "0.01096644",
+ "amount": "6.44556753",
+ "total": "0.07068492",
+ "orderNumber": 378674125935
+ },
+ {
+ "globalTradeID": 419656229,
+ "tradeID": 19495800,
+ "date": "2019-06-11 02:13:59",
+ "type": "sell",
+ "rate": "0.01097611",
+ "amount": "0.00881642",
+ "total": "0.00009676",
+ "orderNumber": 378673796265
+ },
+ {
+ "globalTradeID": 419656134,
+ "tradeID": 19495799,
+ "date": "2019-06-11 02:11:11",
+ "type": "sell",
+ "rate": "0.01097600",
+ "amount": "4.34874974",
+ "total": "0.04773187",
+ "orderNumber": 378672998064
+ },
+ {
+ "globalTradeID": 419656133,
+ "tradeID": 19495798,
+ "date": "2019-06-11 02:11:11",
+ "type": "sell",
+ "rate": "0.01097601",
+ "amount": "0.12865121",
+ "total": "0.00141207",
+ "orderNumber": 378672998064
+ },
+ {
+ "globalTradeID": 419656132,
+ "tradeID": 19495797,
+ "date": "2019-06-11 02:11:11",
+ "type": "sell",
+ "rate": "0.01097601",
+ "amount": "1.32690213",
+ "total": "0.01456409",
+ "orderNumber": 378672998064
+ },
+ {
+ "globalTradeID": 419656131,
+ "tradeID": 19495796,
+ "date": "2019-06-11 02:11:11",
+ "type": "sell",
+ "rate": "0.01097632",
+ "amount": "4.08748000",
+ "total": "0.04486548",
+ "orderNumber": 378672998064
+ },
+ {
+ "globalTradeID": 419656071,
+ "tradeID": 19495795,
+ "date": "2019-06-11 02:10:51",
+ "type": "sell",
+ "rate": "0.01097629",
+ "amount": "0.00268670",
+ "total": "0.00002948",
+ "orderNumber": 378672914148
+ },
+ {
+ "globalTradeID": 419656068,
+ "tradeID": 19495794,
+ "date": "2019-06-11 02:10:50",
+ "type": "sell",
+ "rate": "0.01097629",
+ "amount": "0.00828786",
+ "total": "0.00009096",
+ "orderNumber": 378672908154
+ },
+ {
+ "globalTradeID": 419655987,
+ "tradeID": 19495793,
+ "date": "2019-06-11 02:09:13",
+ "type": "sell",
+ "rate": "0.01097625",
+ "amount": "0.00062589",
+ "total": "0.00000686",
+ "orderNumber": 378672486576
+ },
+ {
+ "globalTradeID": 419655936,
+ "tradeID": 19495792,
+ "date": "2019-06-11 02:07:30",
+ "type": "buy",
+ "rate": "0.01099588",
+ "amount": "0.08730618",
+ "total": "0.00096000",
+ "orderNumber": 378671928135
+ },
+ {
+ "globalTradeID": 419655935,
+ "tradeID": 19495791,
+ "date": "2019-06-11 02:07:27",
+ "type": "buy",
+ "rate": "0.01099590",
+ "amount": "2.94600000",
+ "total": "0.03239392",
+ "orderNumber": 378671914149
+ },
+ {
+ "globalTradeID": 419655932,
+ "tradeID": 19495790,
+ "date": "2019-06-11 02:07:23",
+ "type": "buy",
+ "rate": "0.01099590",
+ "amount": "18.99819158",
+ "total": "0.20890221",
+ "orderNumber": 378671909154
+ },
+ {
+ "globalTradeID": 419655931,
+ "tradeID": 19495789,
+ "date": "2019-06-11 02:07:23",
+ "type": "buy",
+ "rate": "0.01098289",
+ "amount": "8.49186817",
+ "total": "0.09326525",
+ "orderNumber": 378671909154
+ },
+ {
+ "globalTradeID": 419655930,
+ "tradeID": 19495788,
+ "date": "2019-06-11 02:07:23",
+ "type": "buy",
+ "rate": "0.01098289",
+ "amount": "0.92516246",
+ "total": "0.01016095",
+ "orderNumber": 378671909154
+ },
+ {
+ "globalTradeID": 419655888,
+ "tradeID": 19495787,
+ "date": "2019-06-11 02:05:51",
+ "type": "buy",
+ "rate": "0.01098982",
+ "amount": "40.55104177",
+ "total": "0.44564864",
+ "orderNumber": 378671584479
+ },
+ {
+ "globalTradeID": 419655839,
+ "tradeID": 19495786,
+ "date": "2019-06-11 02:04:30",
+ "type": "sell",
+ "rate": "0.01097601",
+ "amount": "0.00059948",
+ "total": "0.00000657",
+ "orderNumber": 378671231832
+ },
+ {
+ "globalTradeID": 419655835,
+ "tradeID": 19495785,
+ "date": "2019-06-11 02:04:29",
+ "type": "sell",
+ "rate": "0.01097601",
+ "amount": "0.00230684",
+ "total": "0.00002531",
+ "orderNumber": 378671224839
+ },
+ {
+ "globalTradeID": 419655760,
+ "tradeID": 19495784,
+ "date": "2019-06-11 02:02:52",
+ "type": "sell",
+ "rate": "0.01097624",
+ "amount": "0.00004919",
+ "total": "0.00000053",
+ "orderNumber": 378670836228
+ },
+ {
+ "globalTradeID": 419655755,
+ "tradeID": 19495783,
+ "date": "2019-06-11 02:02:50",
+ "type": "sell",
+ "rate": "0.01097624",
+ "amount": "0.00080537",
+ "total": "0.00000883",
+ "orderNumber": 378670822242
+ },
+ {
+ "globalTradeID": 419655714,
+ "tradeID": 19495782,
+ "date": "2019-06-11 02:01:24",
+ "type": "sell",
+ "rate": "0.01097609",
+ "amount": "0.14937440",
+ "total": "0.00163954",
+ "orderNumber": 378670531533
+ },
+ {
+ "globalTradeID": 419655711,
+ "tradeID": 19495781,
+ "date": "2019-06-11 02:01:18",
+ "type": "sell",
+ "rate": "0.01097610",
+ "amount": "0.11135441",
+ "total": "0.00122223",
+ "orderNumber": 378670504560
+ },
+ {
+ "globalTradeID": 419655698,
+ "tradeID": 19495780,
+ "date": "2019-06-11 02:01:12",
+ "type": "sell",
+ "rate": "0.01097610",
+ "amount": "0.00214374",
+ "total": "0.00002352",
+ "orderNumber": 378670483581
+ },
+ {
+ "globalTradeID": 419655693,
+ "tradeID": 19495779,
+ "date": "2019-06-11 02:01:11",
+ "type": "sell",
+ "rate": "0.01097610",
+ "amount": "0.00071883",
+ "total": "0.00000788",
+ "orderNumber": 378670480584
+ },
+ {
+ "globalTradeID": 419655690,
+ "tradeID": 19495778,
+ "date": "2019-06-11 02:01:10",
+ "type": "buy",
+ "rate": "0.01098999",
+ "amount": "0.09090000",
+ "total": "0.00099899",
+ "orderNumber": 378670475589
+ },
+ {
+ "globalTradeID": 419655677,
+ "tradeID": 19495777,
+ "date": "2019-06-11 02:00:41",
+ "type": "buy",
+ "rate": "0.01098998",
+ "amount": "0.10000000",
+ "total": "0.00109899",
+ "orderNumber": 378670377687
+ },
+ {
+ "globalTradeID": 419655660,
+ "tradeID": 19495776,
+ "date": "2019-06-11 01:59:51",
+ "type": "buy",
+ "rate": "0.01098999",
+ "amount": "22.47015128",
+ "total": "0.24694673",
+ "orderNumber": 378670228836
+ },
+ {
+ "globalTradeID": 419655659,
+ "tradeID": 19495775,
+ "date": "2019-06-11 01:59:51",
+ "type": "buy",
+ "rate": "0.01098642",
+ "amount": "0.15373084",
+ "total": "0.00168895",
+ "orderNumber": 378670228836
+ },
+ {
+ "globalTradeID": 419655658,
+ "tradeID": 19495774,
+ "date": "2019-06-11 01:59:51",
+ "type": "buy",
+ "rate": "0.01098400",
+ "amount": "0.00928634",
+ "total": "0.00010200",
+ "orderNumber": 378670228836
+ },
+ {
+ "globalTradeID": 419655657,
+ "tradeID": 19495773,
+ "date": "2019-06-11 01:59:51",
+ "type": "buy",
+ "rate": "0.01098025",
+ "amount": "0.05936375",
+ "total": "0.00065182",
+ "orderNumber": 378670228836
+ },
+ {
+ "globalTradeID": 419655656,
+ "tradeID": 19495772,
+ "date": "2019-06-11 01:59:51",
+ "type": "buy",
+ "rate": "0.01098000",
+ "amount": "0.02000000",
+ "total": "0.00021960",
+ "orderNumber": 378670228836
+ },
+ {
+ "globalTradeID": 419655655,
+ "tradeID": 19495771,
+ "date": "2019-06-11 01:59:51",
+ "type": "buy",
+ "rate": "0.01098000",
+ "amount": "0.00981951",
+ "total": "0.00010781",
+ "orderNumber": 378670228836
+ },
+ {
+ "globalTradeID": 419655652,
+ "tradeID": 19495770,
+ "date": "2019-06-11 01:59:51",
+ "type": "sell",
+ "rate": "0.01097603",
+ "amount": "0.00912443",
+ "total": "0.00010015",
+ "orderNumber": 378670225839
+ },
+ {
+ "globalTradeID": 419655640,
+ "tradeID": 19495769,
+ "date": "2019-06-11 01:59:35",
+ "type": "sell",
+ "rate": "0.01097606",
+ "amount": "0.00028061",
+ "total": "0.00000307",
+ "orderNumber": 378670189875
+ },
+ {
+ "globalTradeID": 419655633,
+ "tradeID": 19495768,
+ "date": "2019-06-11 01:59:23",
+ "type": "buy",
+ "rate": "0.01098000",
+ "amount": "1.29702296",
+ "total": "0.01424131",
+ "orderNumber": 378670155909
+ },
+ {
+ "globalTradeID": 419655630,
+ "tradeID": 19495767,
+ "date": "2019-06-11 01:59:05",
+ "type": "buy",
+ "rate": "0.01098000",
+ "amount": "1.18408220",
+ "total": "0.01300122",
+ "orderNumber": 378670101963
+ },
+ {
+ "globalTradeID": 419655590,
+ "tradeID": 19495766,
+ "date": "2019-06-11 01:58:00",
+ "type": "sell",
+ "rate": "0.01097603",
+ "amount": "0.02045548",
+ "total": "0.00022451",
+ "orderNumber": 378669894171
+ },
+ {
+ "globalTradeID": 419655589,
+ "tradeID": 19495765,
+ "date": "2019-06-11 01:58:00",
+ "type": "sell",
+ "rate": "0.01097605",
+ "amount": "0.01740344",
+ "total": "0.00019102",
+ "orderNumber": 378669894171
+ },
+ {
+ "globalTradeID": 419655588,
+ "tradeID": 19495764,
+ "date": "2019-06-11 01:58:00",
+ "type": "sell",
+ "rate": "0.01097605",
+ "amount": "0.00259656",
+ "total": "0.00002849",
+ "orderNumber": 378669890175
+ },
+ {
+ "globalTradeID": 419655571,
+ "tradeID": 19495763,
+ "date": "2019-06-11 01:57:42",
+ "type": "sell",
+ "rate": "0.01097605",
+ "amount": "2.29560855",
+ "total": "0.02519671",
+ "orderNumber": 378669825240
+ },
+ {
+ "globalTradeID": 419655547,
+ "tradeID": 19495762,
+ "date": "2019-06-11 01:57:06",
+ "type": "buy",
+ "rate": "0.01098000",
+ "amount": "8.67379891",
+ "total": "0.09523831",
+ "orderNumber": 378669717348
+ },
+ {
+ "globalTradeID": 419655520,
+ "tradeID": 19495761,
+ "date": "2019-06-11 01:56:19",
+ "type": "sell",
+ "rate": "0.01097606",
+ "amount": "0.00017674",
+ "total": "0.00000193",
+ "orderNumber": 378669567498
+ },
+ {
+ "globalTradeID": 419655454,
+ "tradeID": 19495760,
+ "date": "2019-06-11 01:53:01",
+ "type": "sell",
+ "rate": "0.01097600",
+ "amount": "0.00047831",
+ "total": "0.00000524",
+ "orderNumber": 378668865201
+ },
+ {
+ "globalTradeID": 419655453,
+ "tradeID": 19495759,
+ "date": "2019-06-11 01:52:57",
+ "type": "sell",
+ "rate": "0.01097600",
+ "amount": "0.00133017",
+ "total": "0.00001459",
+ "orderNumber": 378668862204
+ },
+ {
+ "globalTradeID": 419655381,
+ "tradeID": 19495758,
+ "date": "2019-06-11 01:50:44",
+ "type": "sell",
+ "rate": "0.01097600",
+ "amount": "0.01109161",
+ "total": "0.00012174",
+ "orderNumber": 378668335731
+ },
+ {
+ "globalTradeID": 419655380,
+ "tradeID": 19495757,
+ "date": "2019-06-11 01:50:41",
+ "type": "buy",
+ "rate": "0.01098000",
+ "amount": "0.01028779",
+ "total": "0.00011295",
+ "orderNumber": 378668318748
+ },
+ {
+ "globalTradeID": 419655343,
+ "tradeID": 19495756,
+ "date": "2019-06-11 01:49:39",
+ "type": "sell",
+ "rate": "0.01097613",
+ "amount": "0.00912435",
+ "total": "0.00010015",
+ "orderNumber": 378668097969
+ },
+ {
+ "globalTradeID": 419655339,
+ "tradeID": 19495755,
+ "date": "2019-06-11 01:49:38",
+ "type": "buy",
+ "rate": "0.01098000",
+ "amount": "17.58144635",
+ "total": "0.19304428",
+ "orderNumber": 378668091975
+ },
+ {
+ "globalTradeID": 419655307,
+ "tradeID": 19495754,
+ "date": "2019-06-11 01:48:21",
+ "type": "sell",
+ "rate": "0.01097631",
+ "amount": "0.06014124",
+ "total": "0.00066012",
+ "orderNumber": 378667813254
+ },
+ {
+ "globalTradeID": 419655303,
+ "tradeID": 19495753,
+ "date": "2019-06-11 01:48:15",
+ "type": "sell",
+ "rate": "0.01097631",
+ "amount": "0.00205442",
+ "total": "0.00002254",
+ "orderNumber": 378667800267
+ }
+ ],
+ "queryString": "command=returnTradeHistory\u0026currencyPair=BTC_XMR",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {
+ "Key": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": {
+ "asks": [
+ [
+ "0.01087421",
+ 7.14432824
+ ],
+ [
+ "0.01087422",
+ 0.22865644
+ ],
+ [
+ "0.01087442",
+ 1.9545156
+ ],
+ [
+ "0.01090127",
+ 115.93784476
+ ],
+ [
+ "0.01090131",
+ 61.893
+ ],
+ [
+ "0.01090133",
+ 61.325
+ ],
+ [
+ "0.01090196",
+ 50.36
+ ],
+ [
+ "0.01090218",
+ 5.05268287
+ ],
+ [
+ "0.01091700",
+ 48.8702
+ ],
+ [
+ "0.01091999",
+ 21.12523711
+ ],
+ [
+ "0.01092000",
+ 162.46658193
+ ],
+ [
+ "0.01092040",
+ 1008.518
+ ],
+ [
+ "0.01092042",
+ 497.15
+ ],
+ [
+ "0.01092044",
+ 71.25
+ ],
+ [
+ "0.01094817",
+ 8.77
+ ],
+ [
+ "0.01095034",
+ 0.01220759
+ ],
+ [
+ "0.01095757",
+ 29.94
+ ],
+ [
+ "0.01097007",
+ 7.77
+ ],
+ [
+ "0.01097660",
+ 5.84
+ ],
+ [
+ "0.01098948",
+ 300.394
+ ],
+ [
+ "0.01098949",
+ 137.05136069
+ ],
+ [
+ "0.01098955",
+ 0.0425
+ ],
+ [
+ "0.01099201",
+ 4.77
+ ],
+ [
+ "0.01100551",
+ 0.01411744
+ ],
+ [
+ "0.01102293",
+ 0.05364355
+ ],
+ [
+ "0.01102299",
+ 0.52734657
+ ],
+ [
+ "0.01102301",
+ 243.03
+ ],
+ [
+ "0.01102578",
+ 1.50994843
+ ],
+ [
+ "0.01102849",
+ 0.0425
+ ],
+ [
+ "0.01102990",
+ 0.06737554
+ ],
+ [
+ "0.01103094",
+ 0.18264761
+ ],
+ [
+ "0.01103900",
+ 0.01356688
+ ],
+ [
+ "0.01104080",
+ 0.01415803
+ ],
+ [
+ "0.01104996",
+ 0.1
+ ],
+ [
+ "0.01105139",
+ 0.0169
+ ],
+ [
+ "0.01105321",
+ 0.19908589
+ ],
+ [
+ "0.01105708",
+ 0.01
+ ],
+ [
+ "0.01105960",
+ 0.01355974
+ ],
+ [
+ "0.01106046",
+ 0.04658219
+ ],
+ [
+ "0.01106054",
+ 0.01404622
+ ],
+ [
+ "0.01107000",
+ 0.08953913
+ ],
+ [
+ "0.01107290",
+ 0.01353714
+ ],
+ [
+ "0.01107547",
+ 0.21700362
+ ],
+ [
+ "0.01108019",
+ 5.01253132
+ ],
+ [
+ "0.01108973",
+ 0.74490566
+ ],
+ [
+ "0.01108979",
+ 210.746
+ ],
+ [
+ "0.01108980",
+ 0.01026208
+ ],
+ [
+ "0.01109000",
+ 0.01329155
+ ],
+ [
+ "0.01109527",
+ 0.01830431
+ ],
+ [
+ "0.01109558",
+ 4.9875
+ ]
+ ],
+ "bids": [
+ [
+ "0.01086991",
+ 4.52422513
+ ],
+ [
+ "0.01086990",
+ 0.08398054
+ ],
+ [
+ "0.01085138",
+ 0.1145743
+ ],
+ [
+ "0.01085028",
+ 7.125
+ ],
+ [
+ "0.01085000",
+ 72.53101291
+ ],
+ [
+ "0.01084788",
+ 0.15106432
+ ],
+ [
+ "0.01084205",
+ 52.38273012
+ ],
+ [
+ "0.01084204",
+ 0.01433001
+ ],
+ [
+ "0.01083991",
+ 0.0323
+ ],
+ [
+ "0.01083501",
+ 7.72480323
+ ],
+ [
+ "0.01083192",
+ 0.05157812
+ ],
+ [
+ "0.01082740",
+ 0.01375269
+ ],
+ [
+ "0.01082612",
+ 1.012434
+ ],
+ [
+ "0.01082240",
+ 0.01374712
+ ],
+ [
+ "0.01082000",
+ 0.1889159
+ ],
+ [
+ "0.01080831",
+ 50.37
+ ],
+ [
+ "0.01080830",
+ 0.01382319
+ ],
+ [
+ "0.01080824",
+ 0.0323
+ ],
+ [
+ "0.01080701",
+ 0.555
+ ],
+ [
+ "0.01080698",
+ 0.165
+ ],
+ [
+ "0.01080670",
+ 4.16190881
+ ],
+ [
+ "0.01080560",
+ 0.01377585
+ ],
+ [
+ "0.01079702",
+ 146.76028561
+ ],
+ [
+ "0.01079701",
+ 497.16
+ ],
+ [
+ "0.01079613",
+ 9.77
+ ],
+ [
+ "0.01079500",
+ 0.03233627
+ ],
+ [
+ "0.01079000",
+ 0.56624022
+ ],
+ [
+ "0.01078951",
+ 0.01187171
+ ],
+ [
+ "0.01078796",
+ 0.01440185
+ ],
+ [
+ "0.01078733",
+ 0.02321905
+ ],
+ [
+ "0.01078675",
+ 5.10102765
+ ],
+ [
+ "0.01078674",
+ 0.2
+ ],
+ [
+ "0.01078289",
+ 0.0349632
+ ],
+ [
+ "0.01078102",
+ 0.0101
+ ],
+ [
+ "0.01077950",
+ 0.01428874
+ ],
+ [
+ "0.01077850",
+ 120.98761144
+ ],
+ [
+ "0.01077790",
+ 0.01420192
+ ],
+ [
+ "0.01077688",
+ 0.01312173
+ ],
+ [
+ "0.01077630",
+ 0.01433467
+ ],
+ [
+ "0.01077440",
+ 0.01423717
+ ],
+ [
+ "0.01077401",
+ 0.01052533
+ ],
+ [
+ "0.01076460",
+ 0.01422698
+ ],
+ [
+ "0.01076327",
+ 2.34474921
+ ],
+ [
+ "0.01076310",
+ 0.01420384
+ ],
+ [
+ "0.01075664",
+ 0.42659413
+ ],
+ [
+ "0.01075558",
+ 0.01105659
+ ],
+ [
+ "0.01075461",
+ 243.04
+ ],
+ [
+ "0.01075380",
+ 0.05008624
+ ],
+ [
+ "0.01075310",
+ 500.9246824
+ ],
+ [
+ "0.01075307",
+ 3.77
+ ]
+ ],
+ "isFrozen": "0",
+ "seq": 445571843
+ },
+ "queryString": "command=returnOrderBook\u0026currencyPair=BTC_XMR\u0026depth=50",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {
+ "Key": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": {
+ "BTC_BCN": {
+ "BTC": "2.10597417",
+ "BCN": "18580513.78451419"
+ },
+ "BTC_BTS": {
+ "BTC": "11.31814868",
+ "BTS": "1422525.76536768"
+ },
+ "BTC_CLAM": {
+ "BTC": "2.91928382",
+ "CLAM": "5008.88307610"
+ },
+ "BTC_DASH": {
+ "BTC": "121.56922496",
+ "DASH": "6476.07273599"
+ },
+ "BTC_DGB": {
+ "BTC": "16.15966014",
+ "DGB": "9761759.50030071"
+ },
+ "BTC_DOGE": {
+ "BTC": "19.98598120",
+ "DOGE": "52317925.99866673"
+ },
+ "BTC_GAME": {
+ "BTC": "3.82370347",
+ "GAME": "300446.22176630"
+ },
+ "BTC_LTC": {
+ "BTC": "666.94447027",
+ "LTC": "42339.40507638"
+ },
+ "BTC_MAID": {
+ "BTC": "2.56267002",
+ "MAID": "107646.79242367"
+ },
+ "BTC_OMNI": {
+ "BTC": "0.20882002",
+ "OMNI": "732.64551893"
+ },
+ "BTC_NAV": {
+ "BTC": "0.85599154",
+ "NAV": "30239.29066641"
+ },
+ "BTC_NXT": {
+ "BTC": "1.64399713",
+ "NXT": "360674.76672284"
+ },
+ "BTC_STR": {
+ "BTC": "29.15587511",
+ "STR": "1887833.72135812"
+ },
+ "BTC_VIA": {
+ "BTC": "6.00937608",
+ "VIA": "82838.51366051"
+ },
+ "BTC_VTC": {
+ "BTC": "8.10964192",
+ "VTC": "118741.18466855"
+ },
+ "BTC_XEM": {
+ "BTC": "11.47584618",
+ "XEM": "1080591.66263058"
+ },
+ "BTC_XMR": {
+ "BTC": "42.01213244",
+ "XMR": "3857.26226555"
+ },
+ "BTC_XPM": {
+ "BTC": "0.71263628",
+ "XPM": "24729.03795341"
+ },
+ "BTC_XRP": {
+ "BTC": "201.36631863",
+ "XRP": "4023790.64131056"
+ },
+ "USDT_BTC": {
+ "USDT": "4421897.17330826",
+ "BTC": "561.77921782"
+ },
+ "USDT_DASH": {
+ "USDT": "163148.07688044",
+ "DASH": "1097.22131727"
+ },
+ "USDT_LTC": {
+ "USDT": "1316866.42418109",
+ "LTC": "10573.16167640"
+ },
+ "USDT_NXT": {
+ "USDT": "10352.62135341",
+ "NXT": "287419.90703917"
+ },
+ "USDT_STR": {
+ "USDT": "119159.96377689",
+ "STR": "975973.89241271"
+ },
+ "USDT_XMR": {
+ "USDT": "44311.82773756",
+ "XMR": "513.51239329"
+ },
+ "USDT_XRP": {
+ "USDT": "628653.50566678",
+ "XRP": "1590094.01666263"
+ },
+ "XMR_BCN": {
+ "XMR": "0.16285090",
+ "BCN": "15121.34000573"
+ },
+ "XMR_DASH": {
+ "XMR": "199.20221390",
+ "DASH": "116.70250730"
+ },
+ "XMR_LTC": {
+ "XMR": "170.93153487",
+ "LTC": "118.22421521"
+ },
+ "XMR_MAID": {
+ "XMR": "11.27396401",
+ "MAID": "5131.12258542"
+ },
+ "XMR_NXT": {
+ "XMR": "1.90717544",
+ "NXT": "4664.12738280"
+ },
+ "BTC_ETH": {
+ "BTC": "155.94348625",
+ "ETH": "5059.54434879"
+ },
+ "USDT_ETH": {
+ "USDT": "883511.34773111",
+ "ETH": "3668.33116661"
+ },
+ "BTC_SC": {
+ "BTC": "1.87511642",
+ "SC": "4769865.10799687"
+ },
+ "BTC_FCT": {
+ "BTC": "10.36741741",
+ "FCT": "13773.13207446"
+ },
+ "BTC_DCR": {
+ "BTC": "2.34160137",
+ "DCR": "684.41654989"
+ },
+ "BTC_LSK": {
+ "BTC": "5.21884194",
+ "LSK": "20377.01855963"
+ },
+ "ETH_LSK": {
+ "ETH": "0.76656131",
+ "LSK": "93.01338152"
+ },
+ "BTC_LBC": {
+ "BTC": "3.00058286",
+ "LBC": "699495.42159049"
+ },
+ "BTC_STEEM": {
+ "BTC": "4.42639165",
+ "STEEM": "85043.49213557"
+ },
+ "ETH_STEEM": {
+ "ETH": "6.47349009",
+ "STEEM": "3859.75860945"
+ },
+ "BTC_ETC": {
+ "BTC": "10.91386394",
+ "ETC": "10520.96374951"
+ },
+ "ETH_ETC": {
+ "ETH": "50.23223183",
+ "ETC": "1477.91871918"
+ },
+ "USDT_ETC": {
+ "USDT": "143484.54569522",
+ "ETC": "17511.35515526"
+ },
+ "BTC_REP": {
+ "BTC": "3.58890958",
+ "REP": "1490.86836755"
+ },
+ "USDT_REP": {
+ "USDT": "21917.80239715",
+ "REP": "1157.81116881"
+ },
+ "ETH_REP": {
+ "ETH": "43.83047186",
+ "REP": "566.61066154"
+ },
+ "BTC_ARDR": {
+ "BTC": "3.03108905",
+ "ARDR": "238083.87187020"
+ },
+ "BTC_ZEC": {
+ "BTC": "6.83567402",
+ "ZEC": "679.67342401"
+ },
+ "ETH_ZEC": {
+ "ETH": "20.70785072",
+ "ZEC": "63.08405800"
+ },
+ "USDT_ZEC": {
+ "USDT": "22621.88453883",
+ "ZEC": "285.13456697"
+ },
+ "XMR_ZEC": {
+ "XMR": "18.27667017",
+ "ZEC": "19.92803337"
+ },
+ "BTC_STRAT": {
+ "BTC": "3.69185582",
+ "STRAT": "30477.03971572"
+ },
+ "BTC_PASC": {
+ "BTC": "1.25124963",
+ "PASC": "45122.06215166"
+ },
+ "BTC_GNT": {
+ "BTC": "4.93328876",
+ "GNT": "404745.01492216"
+ },
+ "ETH_GNT": {
+ "ETH": "33.26795789",
+ "GNT": "85767.44098332"
+ },
+ "BTC_ZRX": {
+ "BTC": "2.07845804",
+ "ZRX": "49776.28138902"
+ },
+ "ETH_ZRX": {
+ "ETH": "22.37346857",
+ "ZRX": "16548.11602204"
+ },
+ "BTC_CVC": {
+ "BTC": "0.75331703",
+ "CVC": "68777.88900435"
+ },
+ "ETH_CVC": {
+ "ETH": "7.76889158",
+ "CVC": "22217.14581100"
+ },
+ "BTC_OMG": {
+ "BTC": "1.25616463",
+ "OMG": "4963.85040878"
+ },
+ "ETH_OMG": {
+ "ETH": "8.05512623",
+ "OMG": "971.21438737"
+ },
+ "BTC_GAS": {
+ "BTC": "0.77232780",
+ "GAS": "1916.80182489"
+ },
+ "ETH_GAS": {
+ "ETH": "3.04307877",
+ "GAS": "227.12349806"
+ },
+ "BTC_STORJ": {
+ "BTC": "0.59303686",
+ "STORJ": "16796.76970761"
+ },
+ "BTC_EOS": {
+ "BTC": "18.59593565",
+ "EOS": "23099.92132301"
+ },
+ "ETH_EOS": {
+ "ETH": "57.85287084",
+ "EOS": "2204.63200411"
+ },
+ "USDT_EOS": {
+ "USDT": "278043.19290915",
+ "EOS": "43736.05905905"
+ },
+ "BTC_SNT": {
+ "BTC": "1.74882337",
+ "SNT": "463292.11309769"
+ },
+ "ETH_SNT": {
+ "ETH": "11.98247233",
+ "SNT": "97344.62846475"
+ },
+ "USDT_SNT": {
+ "USDT": "3314.06637263",
+ "SNT": "111527.99375151"
+ },
+ "BTC_KNC": {
+ "BTC": "1.07605151",
+ "KNC": "31066.52899332"
+ },
+ "ETH_KNC": {
+ "ETH": "3.97445644",
+ "KNC": "3526.69313018"
+ },
+ "USDT_KNC": {
+ "USDT": "3460.19386639",
+ "KNC": "12879.73674180"
+ },
+ "BTC_BAT": {
+ "BTC": "2.13275613",
+ "BAT": "51122.24173657"
+ },
+ "ETH_BAT": {
+ "ETH": "15.19774324",
+ "BAT": "11202.68186565"
+ },
+ "USDT_BAT": {
+ "USDT": "19328.23384182",
+ "BAT": "58700.42769184"
+ },
+ "BTC_LOOM": {
+ "BTC": "5.48711026",
+ "LOOM": "522861.14578247"
+ },
+ "ETH_LOOM": {
+ "ETH": "65.66658897",
+ "LOOM": "193088.49239467"
+ },
+ "USDT_LOOM": {
+ "USDT": "7884.22722657",
+ "LOOM": "94061.17501115"
+ },
+ "USDT_DOGE": {
+ "USDT": "30256.35268923",
+ "DOGE": "10052886.96556405"
+ },
+ "USDT_GNT": {
+ "USDT": "13022.42294546",
+ "GNT": "136510.36772013"
+ },
+ "USDT_LSK": {
+ "USDT": "13223.12589230",
+ "LSK": "6568.77436503"
+ },
+ "USDT_SC": {
+ "USDT": "25558.80796699",
+ "SC": "8307626.97734275"
+ },
+ "USDT_ZRX": {
+ "USDT": "25505.45281006",
+ "ZRX": "78505.36961414"
+ },
+ "BTC_QTUM": {
+ "BTC": "9.94417285",
+ "QTUM": "23898.37003779"
+ },
+ "ETH_QTUM": {
+ "ETH": "19.21848012",
+ "QTUM": "1428.71665478"
+ },
+ "USDT_QTUM": {
+ "USDT": "39682.13887751",
+ "QTUM": "12370.15246589"
+ },
+ "USDC_BTC": {
+ "USDC": "3482664.85806597",
+ "BTC": "441.87385476"
+ },
+ "USDC_ETH": {
+ "USDC": "501153.45720283",
+ "ETH": "2047.00238213"
+ },
+ "USDC_USDT": {
+ "USDC": "57933.50068393",
+ "USDT": "57719.93500183"
+ },
+ "BTC_MANA": {
+ "BTC": "2.70084416",
+ "MANA": "362727.87722537"
+ },
+ "ETH_MANA": {
+ "ETH": "22.07735950",
+ "MANA": "90624.84430328"
+ },
+ "USDT_MANA": {
+ "USDT": "3529.09794786",
+ "MANA": "59699.03615938"
+ },
+ "BTC_BNT": {
+ "BTC": "0.06242819",
+ "BNT": "708.36829451"
+ },
+ "ETH_BNT": {
+ "ETH": "14.29896888",
+ "BNT": "5013.99102334"
+ },
+ "USDT_BNT": {
+ "USDT": "363.53451604",
+ "BNT": "514.58745683"
+ },
+ "BTC_BCHABC": {
+ "BTC": "36.20758372",
+ "BCHABC": "733.46224700"
+ },
+ "USDC_BCHABC": {
+ "USDC": "135429.66946378",
+ "BCHABC": "345.71602989"
+ },
+ "BTC_BCHSV": {
+ "BTC": "107.87823714",
+ "BCHSV": "4528.05891976"
+ },
+ "USDC_BCHSV": {
+ "USDC": "219303.91833302",
+ "BCHSV": "1158.73869926"
+ },
+ "USDC_XRP": {
+ "USDC": "199920.97825116",
+ "XRP": "501260.01445723"
+ },
+ "USDC_XMR": {
+ "USDC": "99062.18940901",
+ "XMR": "1147.67641269"
+ },
+ "USDC_STR": {
+ "USDC": "21935.95722630",
+ "STR": "178840.89704069"
+ },
+ "USDC_DOGE": {
+ "USDC": "2750.23843586",
+ "DOGE": "907350.09402904"
+ },
+ "USDC_LTC": {
+ "USDC": "566449.26199652",
+ "LTC": "4496.10093795"
+ },
+ "USDC_ZEC": {
+ "USDC": "18301.41164199",
+ "ZEC": "229.40589669"
+ },
+ "BTC_FOAM": {
+ "BTC": "0.89731724",
+ "FOAM": "166155.79008468"
+ },
+ "USDC_FOAM": {
+ "USDC": "722.65429834",
+ "FOAM": "16885.98552482"
+ },
+ "BTC_NMR": {
+ "BTC": "1.64609151",
+ "NMR": "1912.03148904"
+ },
+ "BTC_POLY": {
+ "BTC": "1.91462892",
+ "POLY": "152996.00496795"
+ },
+ "BTC_LPT": {
+ "BTC": "2.49829681",
+ "LPT": "4080.23729692"
+ },
+ "BTC_GRIN": {
+ "BTC": "24.37429922",
+ "GRIN": "62838.47716938"
+ },
+ "USDC_GRIN": {
+ "USDC": "23814.63241472",
+ "GRIN": "7937.02292983"
+ },
+ "BTC_ATOM": {
+ "BTC": "39.67100725",
+ "ATOM": "52381.46699854"
+ },
+ "USDC_ATOM": {
+ "USDC": "8589.72151742",
+ "ATOM": "1435.15971856"
+ },
+ "USDT_ATOM": {
+ "USDT": "125149.60868108",
+ "ATOM": "21087.06757208"
+ },
+ "totalBTC": "1628.64800905",
+ "totalETH": "406.78806917",
+ "totalUSDC": "5338032.44894085",
+ "totalUSDT": "8364245.62980983",
+ "totalXMR": "401.75440929",
+ "totalXUSD": "0.00000000"
+ },
+ "queryString": "command=return24hVolume",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {
+ "Key": [
+ ""
+ ]
+ }
+ },
+ {
+ "data": {
+ "BTC_BCN": {
+ "id": 7,
+ "last": "0.00000012",
+ "lowestAsk": "0.00000012",
+ "highestBid": "0.00000011",
+ "percentChange": "0.00000000",
+ "baseVolume": "2.10597417",
+ "quoteVolume": "18580513.78451419",
+ "isFrozen": "0",
+ "high24hr": "0.00000012",
+ "low24hr": "0.00000011"
+ },
+ "BTC_BTS": {
+ "id": 14,
+ "last": "0.00000770",
+ "lowestAsk": "0.00000771",
+ "highestBid": "0.00000770",
+ "percentChange": "-0.00900900",
+ "baseVolume": "11.31814868",
+ "quoteVolume": "1422525.76536768",
+ "isFrozen": "0",
+ "high24hr": "0.00000804",
+ "low24hr": "0.00000764"
+ },
+ "BTC_CLAM": {
+ "id": 20,
+ "last": "0.00058833",
+ "lowestAsk": "0.00059410",
+ "highestBid": "0.00058663",
+ "percentChange": "0.00896930",
+ "baseVolume": "2.91928382",
+ "quoteVolume": "5008.88307610",
+ "isFrozen": "0",
+ "high24hr": "0.00060427",
+ "low24hr": "0.00056130"
+ },
+ "BTC_DASH": {
+ "id": 24,
+ "last": "0.01880000",
+ "lowestAsk": "0.01880610",
+ "highestBid": "0.01880000",
+ "percentChange": "-0.00407587",
+ "baseVolume": "121.56922496",
+ "quoteVolume": "6476.07273599",
+ "isFrozen": "0",
+ "high24hr": "0.01901934",
+ "low24hr": "0.01830550"
+ },
+ "BTC_DGB": {
+ "id": 25,
+ "last": "0.00000162",
+ "lowestAsk": "0.00000164",
+ "highestBid": "0.00000162",
+ "percentChange": "-0.04142011",
+ "baseVolume": "16.15966014",
+ "quoteVolume": "9761759.50030071",
+ "isFrozen": "0",
+ "high24hr": "0.00000172",
+ "low24hr": "0.00000160"
+ },
+ "BTC_DOGE": {
+ "id": 27,
+ "last": "0.00000039",
+ "lowestAsk": "0.00000039",
+ "highestBid": "0.00000038",
+ "percentChange": "0.02631578",
+ "baseVolume": "19.98598120",
+ "quoteVolume": "52317925.99866673",
+ "isFrozen": "0",
+ "high24hr": "0.00000039",
+ "low24hr": "0.00000038"
+ },
+ "BTC_GAME": {
+ "id": 38,
+ "last": "0.00001153",
+ "lowestAsk": "0.00001176",
+ "highestBid": "0.00001154",
+ "percentChange": "-0.00945017",
+ "baseVolume": "3.82370347",
+ "quoteVolume": "300446.22176630",
+ "isFrozen": "0",
+ "high24hr": "0.00001391",
+ "low24hr": "0.00001128"
+ },
+ "BTC_LTC": {
+ "id": 50,
+ "last": "0.01617495",
+ "lowestAsk": "0.01617366",
+ "highestBid": "0.01613601",
+ "percentChange": "0.06261463",
+ "baseVolume": "666.94447027",
+ "quoteVolume": "42339.40507638",
+ "isFrozen": "0",
+ "high24hr": "0.01630000",
+ "low24hr": "0.01497000"
+ },
+ "BTC_MAID": {
+ "id": 51,
+ "last": "0.00002364",
+ "lowestAsk": "0.00002364",
+ "highestBid": "0.00002362",
+ "percentChange": "-0.03194103",
+ "baseVolume": "2.56267002",
+ "quoteVolume": "107646.79242367",
+ "isFrozen": "0",
+ "high24hr": "0.00002442",
+ "low24hr": "0.00002351"
+ },
+ "BTC_OMNI": {
+ "id": 58,
+ "last": "0.00028837",
+ "lowestAsk": "0.00028798",
+ "highestBid": "0.00027236",
+ "percentChange": "0.00215464",
+ "baseVolume": "0.20882002",
+ "quoteVolume": "732.64551893",
+ "isFrozen": "0",
+ "high24hr": "0.00029480",
+ "low24hr": "0.00027000"
+ },
+ "BTC_NAV": {
+ "id": 61,
+ "last": "0.00002838",
+ "lowestAsk": "0.00002850",
+ "highestBid": "0.00002824",
+ "percentChange": "0.03728070",
+ "baseVolume": "0.85599154",
+ "quoteVolume": "30239.29066641",
+ "isFrozen": "0",
+ "high24hr": "0.00002880",
+ "low24hr": "0.00002736"
+ },
+ "BTC_NXT": {
+ "id": 69,
+ "last": "0.00000454",
+ "lowestAsk": "0.00000455",
+ "highestBid": "0.00000453",
+ "percentChange": "-0.01731601",
+ "baseVolume": "1.64399713",
+ "quoteVolume": "360674.76672284",
+ "isFrozen": "0",
+ "high24hr": "0.00000466",
+ "low24hr": "0.00000450"
+ },
+ "BTC_STR": {
+ "id": 89,
+ "last": "0.00001537",
+ "lowestAsk": "0.00001537",
+ "highestBid": "0.00001533",
+ "percentChange": "-0.00646412",
+ "baseVolume": "29.15587511",
+ "quoteVolume": "1887833.72135812",
+ "isFrozen": "0",
+ "high24hr": "0.00001571",
+ "low24hr": "0.00001532"
+ },
+ "BTC_VIA": {
+ "id": 97,
+ "last": "0.00007259",
+ "lowestAsk": "0.00007261",
+ "highestBid": "0.00007216",
+ "percentChange": "0.02862406",
+ "baseVolume": "6.00937608",
+ "quoteVolume": "82838.51366051",
+ "isFrozen": "0",
+ "high24hr": "0.00007528",
+ "low24hr": "0.00007013"
+ },
+ "BTC_VTC": {
+ "id": 100,
+ "last": "0.00006767",
+ "lowestAsk": "0.00006769",
+ "highestBid": "0.00006727",
+ "percentChange": "-0.00907892",
+ "baseVolume": "8.10964192",
+ "quoteVolume": "118741.18466855",
+ "isFrozen": "0",
+ "high24hr": "0.00006995",
+ "low24hr": "0.00006620"
+ },
+ "BTC_XEM": {
+ "id": 112,
+ "last": "0.00001060",
+ "lowestAsk": "0.00001063",
+ "highestBid": "0.00001058",
+ "percentChange": "-0.01303538",
+ "baseVolume": "11.47584618",
+ "quoteVolume": "1080591.66263058",
+ "isFrozen": "0",
+ "high24hr": "0.00001091",
+ "low24hr": "0.00001049"
+ },
+ "BTC_XMR": {
+ "id": 114,
+ "last": "0.01087441",
+ "lowestAsk": "0.01089415",
+ "highestBid": "0.01088305",
+ "percentChange": "-0.00620981",
+ "baseVolume": "42.01213244",
+ "quoteVolume": "3857.26226555",
+ "isFrozen": "0",
+ "high24hr": "0.01102244",
+ "low24hr": "0.01079251"
+ },
+ "BTC_XPM": {
+ "id": 116,
+ "last": "0.00002756",
+ "lowestAsk": "0.00002860",
+ "highestBid": "0.00002756",
+ "percentChange": "-0.04735568",
+ "baseVolume": "0.71263628",
+ "quoteVolume": "24729.03795341",
+ "isFrozen": "0",
+ "high24hr": "0.00002962",
+ "low24hr": "0.00002756"
+ },
+ "BTC_XRP": {
+ "id": 117,
+ "last": "0.00004960",
+ "lowestAsk": "0.00004961",
+ "highestBid": "0.00004960",
+ "percentChange": "-0.02131018",
+ "baseVolume": "201.36631863",
+ "quoteVolume": "4023790.64131056",
+ "isFrozen": "0",
+ "high24hr": "0.00005090",
+ "low24hr": "0.00004933"
+ },
+ "USDT_BTC": {
+ "id": 121,
+ "last": "7938.84630781",
+ "lowestAsk": "7939.11267940",
+ "highestBid": "7934.30612610",
+ "percentChange": "0.04175843",
+ "baseVolume": "4421897.17330826",
+ "quoteVolume": "561.77921782",
+ "isFrozen": "0",
+ "high24hr": "8010.00000000",
+ "low24hr": "7594.72485562"
+ },
+ "USDT_DASH": {
+ "id": 122,
+ "last": "149.00000000",
+ "lowestAsk": "149.49998944",
+ "highestBid": "148.18792540",
+ "percentChange": "0.03081761",
+ "baseVolume": "163148.07688044",
+ "quoteVolume": "1097.22131727",
+ "isFrozen": "0",
+ "high24hr": "151.49790691",
+ "low24hr": "141.36289327"
+ },
+ "USDT_LTC": {
+ "id": 123,
+ "last": "128.29999999",
+ "lowestAsk": "128.29999899",
+ "highestBid": "127.31927721",
+ "percentChange": "0.10600510",
+ "baseVolume": "1316866.42418109",
+ "quoteVolume": "10573.16167640",
+ "isFrozen": "0",
+ "high24hr": "129.80000000",
+ "low24hr": "114.19423572"
+ },
+ "USDT_NXT": {
+ "id": 124,
+ "last": "0.03564433",
+ "lowestAsk": "0.03661779",
+ "highestBid": "0.03565562",
+ "percentChange": "0.01783769",
+ "baseVolume": "10352.62135341",
+ "quoteVolume": "287419.90703917",
+ "isFrozen": "0",
+ "high24hr": "0.03725000",
+ "low24hr": "0.03465000"
+ },
+ "USDT_STR": {
+ "id": 125,
+ "last": "0.12153229",
+ "lowestAsk": "0.12192981",
+ "highestBid": "0.12155670",
+ "percentChange": "0.02869133",
+ "baseVolume": "119159.96377689",
+ "quoteVolume": "975973.89241271",
+ "isFrozen": "0",
+ "high24hr": "0.12367652",
+ "low24hr": "0.11783976"
+ },
+ "USDT_XMR": {
+ "id": 126,
+ "last": "86.80322950",
+ "lowestAsk": "86.63121390",
+ "highestBid": "86.01288637",
+ "percentChange": "0.03842924",
+ "baseVolume": "44311.82773756",
+ "quoteVolume": "513.51239329",
+ "isFrozen": "0",
+ "high24hr": "87.30000000",
+ "low24hr": "83.20226300"
+ },
+ "USDT_XRP": {
+ "id": 127,
+ "last": "0.39377688",
+ "lowestAsk": "0.39377649",
+ "highestBid": "0.39152696",
+ "percentChange": "0.01987867",
+ "baseVolume": "628653.50566678",
+ "quoteVolume": "1590094.01666263",
+ "isFrozen": "0",
+ "high24hr": "0.40300000",
+ "low24hr": "0.38130000"
+ },
+ "XMR_BCN": {
+ "id": 129,
+ "last": "0.00001085",
+ "lowestAsk": "0.00001085",
+ "highestBid": "0.00001077",
+ "percentChange": "0.00370027",
+ "baseVolume": "0.16285090",
+ "quoteVolume": "15121.34000573",
+ "isFrozen": "0",
+ "high24hr": "0.00001086",
+ "low24hr": "0.00001076"
+ },
+ "XMR_DASH": {
+ "id": 132,
+ "last": "1.71734933",
+ "lowestAsk": "1.72597923",
+ "highestBid": "1.70985983",
+ "percentChange": "-0.00135971",
+ "baseVolume": "199.20221390",
+ "quoteVolume": "116.70250730",
+ "isFrozen": "0",
+ "high24hr": "1.74792000",
+ "low24hr": "1.69000000"
+ },
+ "XMR_LTC": {
+ "id": 137,
+ "last": "1.47455980",
+ "lowestAsk": "1.48934226",
+ "highestBid": "1.47456588",
+ "percentChange": "0.06048168",
+ "baseVolume": "170.93153487",
+ "quoteVolume": "118.22421521",
+ "isFrozen": "0",
+ "high24hr": "1.49999000",
+ "low24hr": "1.37511020"
+ },
+ "XMR_MAID": {
+ "id": 138,
+ "last": "0.00215539",
+ "lowestAsk": "0.00218535",
+ "highestBid": "0.00215074",
+ "percentChange": "-0.01503907",
+ "baseVolume": "11.27396401",
+ "quoteVolume": "5131.12258542",
+ "isFrozen": "0",
+ "high24hr": "0.00219909",
+ "low24hr": "0.00215539"
+ },
+ "XMR_NXT": {
+ "id": 140,
+ "last": "0.00040927",
+ "lowestAsk": "0.00041471",
+ "highestBid": "0.00040892",
+ "percentChange": "-0.02296545",
+ "baseVolume": "1.90717544",
+ "quoteVolume": "4664.12738280",
+ "isFrozen": "0",
+ "high24hr": "0.00042734",
+ "low24hr": "0.00040123"
+ },
+ "BTC_ETH": {
+ "id": 148,
+ "last": "0.03079500",
+ "lowestAsk": "0.03081459",
+ "highestBid": "0.03079004",
+ "percentChange": "0.00818332",
+ "baseVolume": "155.94348625",
+ "quoteVolume": "5059.54434879",
+ "isFrozen": "0",
+ "high24hr": "0.03119996",
+ "low24hr": "0.03042230"
+ },
+ "USDT_ETH": {
+ "id": 149,
+ "last": "243.56443038",
+ "lowestAsk": "244.56399997",
+ "highestBid": "243.60640010",
+ "percentChange": "0.04452331",
+ "baseVolume": "883511.34773111",
+ "quoteVolume": "3668.33116661",
+ "isFrozen": "0",
+ "high24hr": "247.86593850",
+ "low24hr": "232.63838377"
+ },
+ "BTC_SC": {
+ "id": 150,
+ "last": "0.00000039",
+ "lowestAsk": "0.00000040",
+ "highestBid": "0.00000039",
+ "percentChange": "0.00000000",
+ "baseVolume": "1.87511642",
+ "quoteVolume": "4769865.10799687",
+ "isFrozen": "0",
+ "high24hr": "0.00000040",
+ "low24hr": "0.00000039"
+ },
+ "BTC_FCT": {
+ "id": 155,
+ "last": "0.00073952",
+ "lowestAsk": "0.00074498",
+ "highestBid": "0.00073982",
+ "percentChange": "-0.02689615",
+ "baseVolume": "10.36741741",
+ "quoteVolume": "13773.13207446",
+ "isFrozen": "0",
+ "high24hr": "0.00078617",
+ "low24hr": "0.00072961"
+ },
+ "BTC_DCR": {
+ "id": 162,
+ "last": "0.00346266",
+ "lowestAsk": "0.00346266",
+ "highestBid": "0.00343891",
+ "percentChange": "0.00119414",
+ "baseVolume": "2.34160137",
+ "quoteVolume": "684.41654989",
+ "isFrozen": "0",
+ "high24hr": "0.00350651",
+ "low24hr": "0.00336074"
+ },
+ "BTC_LSK": {
+ "id": 163,
+ "last": "0.00025799",
+ "lowestAsk": "0.00025836",
+ "highestBid": "0.00025678",
+ "percentChange": "0.02907857",
+ "baseVolume": "5.21884194",
+ "quoteVolume": "20377.01855963",
+ "isFrozen": "0",
+ "high24hr": "0.00026000",
+ "low24hr": "0.00024928"
+ },
+ "ETH_LSK": {
+ "id": 166,
+ "last": "0.00836598",
+ "lowestAsk": "0.00841578",
+ "highestBid": "0.00828726",
+ "percentChange": "0.02650061",
+ "baseVolume": "0.76656131",
+ "quoteVolume": "93.01338152",
+ "isFrozen": "0",
+ "high24hr": "0.00849344",
+ "low24hr": "0.00815000"
+ },
+ "BTC_LBC": {
+ "id": 167,
+ "last": "0.00000437",
+ "lowestAsk": "0.00000445",
+ "highestBid": "0.00000438",
+ "percentChange": "0.01627906",
+ "baseVolume": "3.00058286",
+ "quoteVolume": "699495.42159049",
+ "isFrozen": "0",
+ "high24hr": "0.00000459",
+ "low24hr": "0.00000411"
+ },
+ "BTC_STEEM": {
+ "id": 168,
+ "last": "0.00005167",
+ "lowestAsk": "0.00005160",
+ "highestBid": "0.00005127",
+ "percentChange": "-0.01449551",
+ "baseVolume": "4.42639165",
+ "quoteVolume": "85043.49213557",
+ "isFrozen": "0",
+ "high24hr": "0.00005363",
+ "low24hr": "0.00005040"
+ },
+ "ETH_STEEM": {
+ "id": 169,
+ "last": "0.00167610",
+ "lowestAsk": "0.00168151",
+ "highestBid": "0.00166580",
+ "percentChange": "-0.03115606",
+ "baseVolume": "6.47349009",
+ "quoteVolume": "3859.75860945",
+ "isFrozen": "0",
+ "high24hr": "0.00175423",
+ "low24hr": "0.00165255"
+ },
+ "BTC_ETC": {
+ "id": 171,
+ "last": "0.00102820",
+ "lowestAsk": "0.00103251",
+ "highestBid": "0.00102764",
+ "percentChange": "-0.02908404",
+ "baseVolume": "10.91386394",
+ "quoteVolume": "10520.96374951",
+ "isFrozen": "0",
+ "high24hr": "0.00106777",
+ "low24hr": "0.00102551"
+ },
+ "ETH_ETC": {
+ "id": 172,
+ "last": "0.03342225",
+ "lowestAsk": "0.03345178",
+ "highestBid": "0.03340000",
+ "percentChange": "-0.03665230",
+ "baseVolume": "50.23223183",
+ "quoteVolume": "1477.91871918",
+ "isFrozen": "0",
+ "high24hr": "0.03469387",
+ "low24hr": "0.03342225"
+ },
+ "USDT_ETC": {
+ "id": 173,
+ "last": "8.15001414",
+ "lowestAsk": "8.17000000",
+ "highestBid": "8.15001491",
+ "percentChange": "0.01628235",
+ "baseVolume": "143484.54569522",
+ "quoteVolume": "17511.35515526",
+ "isFrozen": "0",
+ "high24hr": "8.38997233",
+ "low24hr": "7.88066582"
+ },
+ "BTC_REP": {
+ "id": 174,
+ "last": "0.00238110",
+ "lowestAsk": "0.00238013",
+ "highestBid": "0.00236841",
+ "percentChange": "0.00882953",
+ "baseVolume": "3.58890958",
+ "quoteVolume": "1490.86836755",
+ "isFrozen": "0",
+ "high24hr": "0.00249520",
+ "low24hr": "0.00233000"
+ },
+ "USDT_REP": {
+ "id": 175,
+ "last": "18.81359647",
+ "lowestAsk": "18.81359647",
+ "highestBid": "18.73413490",
+ "percentChange": "0.04529910",
+ "baseVolume": "21917.80239715",
+ "quoteVolume": "1157.81116881",
+ "isFrozen": "0",
+ "high24hr": "19.50000000",
+ "low24hr": "18.07435000"
+ },
+ "ETH_REP": {
+ "id": 176,
+ "last": "0.07729862",
+ "lowestAsk": "0.07729862",
+ "highestBid": "0.07691404",
+ "percentChange": "0.00550880",
+ "baseVolume": "43.83047186",
+ "quoteVolume": "566.61066154",
+ "isFrozen": "0",
+ "high24hr": "0.08044678",
+ "low24hr": "0.07610657"
+ },
+ "BTC_ARDR": {
+ "id": 177,
+ "last": "0.00001248",
+ "lowestAsk": "0.00001252",
+ "highestBid": "0.00001248",
+ "percentChange": "-0.01732283",
+ "baseVolume": "3.03108905",
+ "quoteVolume": "238083.87187020",
+ "isFrozen": "0",
+ "high24hr": "0.00001333",
+ "low24hr": "0.00001220"
+ },
+ "BTC_ZEC": {
+ "id": 178,
+ "last": "0.00990515",
+ "lowestAsk": "0.00993296",
+ "highestBid": "0.00990500",
+ "percentChange": "-0.02472465",
+ "baseVolume": "6.83567402",
+ "quoteVolume": "679.67342401",
+ "isFrozen": "0",
+ "high24hr": "0.01024922",
+ "low24hr": "0.00990501"
+ },
+ "ETH_ZEC": {
+ "id": 179,
+ "last": "0.32250027",
+ "lowestAsk": "0.32473808",
+ "highestBid": "0.32237743",
+ "percentChange": "-0.03832020",
+ "baseVolume": "20.70785072",
+ "quoteVolume": "63.08405800",
+ "isFrozen": "0",
+ "high24hr": "0.33600013",
+ "low24hr": "0.32250027"
+ },
+ "USDT_ZEC": {
+ "id": 180,
+ "last": "78.59493101",
+ "lowestAsk": "79.24350590",
+ "highestBid": "78.59493102",
+ "percentChange": "0.01370161",
+ "baseVolume": "22621.88453883",
+ "quoteVolume": "285.13456697",
+ "isFrozen": "0",
+ "high24hr": "81.19999999",
+ "low24hr": "77.53260899"
+ },
+ "XMR_ZEC": {
+ "id": 181,
+ "last": "0.91217810",
+ "lowestAsk": "0.91363635",
+ "highestBid": "0.90478668",
+ "percentChange": "-0.01510586",
+ "baseVolume": "18.27667017",
+ "quoteVolume": "19.92803337",
+ "isFrozen": "0",
+ "high24hr": "0.93682194",
+ "low24hr": "0.90298672"
+ },
+ "BTC_STRAT": {
+ "id": 182,
+ "last": "0.00011859",
+ "lowestAsk": "0.00011955",
+ "highestBid": "0.00011869",
+ "percentChange": "-0.04006799",
+ "baseVolume": "3.69185582",
+ "quoteVolume": "30477.03971572",
+ "isFrozen": "0",
+ "high24hr": "0.00012497",
+ "low24hr": "0.00011892"
+ },
+ "BTC_PASC": {
+ "id": 184,
+ "last": "0.00002812",
+ "lowestAsk": "0.00002815",
+ "highestBid": "0.00002814",
+ "percentChange": "-0.01678321",
+ "baseVolume": "1.25124963",
+ "quoteVolume": "45122.06215166",
+ "isFrozen": "0",
+ "high24hr": "0.00002870",
+ "low24hr": "0.00002670"
+ },
+ "BTC_GNT": {
+ "id": 185,
+ "last": "0.00001257",
+ "lowestAsk": "0.00001266",
+ "highestBid": "0.00001260",
+ "percentChange": "0.06887755",
+ "baseVolume": "4.93328876",
+ "quoteVolume": "404745.01492216",
+ "isFrozen": "0",
+ "high24hr": "0.00001291",
+ "low24hr": "0.00001152"
+ },
+ "ETH_GNT": {
+ "id": 186,
+ "last": "0.00040752",
+ "lowestAsk": "0.00041263",
+ "highestBid": "0.00040681",
+ "percentChange": "0.05777916",
+ "baseVolume": "33.26795789",
+ "quoteVolume": "85767.44098332",
+ "isFrozen": "0",
+ "high24hr": "0.00041473",
+ "low24hr": "0.00037826"
+ },
+ "BTC_ZRX": {
+ "id": 192,
+ "last": "0.00004091",
+ "lowestAsk": "0.00004091",
+ "highestBid": "0.00004080",
+ "percentChange": "-0.00559066",
+ "baseVolume": "2.07845804",
+ "quoteVolume": "49776.28138902",
+ "isFrozen": "0",
+ "high24hr": "0.00004218",
+ "low24hr": "0.00004081"
+ },
+ "ETH_ZRX": {
+ "id": 193,
+ "last": "0.00132759",
+ "lowestAsk": "0.00132744",
+ "highestBid": "0.00132743",
+ "percentChange": "-0.01595125",
+ "baseVolume": "22.37346857",
+ "quoteVolume": "16548.11602204",
+ "isFrozen": "0",
+ "high24hr": "0.00137937",
+ "low24hr": "0.00132759"
+ },
+ "BTC_CVC": {
+ "id": 194,
+ "last": "0.00001081",
+ "lowestAsk": "0.00001081",
+ "highestBid": "0.00001074",
+ "percentChange": "0.01217228",
+ "baseVolume": "0.75331703",
+ "quoteVolume": "68777.88900435",
+ "isFrozen": "0",
+ "high24hr": "0.00001123",
+ "low24hr": "0.00001070"
+ },
+ "ETH_CVC": {
+ "id": 195,
+ "last": "0.00034931",
+ "lowestAsk": "0.00035104",
+ "highestBid": "0.00034931",
+ "percentChange": "-0.00498490",
+ "baseVolume": "7.76889158",
+ "quoteVolume": "22217.14581100",
+ "isFrozen": "0",
+ "high24hr": "0.00036357",
+ "low24hr": "0.00034633"
+ },
+ "BTC_OMG": {
+ "id": 196,
+ "last": "0.00025135",
+ "lowestAsk": "0.00025240",
+ "highestBid": "0.00025135",
+ "percentChange": "0.00741482",
+ "baseVolume": "1.25616463",
+ "quoteVolume": "4963.85040878",
+ "isFrozen": "0",
+ "high24hr": "0.00026071",
+ "low24hr": "0.00024544"
+ },
+ "ETH_OMG": {
+ "id": 197,
+ "last": "0.00823187",
+ "lowestAsk": "0.00820725",
+ "highestBid": "0.00816185",
+ "percentChange": "0.01803604",
+ "baseVolume": "8.05512623",
+ "quoteVolume": "971.21438737",
+ "isFrozen": "0",
+ "high24hr": "0.00850000",
+ "low24hr": "0.00812951"
+ },
+ "BTC_GAS": {
+ "id": 198,
+ "last": "0.00039654",
+ "lowestAsk": "0.00039595",
+ "highestBid": "0.00038985",
+ "percentChange": "-0.00284155",
+ "baseVolume": "0.77232780",
+ "quoteVolume": "1916.80182489",
+ "isFrozen": "0",
+ "high24hr": "0.00041046",
+ "low24hr": "0.00038985"
+ },
+ "ETH_GAS": {
+ "id": 199,
+ "last": "0.01300000",
+ "lowestAsk": "0.01309755",
+ "highestBid": "0.01262073",
+ "percentChange": "-0.01555871",
+ "baseVolume": "3.04307877",
+ "quoteVolume": "227.12349806",
+ "isFrozen": "0",
+ "high24hr": "0.01390000",
+ "low24hr": "0.01271658"
+ },
+ "BTC_STORJ": {
+ "id": 200,
+ "last": "0.00003506",
+ "lowestAsk": "0.00003515",
+ "highestBid": "0.00003506",
+ "percentChange": "0.00228702",
+ "baseVolume": "0.59303686",
+ "quoteVolume": "16796.76970761",
+ "isFrozen": "0",
+ "high24hr": "0.00003583",
+ "low24hr": "0.00003460"
+ },
+ "BTC_EOS": {
+ "id": 201,
+ "last": "0.00080185",
+ "lowestAsk": "0.00080171",
+ "highestBid": "0.00080063",
+ "percentChange": "-0.00661554",
+ "baseVolume": "18.59593565",
+ "quoteVolume": "23099.92132301",
+ "isFrozen": "0",
+ "high24hr": "0.00081224",
+ "low24hr": "0.00079800"
+ },
+ "ETH_EOS": {
+ "id": 202,
+ "last": "0.02596528",
+ "lowestAsk": "0.02603759",
+ "highestBid": "0.02596530",
+ "percentChange": "-0.01068667",
+ "baseVolume": "57.85287084",
+ "quoteVolume": "2204.63200411",
+ "isFrozen": "0",
+ "high24hr": "0.02644714",
+ "low24hr": "0.02596528"
+ },
+ "USDT_EOS": {
+ "id": 203,
+ "last": "6.33455816",
+ "lowestAsk": "6.38358433",
+ "highestBid": "6.33676472",
+ "percentChange": "0.01939777",
+ "baseVolume": "278043.19290915",
+ "quoteVolume": "43736.05905905",
+ "isFrozen": "0",
+ "high24hr": "6.49451490",
+ "low24hr": "6.06318315"
+ },
+ "BTC_SNT": {
+ "id": 204,
+ "last": "0.00000380",
+ "lowestAsk": "0.00000381",
+ "highestBid": "0.00000377",
+ "percentChange": "0.01063829",
+ "baseVolume": "1.74882337",
+ "quoteVolume": "463292.11309769",
+ "isFrozen": "0",
+ "high24hr": "0.00000391",
+ "low24hr": "0.00000365"
+ },
+ "ETH_SNT": {
+ "id": 205,
+ "last": "0.00012341",
+ "lowestAsk": "0.00012330",
+ "highestBid": "0.00012281",
+ "percentChange": "-0.00684049",
+ "baseVolume": "11.98247233",
+ "quoteVolume": "97344.62846475",
+ "isFrozen": "0",
+ "high24hr": "0.00012595",
+ "low24hr": "0.00011976"
+ },
+ "USDT_SNT": {
+ "id": 206,
+ "last": "0.03002016",
+ "lowestAsk": "0.03099489",
+ "highestBid": "0.02965894",
+ "percentChange": "0.05260397",
+ "baseVolume": "3314.06637263",
+ "quoteVolume": "111527.99375151",
+ "isFrozen": "0",
+ "high24hr": "0.03099999",
+ "low24hr": "0.02852000"
+ },
+ "BTC_KNC": {
+ "id": 207,
+ "last": "0.00003377",
+ "lowestAsk": "0.00003373",
+ "highestBid": "0.00003333",
+ "percentChange": "-0.00295246",
+ "baseVolume": "1.07605151",
+ "quoteVolume": "31066.52899332",
+ "isFrozen": "0",
+ "high24hr": "0.00003550",
+ "low24hr": "0.00003371"
+ },
+ "ETH_KNC": {
+ "id": 208,
+ "last": "0.00109269",
+ "lowestAsk": "0.00114156",
+ "highestBid": "0.00108615",
+ "percentChange": "-0.02501070",
+ "baseVolume": "3.97445644",
+ "quoteVolume": "3526.69313018",
+ "isFrozen": "0",
+ "high24hr": "0.00115000",
+ "low24hr": "0.00108891"
+ },
+ "USDT_KNC": {
+ "id": 209,
+ "last": "0.26815800",
+ "lowestAsk": "0.27081578",
+ "highestBid": "0.26681722",
+ "percentChange": "0.04138446",
+ "baseVolume": "3460.19386639",
+ "quoteVolume": "12879.73674180",
+ "isFrozen": "0",
+ "high24hr": "0.27487268",
+ "low24hr": "0.24150034"
+ },
+ "BTC_BAT": {
+ "id": 210,
+ "last": "0.00004095",
+ "lowestAsk": "0.00004095",
+ "highestBid": "0.00004088",
+ "percentChange": "-0.02777777",
+ "baseVolume": "2.13275613",
+ "quoteVolume": "51122.24173657",
+ "isFrozen": "0",
+ "high24hr": "0.00004245",
+ "low24hr": "0.00004087"
+ },
+ "ETH_BAT": {
+ "id": 211,
+ "last": "0.00133065",
+ "lowestAsk": "0.00133346",
+ "highestBid": "0.00132716",
+ "percentChange": "-0.03673809",
+ "baseVolume": "15.19774324",
+ "quoteVolume": "11202.68186565",
+ "isFrozen": "0",
+ "high24hr": "0.00138539",
+ "low24hr": "0.00133065"
+ },
+ "USDT_BAT": {
+ "id": 212,
+ "last": "0.32726271",
+ "lowestAsk": "0.32705989",
+ "highestBid": "0.32445561",
+ "percentChange": "0.01806377",
+ "baseVolume": "19328.23384182",
+ "quoteVolume": "58700.42769184",
+ "isFrozen": "0",
+ "high24hr": "0.33689089",
+ "low24hr": "0.32026548"
+ },
+ "BTC_LOOM": {
+ "id": 213,
+ "last": "0.00001042",
+ "lowestAsk": "0.00001048",
+ "highestBid": "0.00001042",
+ "percentChange": "0.03066271",
+ "baseVolume": "5.48711026",
+ "quoteVolume": "522861.14578247",
+ "isFrozen": "0",
+ "high24hr": "0.00001100",
+ "low24hr": "0.00000982"
+ },
+ "ETH_LOOM": {
+ "id": 214,
+ "last": "0.00033930",
+ "lowestAsk": "0.00034802",
+ "highestBid": "0.00033766",
+ "percentChange": "0.02818181",
+ "baseVolume": "65.66658897",
+ "quoteVolume": "193088.49239467",
+ "isFrozen": "0",
+ "high24hr": "0.00035769",
+ "low24hr": "0.00032567"
+ },
+ "USDT_LOOM": {
+ "id": 215,
+ "last": "0.08366370",
+ "lowestAsk": "0.08582526",
+ "highestBid": "0.08138381",
+ "percentChange": "0.10209527",
+ "baseVolume": "7884.22722657",
+ "quoteVolume": "94061.17501115",
+ "isFrozen": "0",
+ "high24hr": "0.08800000",
+ "low24hr": "0.07699900"
+ },
+ "USDT_DOGE": {
+ "id": 216,
+ "last": "0.00303376",
+ "lowestAsk": "0.00304854",
+ "highestBid": "0.00303372",
+ "percentChange": "0.02803427",
+ "baseVolume": "30256.35268923",
+ "quoteVolume": "10052886.96556405",
+ "isFrozen": "0",
+ "high24hr": "0.00305492",
+ "low24hr": "0.00294256"
+ },
+ "USDT_GNT": {
+ "id": 217,
+ "last": "0.09841380",
+ "lowestAsk": "0.10132826",
+ "highestBid": "0.09879707",
+ "percentChange": "0.09122782",
+ "baseVolume": "13022.42294546",
+ "quoteVolume": "136510.36772013",
+ "isFrozen": "0",
+ "high24hr": "0.10259935",
+ "low24hr": "0.08921015"
+ },
+ "USDT_LSK": {
+ "id": 218,
+ "last": "2.04000000",
+ "lowestAsk": "2.04000000",
+ "highestBid": "2.02319825",
+ "percentChange": "0.05997011",
+ "baseVolume": "13223.12589230",
+ "quoteVolume": "6568.77436503",
+ "isFrozen": "0",
+ "high24hr": "2.07878065",
+ "low24hr": "1.90125984"
+ },
+ "USDT_SC": {
+ "id": 219,
+ "last": "0.00310875",
+ "lowestAsk": "0.00315390",
+ "highestBid": "0.00310953",
+ "percentChange": "0.02377361",
+ "baseVolume": "25558.80796699",
+ "quoteVolume": "8307626.97734275",
+ "isFrozen": "0",
+ "high24hr": "0.00315902",
+ "low24hr": "0.00301287"
+ },
+ "USDT_ZRX": {
+ "id": 220,
+ "last": "0.32372110",
+ "lowestAsk": "0.32556376",
+ "highestBid": "0.32372112",
+ "percentChange": "0.02641624",
+ "baseVolume": "25505.45281006",
+ "quoteVolume": "78505.36961414",
+ "isFrozen": "0",
+ "high24hr": "0.33012685",
+ "low24hr": "0.31581054"
+ },
+ "BTC_QTUM": {
+ "id": 221,
+ "last": "0.00039711",
+ "lowestAsk": "0.00039946",
+ "highestBid": "0.00039745",
+ "percentChange": "0.01102398",
+ "baseVolume": "9.94417285",
+ "quoteVolume": "23898.37003779",
+ "isFrozen": "0",
+ "high24hr": "0.00044164",
+ "low24hr": "0.00039430"
+ },
+ "ETH_QTUM": {
+ "id": 222,
+ "last": "0.01279123",
+ "lowestAsk": "0.01292445",
+ "highestBid": "0.01286128",
+ "percentChange": "0.01196680",
+ "baseVolume": "19.21848012",
+ "quoteVolume": "1428.71665478",
+ "isFrozen": "0",
+ "high24hr": "0.01445578",
+ "low24hr": "0.01279123"
+ },
+ "USDT_QTUM": {
+ "id": 223,
+ "last": "3.15643449",
+ "lowestAsk": "3.19643113",
+ "highestBid": "3.15135845",
+ "percentChange": "0.04613305",
+ "baseVolume": "39682.13887751",
+ "quoteVolume": "12370.15246589",
+ "isFrozen": "0",
+ "high24hr": "3.38228600",
+ "low24hr": "3.01724000"
+ },
+ "USDC_BTC": {
+ "id": 224,
+ "last": "7962.50000000",
+ "lowestAsk": "7977.13341202",
+ "highestBid": "7961.71516578",
+ "percentChange": "0.04403385",
+ "baseVolume": "3482664.85806597",
+ "quoteVolume": "441.87385476",
+ "isFrozen": "0",
+ "high24hr": "8077.47999788",
+ "low24hr": "7608.58328444"
+ },
+ "USDC_ETH": {
+ "id": 225,
+ "last": "245.36055774",
+ "lowestAsk": "246.00046378",
+ "highestBid": "245.35955433",
+ "percentChange": "0.05094127",
+ "baseVolume": "501153.45720283",
+ "quoteVolume": "2047.00238213",
+ "isFrozen": "0",
+ "high24hr": "248.44047988",
+ "low24hr": "233.31933799"
+ },
+ "USDC_USDT": {
+ "id": 226,
+ "last": "1.00420002",
+ "lowestAsk": "1.00519997",
+ "highestBid": "1.00420002",
+ "percentChange": "0.00170380",
+ "baseVolume": "57933.50068393",
+ "quoteVolume": "57719.93500183",
+ "isFrozen": "0",
+ "high24hr": "1.00849999",
+ "low24hr": "1.00048874"
+ },
+ "BTC_MANA": {
+ "id": 229,
+ "last": "0.00000745",
+ "lowestAsk": "0.00000743",
+ "highestBid": "0.00000740",
+ "percentChange": "-0.00534045",
+ "baseVolume": "2.70084416",
+ "quoteVolume": "362727.87722537",
+ "isFrozen": "0",
+ "high24hr": "0.00000765",
+ "low24hr": "0.00000734"
+ },
+ "ETH_MANA": {
+ "id": 230,
+ "last": "0.00024138",
+ "lowestAsk": "0.00024135",
+ "highestBid": "0.00024084",
+ "percentChange": "-0.00829909",
+ "baseVolume": "22.07735950",
+ "quoteVolume": "90624.84430328",
+ "isFrozen": "0",
+ "high24hr": "0.00025004",
+ "low24hr": "0.00024027"
+ },
+ "USDT_MANA": {
+ "id": 231,
+ "last": "0.05874674",
+ "lowestAsk": "0.06023530",
+ "highestBid": "0.05875324",
+ "percentChange": "0.02910433",
+ "baseVolume": "3529.09794786",
+ "quoteVolume": "59699.03615938",
+ "isFrozen": "0",
+ "high24hr": "0.06000000",
+ "low24hr": "0.05685000"
+ },
+ "BTC_BNT": {
+ "id": 232,
+ "last": "0.00008844",
+ "lowestAsk": "0.00008843",
+ "highestBid": "0.00008793",
+ "percentChange": "-0.02609844",
+ "baseVolume": "0.06242819",
+ "quoteVolume": "708.36829451",
+ "isFrozen": "0",
+ "high24hr": "0.00009088",
+ "low24hr": "0.00008666"
+ },
+ "ETH_BNT": {
+ "id": 233,
+ "last": "0.00287809",
+ "lowestAsk": "0.00288685",
+ "highestBid": "0.00285346",
+ "percentChange": "0.00985614",
+ "baseVolume": "14.29896888",
+ "quoteVolume": "5013.99102334",
+ "isFrozen": "0",
+ "high24hr": "0.00288000",
+ "low24hr": "0.00284999"
+ },
+ "USDT_BNT": {
+ "id": 234,
+ "last": "0.69821937",
+ "lowestAsk": "0.70982400",
+ "highestBid": "0.69821937",
+ "percentChange": "0.00089890",
+ "baseVolume": "363.53451604",
+ "quoteVolume": "514.58745683",
+ "isFrozen": "0",
+ "high24hr": "0.70982964",
+ "low24hr": "0.68340485"
+ },
+ "BTC_BCHABC": {
+ "id": 236,
+ "last": "0.04900933",
+ "lowestAsk": "0.04904416",
+ "highestBid": "0.04900933",
+ "percentChange": "-0.00782334",
+ "baseVolume": "36.20758372",
+ "quoteVolume": "733.46224700",
+ "isFrozen": "0",
+ "high24hr": "0.05032733",
+ "low24hr": "0.04900932"
+ },
+ "USDC_BCHABC": {
+ "id": 237,
+ "last": "389.35423311",
+ "lowestAsk": "393.59958829",
+ "highestBid": "389.35541111",
+ "percentChange": "0.03548741",
+ "baseVolume": "135429.66946378",
+ "quoteVolume": "345.71602989",
+ "isFrozen": "0",
+ "high24hr": "401.17968999",
+ "low24hr": "376.01059082"
+ },
+ "BTC_BCHSV": {
+ "id": 238,
+ "last": "0.02387932",
+ "lowestAsk": "0.02389139",
+ "highestBid": "0.02375483",
+ "percentChange": "0.00192628",
+ "baseVolume": "107.87823714",
+ "quoteVolume": "4528.05891976",
+ "isFrozen": "0",
+ "high24hr": "0.02449024",
+ "low24hr": "0.02353105"
+ },
+ "USDC_BCHSV": {
+ "id": 239,
+ "last": "188.54622778",
+ "lowestAsk": "190.89997204",
+ "highestBid": "188.54624615",
+ "percentChange": "0.03030725",
+ "baseVolume": "219303.91833302",
+ "quoteVolume": "1158.73869926",
+ "isFrozen": "0",
+ "high24hr": "194.44671873",
+ "low24hr": "180.49999776"
+ },
+ "USDC_XRP": {
+ "id": 240,
+ "last": "0.39275049",
+ "lowestAsk": "0.39644645",
+ "highestBid": "0.39407291",
+ "percentChange": "0.00705997",
+ "baseVolume": "199920.97825116",
+ "quoteVolume": "501260.01445723",
+ "isFrozen": "0",
+ "high24hr": "0.40499909",
+ "low24hr": "0.38130058"
+ },
+ "USDC_XMR": {
+ "id": 241,
+ "last": "87.18629626",
+ "lowestAsk": "87.13843846",
+ "highestBid": "86.23864800",
+ "percentChange": "0.04513660",
+ "baseVolume": "99062.18940901",
+ "quoteVolume": "1147.67641269",
+ "isFrozen": "0",
+ "high24hr": "87.99994711",
+ "low24hr": "83.40045078"
+ },
+ "USDC_STR": {
+ "id": 242,
+ "last": "0.12152532",
+ "lowestAsk": "0.12344054",
+ "highestBid": "0.12186123",
+ "percentChange": "0.02557729",
+ "baseVolume": "21935.95722630",
+ "quoteVolume": "178840.89704069",
+ "isFrozen": "0",
+ "high24hr": "0.12485687",
+ "low24hr": "0.11824094"
+ },
+ "USDC_DOGE": {
+ "id": 243,
+ "last": "0.00303215",
+ "lowestAsk": "0.00306000",
+ "highestBid": "0.00303215",
+ "percentChange": "0.01921008",
+ "baseVolume": "2750.23843586",
+ "quoteVolume": "907350.09402904",
+ "isFrozen": "0",
+ "high24hr": "0.00310197",
+ "low24hr": "0.00297500"
+ },
+ "USDC_LTC": {
+ "id": 244,
+ "last": "128.93961490",
+ "lowestAsk": "128.93961440",
+ "highestBid": "128.27905224",
+ "percentChange": "0.10369106",
+ "baseVolume": "566449.26199652",
+ "quoteVolume": "4496.10093795",
+ "isFrozen": "0",
+ "high24hr": "129.99999999",
+ "low24hr": "114.11407952"
+ },
+ "USDC_ZEC": {
+ "id": 245,
+ "last": "79.00000000",
+ "lowestAsk": "79.66042211",
+ "highestBid": "78.78616778",
+ "percentChange": "0.00697317",
+ "baseVolume": "18301.41164199",
+ "quoteVolume": "229.40589669",
+ "isFrozen": "0",
+ "high24hr": "81.51460533",
+ "low24hr": "77.79410548"
+ },
+ "BTC_FOAM": {
+ "id": 246,
+ "last": "0.00000550",
+ "lowestAsk": "0.00000550",
+ "highestBid": "0.00000545",
+ "percentChange": "0.05769230",
+ "baseVolume": "0.89731724",
+ "quoteVolume": "166155.79008468",
+ "isFrozen": "0",
+ "high24hr": "0.00000555",
+ "low24hr": "0.00000515"
+ },
+ "USDC_FOAM": {
+ "id": 247,
+ "last": "0.04380999",
+ "lowestAsk": "0.04381000",
+ "highestBid": "0.04380999",
+ "percentChange": "0.08844695",
+ "baseVolume": "722.65429834",
+ "quoteVolume": "16885.98552482",
+ "isFrozen": "0",
+ "high24hr": "0.04381000",
+ "low24hr": "0.03968067"
+ },
+ "BTC_NMR": {
+ "id": 248,
+ "last": "0.00086057",
+ "lowestAsk": "0.00089787",
+ "highestBid": "0.00086212",
+ "percentChange": "0.06548385",
+ "baseVolume": "1.64609151",
+ "quoteVolume": "1912.03148904",
+ "isFrozen": "0",
+ "high24hr": "0.00090549",
+ "low24hr": "0.00079044"
+ },
+ "BTC_POLY": {
+ "id": 249,
+ "last": "0.00001306",
+ "lowestAsk": "0.00001311",
+ "highestBid": "0.00001306",
+ "percentChange": "0.08471760",
+ "baseVolume": "1.91462892",
+ "quoteVolume": "152996.00496795",
+ "isFrozen": "0",
+ "high24hr": "0.00001311",
+ "low24hr": "0.00001178"
+ },
+ "BTC_LPT": {
+ "id": 250,
+ "last": "0.00062300",
+ "lowestAsk": "0.00062500",
+ "highestBid": "0.00062300",
+ "percentChange": "-0.01954612",
+ "baseVolume": "2.49829681",
+ "quoteVolume": "4080.23729692",
+ "isFrozen": "0",
+ "high24hr": "0.00063805",
+ "low24hr": "0.00057190"
+ },
+ "BTC_GRIN": {
+ "id": 251,
+ "last": "0.00038601",
+ "lowestAsk": "0.00038831",
+ "highestBid": "0.00038600",
+ "percentChange": "-0.01686065",
+ "baseVolume": "24.37429922",
+ "quoteVolume": "62838.47716938",
+ "isFrozen": "0",
+ "high24hr": "0.00041400",
+ "low24hr": "0.00036639"
+ },
+ "USDC_GRIN": {
+ "id": 252,
+ "last": "3.11998999",
+ "lowestAsk": "3.10999999",
+ "highestBid": "3.04000004",
+ "percentChange": "0.02294753",
+ "baseVolume": "23814.63241472",
+ "quoteVolume": "7937.02292983",
+ "isFrozen": "0",
+ "high24hr": "3.16500000",
+ "low24hr": "2.89999999"
+ },
+ "BTC_ATOM": {
+ "id": 253,
+ "last": "0.00074800",
+ "lowestAsk": "0.00074909",
+ "highestBid": "0.00074800",
+ "percentChange": "-0.02023708",
+ "baseVolume": "39.67100725",
+ "quoteVolume": "52381.46699854",
+ "isFrozen": "0",
+ "high24hr": "0.00077303",
+ "low24hr": "0.00074568"
+ },
+ "USDC_ATOM": {
+ "id": 254,
+ "last": "5.94846938",
+ "lowestAsk": "5.98266834",
+ "highestBid": "5.91425840",
+ "percentChange": "0.00578678",
+ "baseVolume": "8589.72151742",
+ "quoteVolume": "1435.15971856",
+ "isFrozen": "0",
+ "high24hr": "6.13222707",
+ "low24hr": "5.77734693"
+ },
+ "USDT_ATOM": {
+ "id": 255,
+ "last": "5.93000005",
+ "lowestAsk": "5.96804558",
+ "highestBid": "5.91263924",
+ "percentChange": "0.02241380",
+ "baseVolume": "125149.60868108",
+ "quoteVolume": "21087.06757208",
+ "isFrozen": "0",
+ "high24hr": "6.09972825",
+ "low24hr": "5.74700000"
+ }
+ },
+ "queryString": "command=returnTicker",
+ "bodyParams": "\u003cnil\u003e",
+ "headers": {
+ "Key": [
+ ""
+ ]
+ }
+ }
+ ]
+ },
+ "/tradingApi": {
+ "POST": [
+ {
+ "data": {
+ "DASH": "XdtARx7FhLAqz4aXx6A9zpVXHzAcMjTyvi",
+ "LTC": "LaqbMc97SWBHpL7PeXNDDkgjWXC637ybGi",
+ "MAID": "1DonoYTRh83D9z8GLSMK65Czrcecb7R3VF"
+ },
+ "queryString": "",
+ "bodyParams": "command=returnDepositAddresses\u0026nonce=1560218814364717859",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "Key": [
+ ""
+ ],
+ "Sign": [
+ "0bbe2891561d0370c90eaae6490f891ff2b1c6cbde6e1e7cdf5268de00723702ed6c2354ec058af150caecc723f571cd1c6f5d25eaba9c376d805f3462219de1"
+ ]
+ }
+ },
+ {
+ "data": {
+ "response": "Withdrew 0.0 LTC."
+ },
+ "queryString": "",
+ "bodyParams": "address=1F5zVDgNjorJ51oGebSvNCrSAHpwGkUdDB\u0026amount=0\u0026command=withdraw\u0026currency=LTC\u0026nonce=1560225458841479798",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "Key": [
+ ""
+ ],
+ "Sign": [
+ "94f9d1a32849f95fd9b895ba71f1d1a1366d01c970f17ceb66391a5629b6c61a8d5d6195acab570615996f5f0274330393d68713d0a39b7335b2fd240abd54f4"
+ ]
+ }
+ },
+ {
+ "data": {
+ "success": 1,
+ "orderNumber": "514851232549",
+ "resultingTrades": {
+ "BTC_ETH": []
+ }
+ },
+ "queryString": "",
+ "bodyParams": "command=moveOrder\u0026nonce=1560225718965364448\u0026orderNumber=1337\u0026rate=1337",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "Key": [
+ ""
+ ],
+ "Sign": [
+ "54133cb80288b7d35407333f91bcf5e48f6a03b5e59472cd81e26c5175b4225885e12b708da623a0841ac901cb3da220273239917d65920ced3af8d39796d182"
+ ]
+ }
+ },
+ {
+ "data": {
+ "BTC_ARDR": [],
+ "BTC_ATOM": [],
+ "BTC_BAT": [],
+ "BTC_BCHABC": [],
+ "BTC_BCHSV": [],
+ "BTC_BCN": [],
+ "BTC_BNT": [],
+ "BTC_BTS": [],
+ "BTC_CLAM": [],
+ "BTC_CVC": [],
+ "BTC_DASH": [],
+ "BTC_DCR": [],
+ "BTC_DGB": [],
+ "BTC_DOGE": [],
+ "BTC_EOS": [],
+ "BTC_ETC": [],
+ "BTC_ETH": [],
+ "BTC_FCT": [],
+ "BTC_FOAM": [],
+ "BTC_GAME": [],
+ "BTC_GAS": [],
+ "BTC_GNT": [],
+ "BTC_GRIN": [],
+ "BTC_KNC": [],
+ "BTC_LBC": [],
+ "BTC_LOOM": [],
+ "BTC_LPT": [],
+ "BTC_LSK": [],
+ "BTC_LTC": [],
+ "BTC_MAID": [],
+ "BTC_MANA": [],
+ "BTC_NAV": [],
+ "BTC_NMR": [],
+ "BTC_NXT": [],
+ "BTC_OMG": [],
+ "BTC_OMNI": [],
+ "BTC_PASC": [],
+ "BTC_POLY": [],
+ "BTC_QTUM": [],
+ "BTC_REP": [],
+ "BTC_SC": [],
+ "BTC_SNT": [],
+ "BTC_STEEM": [],
+ "BTC_STORJ": [],
+ "BTC_STR": [],
+ "BTC_STRAT": [],
+ "BTC_VIA": [],
+ "BTC_VTC": [],
+ "BTC_XEM": [],
+ "BTC_XMR": [],
+ "BTC_XPM": [],
+ "BTC_XRP": [],
+ "BTC_ZEC": [],
+ "BTC_ZRX": [],
+ "ETH_BAT": [],
+ "ETH_BNT": [],
+ "ETH_CVC": [],
+ "ETH_EOS": [],
+ "ETH_ETC": [],
+ "ETH_GAS": [],
+ "ETH_GNT": [],
+ "ETH_KNC": [],
+ "ETH_LOOM": [],
+ "ETH_LSK": [],
+ "ETH_MANA": [],
+ "ETH_OMG": [],
+ "ETH_QTUM": [],
+ "ETH_REP": [],
+ "ETH_SNT": [],
+ "ETH_STEEM": [],
+ "ETH_ZEC": [],
+ "ETH_ZRX": [],
+ "USDC_ATOM": [],
+ "USDC_BCHABC": [],
+ "USDC_BCHSV": [],
+ "USDC_BTC": [],
+ "USDC_DOGE": [],
+ "USDC_ETH": [],
+ "USDC_FOAM": [],
+ "USDC_GRIN": [],
+ "USDC_LTC": [],
+ "USDC_STR": [],
+ "USDC_USDT": [],
+ "USDC_XMR": [],
+ "USDC_XRP": [],
+ "USDC_ZEC": [],
+ "USDT_ATOM": [],
+ "USDT_BAT": [],
+ "USDT_BNT": [],
+ "USDT_BTC": [],
+ "USDT_DASH": [],
+ "USDT_DOGE": [],
+ "USDT_EOS": [],
+ "USDT_ETC": [],
+ "USDT_ETH": [],
+ "USDT_GNT": [],
+ "USDT_KNC": [],
+ "USDT_LOOM": [],
+ "USDT_LSK": [],
+ "USDT_LTC": [],
+ "USDT_MANA": [],
+ "USDT_NXT": [],
+ "USDT_QTUM": [],
+ "USDT_REP": [],
+ "USDT_SC": [],
+ "USDT_SNT": [],
+ "USDT_STR": [],
+ "USDT_XMR": [],
+ "USDT_XRP": [],
+ "USDT_ZEC": [],
+ "USDT_ZRX": [],
+ "XMR_BCN": [],
+ "XMR_DASH": [],
+ "XMR_LTC": [],
+ "XMR_MAID": [],
+ "XMR_NXT": [],
+ "XMR_ZEC": []
+ },
+ "queryString": "",
+ "bodyParams": "command=returnOpenOrders\u0026currencyPair=all\u0026nonce=1560225851841503490",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "Key": [
+ ""
+ ],
+ "Sign": [
+ "c27f0881fc635d76be8f886b44af2c6e2bd8852bcf4c87f48ce8492236092678371dbf2303b623bd4c8404556caadfb5422c62e30484e29ffdb2905c62623e3f"
+ ]
+ }
+ },
+ {
+ "data": {
+ "success": 1,
+ "amount": "50.00000000",
+ "message": "Order #1 canceled."
+ },
+ "queryString": "",
+ "bodyParams": "command=cancelOrder\u0026nonce=1560225940514896227\u0026orderNumber=1",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "Key": [
+ ""
+ ],
+ "Sign": [
+ "18162a3bb203900573424e8b4fd5e9b6bae02c98e8d2612866f129b6da3fd0d3e41ac8c4e914f48fa75544b6106c79932312c1085c038307b2802667356b6434"
+ ]
+ }
+ },
+ {
+ "data": {
+ "orderNumber": "514845991795",
+ "resultingTrades": [
+ {
+ "amount": "3.0",
+ "date": "2018-10-25 23:03:21",
+ "rate": "0.0002",
+ "total": "0.0006",
+ "tradeID": "251834",
+ "type": "buy"
+ }
+ ],
+ "fee": "0.01000000",
+ "currencyPair": "BTC_LTC"
+ },
+ "queryString": "",
+ "bodyParams": "amount=1\u0026command=buy\u0026currencyPair=BTC_LTC\u0026fillOrKill=1\u0026nonce=1560226024406623067\u0026rate=10",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "Key": [
+ ""
+ ],
+ "Sign": [
+ "4c1a783636b6511a0ac070f1043b06a04f4e8120216912d64c4aca700860aef3bde6bab5305d4cc6e297b3930416064ca661c852607c76a218490787f7f557c9"
+ ]
+ }
+ },
+ {
+ "data": {
+ "BTC_BCH": [
+ {
+ "globalTradeID": 394131412,
+ "tradeID": "5455033",
+ "date": "2018-10-16 18:05:17",
+ "rate": "0.06935244",
+ "amount": "1.40308443",
+ "total": "0.09730732",
+ "fee": "0.00100000",
+ "orderNumber": "104768235081",
+ "type": "sell",
+ "category": "exchange"
+ },
+ {
+ "globalTradeID": 394126818,
+ "tradeID": "5455007",
+ "date": "2018-10-16 16:55:34",
+ "rate": "0.06935244",
+ "amount": "0.00155709",
+ "total": "0.00010798",
+ "fee": "0.00200000",
+ "orderNumber": "104768179137",
+ "type": "sell",
+ "category": "exchange"
+ }
+ ],
+ "BTC_STR": [
+ {
+ "globalTradeID": 394127362,
+ "tradeID": "13536351",
+ "date": "2018-10-16 17:03:43",
+ "rate": "0.00003432",
+ "amount": "3696.05342780",
+ "total": "0.12684855",
+ "fee": "0.00200000",
+ "orderNumber": "96238912841",
+ "type": "buy",
+ "category": "exchange"
+ },
+ {
+ "globalTradeID": 394127361,
+ "tradeID": "13536350",
+ "date": "2018-10-16 17:03:43",
+ "rate": "0.00003432",
+ "amount": "3600.53748129",
+ "total": "0.12357044",
+ "fee": "0.00200000",
+ "orderNumber": "96238912841",
+ "type": "buy",
+ "category": "exchange"
+ }
+ ]
+ },
+ "queryString": "",
+ "bodyParams": "command=returnTradeHistory\u0026currencyPair=all\u0026limit=10000\u0026nonce=1560226172960887950",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "Key": [
+ ""
+ ],
+ "Sign": [
+ "1b044c268e1ae4ddc9573a30b10d8ac4761e7e7f771a71397a168dfa54bcfe970c3a90103812e9070bde5616261d6e07ce372138a0ad27e7a315858298417aed"
+ ]
+ }
+ },
+ {
+ "data": {
+ "makerFee": "0.00150000",
+ "takerFee": "0.00250000",
+ "thirtyDayVolume": "0.00000000",
+ "nextTier": 25000
+ },
+ "queryString": "",
+ "bodyParams": "command=returnFeeInfo\u0026nonce=1560227050375298330",
+ "headers": {
+ "Content-Type": [
+ "application/x-www-form-urlencoded"
+ ],
+ "Key": [
+ ""
+ ],
+ "Sign": [
+ "d2a6e9fd6365cac63b778006c7fd8afe9473c4d4002a15ca915addd6c6b04101eaec7541397a5f2ccc102937453a5098ac51c062416b8d5fe273e5c88e2a31c2"
+ ]
+ }
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file