Binance testnet orders expired?
See original GitHub issue- OS: Ubuntu Server
- Programming Language version: NodeJS v14.15.4
- CCXT version: v1.41.64
I’m trying to place orders on the Binance Spot testnet. However, all orders get status ‘Expired’ without getting filled. I can’t find any docs on the testnet, but is this normal? Do all order just expire on the testnet?
I tried various methods but none work, example:
const order = await client.createMarketBuyOrder( strategy.asset + '/' + strategy.currency, strategy.quantity, );
I always get:
{ info: { symbol: 'BTCBUSD', orderId: 646, orderListId: -1, clientOrderId: 'x-...', transactTime: 1612902432828, price: '0.00000000', origQty: '0.01000000', executedQty: '0.00000000', cummulativeQuoteQty: '0.00000000', status: 'EXPIRED', timeInForce: 'GTC', type: 'MARKET', side: 'BUY', fills: [] }, id: '646', clientOrderId: 'x-...', timestamp: 1612902432828, datetime: '2021-02-09T20:27:12.828Z', lastTradeTimestamp: undefined, symbol: 'BTC/BUSD', type: 'market', timeInForce: 'GTC', postOnly: false, side: 'buy', price: 0, stopPrice: undefined, amount: 0.01, cost: 0, average: undefined, filled: 0, remaining: 0.01, status: 'expired', fee: undefined, trades: [] }
Edit: added complete verbose
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (2 by maintainers)
Probably lack of liquidity in the market you are trading. Try BNB/USDT
@cherbert, @reynard80 thx for your help and feedback!