0
How can I create a crypto currency order using ccxt library for Bingx exchange?
symbol= 'BTC/USDT' amount= 100 #USDT leverage= 10 long_tp_price= 65000 exchange.create_market_buy_order( symbol=symbol, amount=amount, price=None, params={ 'leverage': leverage, 'tpPrice': long_tp_price, }) >>>Error
3 Answers
+ 2
Have you read the documentation?
https://docs.ccxt.com/#/
The private API is mostly used for trading and for accessing account-specific private data, therefore it requires authentication. You have to get the private API keys from the exchanges. It often means registering with an exchange website and creating the API keys for your account. Most exchanges require personal information or identification. Some exchanges will only allow trading after completing the KYC verification. Private APIs allow the following:
manage personal account info
query account balances
trade by making market and limit orders
create deposit addresses and fund accounts
request withdrawal of fiat and crypto funds
query personal open / closed orders
query positions in margin/leverage trading
get ledger history
transfer funds between accounts
use merchant services
+ 1
What does the error say?
0
The only problem of my code is this part and I tried too many ways to open an order. I read the documentations but still it does not work!