Skip to content
New issue

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

I have a problem MIN_NOTIONAL #484

Open
RemizovAnton opened this issue Aug 12, 2022 · 2 comments
Open

I have a problem MIN_NOTIONAL #484

RemizovAnton opened this issue Aug 12, 2022 · 2 comments

Comments

@RemizovAnton
Copy link

$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?

@aminemoh
Copy link

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);

@nestorPons
Copy link

Only this answer? This answer no found
Please i have same problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants