This may be an already asked question but the solution provided does not help me to fully understand what I am doing wrong.
I am working directly on the mainet.
The issue happens when I try to create limit orders. Please check the bellow code.
I need help figuring out what could be the cause of the problem and how to solve.
Here the code that sends the request:
let params = {
symbol: symbol,
side: side,
type: "LIMIT",
timeInForce: "GTC",
quantity: format(quantity),//sprintf("%.8f", quantity)
price: format(price),
};
this.checkParams(params, [
"symbol",
"side",
"type",
"timeInForce",
"quantity",
"price",
]);
The created URL looks like this:
/api/v3/order?symbol=BTCUSDT&side=BUY&type=LIMIT&timeInForce=GTC&quantity=0.00187064&price=26308.79000000×tamp=1695102965102&signature=82600d68e7dc58c79e76f887ca17872e7dec858cfe24d020521e033b6150b220
Thanks!!!