-
Notifications
You must be signed in to change notification settings - Fork 498
Description
Short Description:
- Unable to sell a
Platform:
- linux
php version:
- 7.0.24
Long descrption
If I try to buy suing API I have no problem
for example
``php
$quantity="25";
$order = $api->marketBuy("CHRUSDT", $quantity);
print_r($order);
If I try to sell the same quantity (once bought) using this
``php
$quantity="25";
$order = $api->marketSell("CHRUSDT", $quantity);
print_r($order);
I receive this error
Fatal error: Uncaught Exception: signedRequest error: {"code":-1013,"msg":"Filter failure: MIN_NOTIONAL"} in /home/william/public_html/coin/vendor/jaggedsoft/php-binance-api/php-binance-api.php:1224 Stack trace: #0 /home/william/public_html/coin/vendor/jaggedsoft/php-binance-api/php-binance-api.php(1301): Binance\API->httpRequest('v3/order', 'POST', Array, true) #1 /home/william/public_html/coin/vendor/jaggedsoft/php-binance-api/php-binance-api.php(450): Binance\API->order('SELL', 'CHRUSDT', 25, '0.00000000', 'MARKET', Array) #2 /home/william/public_html/coin/vendor/jaggedsoft/php-binance-api/bot7/bot7.php(34): Binance\API->marketSell('CHRUSDT', 25) #3 {main} thrown in /home/william/public_html/coin/vendor/jaggedsoft/php-binance-api/php-binance-api.php on line 1224
Any idea why cannot I sell ?