Operating System Windows 10 Programming Languages JavaScript CCXT Version 4.3.41 Description Getting "RequestTimeout: binance GET https://testnet.binancefuture.com/dapi/v1/exchangeInfo request timed out (10000 ms)" when I create a Market...
binance features updates (part 1) by@ttoduain#25007 fix(docs): fix htx docs, fix#25044by@pcriadoperezin#25051 feat(blofin): add testnet urls by@pcriadoperezin#25052 fix(blofin): features test by@pcriadoperezin#25054 fix(deribit) - fetchFundingRateHistory pagination by@ttoduain#250...
fetch Request: binance PUThttps://testnet.binancefuture.com/fapi/v1/orderRequestHeaders: {'X-MBX-APIKEY': 'b39ae4c71d96765d319f7cb0fb46c2619d9aeefbc7e7aadb5fa66de55536be0f', 'Content-Type': 'application/x-www-form-urlencoded', 'User-Agent': 'python-requests/2.28.1', 'Accept-En...
Response: POST https://testnet.binance.vision/api/v3/order 400 {'Content-Type': 'application/json;charset=UTF-8', 'Content-Length': '47', 'Connection': 'keep-alive', 'Date': 'Thu, 12 Nov 2020 13:58:37 GMT', 'Server': 'nginx', 'x-mbx-uuid': '141cc9ca-be15-4289-ad88-4753...
OS: Linux (Ubuntu) Programming Language version: Python 3.7 CCXT version: Hi, I am working with the Binance TESTNET. I have used this same ID to create LIMIT and MARKET orders with no issue - but - when I try to create an OCO order, I ge...
TestnetYou can use the testnet by enabling the corresponding flag.Note that you can't use your regular API and Secret keys for the testnet. You have to create an account on the testnet websites : https://testnet.binancefuture.com/ for futures and delivery or https://testnet.binance.vision...
kraken({ 'apiKey': 'YOUR_PUBLIC_API_KEY', 'secret': 'YOUR_SECRET_PRIVATE_KEY', }) exchange_id = 'binance' exchange_class = getattr(ccxt, exchange_id) exchange = exchange_class({ 'apiKey': 'YOUR_API_KEY', 'secret': 'YOUR_SECRET', 'timeout': 30000, 'enableRateLimit': True, ...
I have made Binance Testnet account and it is showing 100000 USD available balance, and when I am Placing Limit order with respect to current market price of Bitcoin, It is generating this error. Kindly help me about this, Thank You. kroitor mentioned this issue Oct 31, 2020 ccxt.base.e...
const Binance = require('node-binance-api'); const binance = new Binance({ APIKEY: '<key>', APISECRET: '<secret>', test: true, // if you want to use the sandbox/testnet });Binance Futures APIFutures Pricesconsole.info( await binance.futuresPrices() );...
const Binance = require('node-binance-api'); const binance = new Binance().options({ APIKEY: '<key>', APISECRET: '<secret>', test: true, // if you want to use the sandbox/testnet });Binance Futures APIFutures Pricesconsole.info( await binance.futuresPrices() );...