We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$symbol = 'DGBUSDT'; $bookPrices = $api->bookPrices(); $ex_rate = $bookPrices[$symbol]['ask']; $quantity = 20; $price = $ex_rate; $order = $api->sell($symbol, $quantity, $price);
Have error:
Fatal error: Uncaught Exception: signedRequest error: {"code":-1013,"msg":"Filter failure: MIN_NOTIONAL"}
Please, can you help me, what am I doing wrong?
The text was updated successfully, but these errors were encountered:
try this :
$symbol = 'DGBUSDT'; $symbol = trim($symbol ); $bookPrices = $api->bookPrices(); $ex_rate = $bookPrices[$symbol]['ask']; $quantity = 20; $price = $ex_rate; $order = $api->sell($symbol, $quantity, $price);
Sorry, something went wrong.
Only this answer? This answer no found Please i have same problem.
No branches or pull requests
$symbol = 'DGBUSDT';
$bookPrices = $api->bookPrices();
$ex_rate = $bookPrices[$symbol]['ask'];
$quantity = 20;
$price = $ex_rate;
$order = $api->sell($symbol, $quantity, $price);
Have error:
Fatal error: Uncaught Exception: signedRequest error: {"code":-1013,"msg":"Filter failure: MIN_NOTIONAL"}
Please, can you help me, what am I doing wrong?
The text was updated successfully, but these errors were encountered: