python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Binance API-key Trading Bot - InvalidNonce: binance {"code":-1021,"msg":"Timestamp for this request is outside of the recvWindow."}
I have re-created a Binance API-key trading bot which uses NodeJS, CCXT & Axios (It pulls the API+secret key from a .env file). I am getting the error when trying to execute the trading-bot;;
PS ...
MattW
Votes: 0
Answers: 1
Get futures symbol list with CCXT nodeJS
Hi I want to get futures symbol list of coinex broker but exchange.loadMarkets only load spot symbols
Fardin
Votes: 0
Answers: 1
Transfer USDT between spot and futures in Binance with ccxt python
import time
start = time.time()
exchange.sapi_post_futures_transfer({
'asset': 'USDT',
'amount': '10',
'type': 2,
})
end = time.time()
I want to take a long position in the spot market an...
euphrates85
Votes: 0
Answers: 0
How can I get specific time periods ohlcv in CCXT bitget?
Even if I type "since" keyword in ccxt bitget, always get only the latest information. The same code worked on ftx, what's the problem?
bitget = ccxt.bitget({'apiKey' : self.KEY,
...
Dr.Kim
Votes: 0
Answers: 1