280 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
158
views
"AxiosError: Request failed with status code 400" on Market Order Request
I'm working on a trading bot that connects to Binance Testnet using WebSockets to get ticker updates and Axios to place market orders. However, I'm encountering the following error when trying to ...
-1
votes
2
answers
219
views
How to place an OTOCO order through the Binance API in Python
Tried to submit the order detailed in params using
response = requests.post(f"{base_url}/sapi/v1/margin/order/otoco", headers=headers, params=params)
It goes through only if the "...
2
votes
0
answers
142
views
Withdrawal Amount Binance Spot trading API
I am facing an issue when calling the withdraw API or using it through the SDK. The problem is that when I try to withdraw funds, it withdraws a smaller amount than expected and leaves the remaining ...
-1
votes
1
answer
125
views
Binance tr api invalid api-key
I use binance tr api; i want to make buy order.
But i get this error:
data: { code: 3700, msg: 'Invalid API-key', timestamp: 1733491789482 }
İf i use this , works:
var apikey="...
0
votes
2
answers
788
views
How close position in Binance by API
I am looking for possibility of closing position regardless of whether at a profit or loss via API.
I tried something like that:
stop_order = self.client.futures_create_order(
symbol=...
-1
votes
1
answer
472
views
How to create a Stop Market order in Binance Futures API
I am trying to use the Binance API to create a stop market order like its done in the Web Application but I keep running into problems. The few times the code goes through, it only creates the first ...
0
votes
0
answers
142
views
Python Binance Websocket API Failed With WinError 10060
I've been trying to use python binance websocket api with the code below:
import websocket
SOCKET = "wss://stream.binance.com:9443/ws/btcusdt@trade"
def on_open(ws):
print('opened ...
2
votes
0
answers
135
views
Authorize_and_exchange_code failed error invalid_client Binance OAuth with Flutter
I’m working on integrating Binance OAuth authentication into my Flutter application but encountering a configuration issue
const String discoveryURL = 'https://accounts.binance.com/.well-known/openid-...
-1
votes
1
answer
234
views
Very very basic python-binance ThreadedWebSocketManager example does not work... why?
I have an application that uses the binance api to trade and do some other stuff. The app worked fine for like 2 years, but one day it stopped working. So i decided to create a basic script to ...
-1
votes
1
answer
1k
views
Binance futures testnet data differs from read binance futures data
I am new to binance api and now I am using binance futures testnet. I’ve noticed that the data that testnet shows differs from the real futures data.
Testnet data:
Real data:
Additionally testnet ...
0
votes
2
answers
293
views
ERROR API Binance convert limit placeOrder
I'm trying to make a limit order of convert using binance api. The Postman doc tell us that should be pass as parameter in the POST like we do with user_saldo that works just fine.
The error returned ...
-1
votes
2
answers
663
views
Binance. Error -1102, Mandatory parameter 'signature' was not sent, was empty/null, or malformed
I'm creating a bot at binance that buy and sell crypto this is just part of the code that creates new order but is giving error in signature, and i think the binance buy a cripto and pay the taxes ...
0
votes
1
answer
209
views
Remove an item from a continuously updating collection in Net Maui
I have a method in a viewmodel that updates an observablecollection (Indicators) every time data is sent from the Binance Api. However, if I remove the last item from that list (pressing a button on ...
2
votes
2
answers
646
views
Gate io api V4 INVALID_SIGNATURE
I am trying to do a request to Gate.io cryptocurrency market and getting this error.
{"label":"INVALID_SIGNATURE","message":"Signature mismatch"}
C++ code:
std::...
1
vote
0
answers
104
views
Issue Adding New Order on Binance Spot Test Network using PHP
I am facing an issue when attempting to add a new order on the Binance Spot Test Network using PHP. The API request seems to be successful, and I receive a "NEW" in status, but don't find order in ...