私はPHP 用の ccxt crypto API を使用して暗号通貨のETH/BTCアービトラージ取引を行うアプリに取り組んでおり、通常、指値買い注文をしようとしているときに API 呼び出しからスローされるこのネットワーク エラー例外を受け取り続けます。
{"status":-124,"error_message":"Enter the size in units of 0.0000001 ETH.","data":null}
この上記の例外は、Bitflyer 取引所からスローされます。
私のコードは次のとおりです。
$name = '\\ccxt\\'.$exchangeId;
$exchange = new $name(array (
'apiKey' => $api_key, // ←------------ replace with your keys
'secret' => $secret_key,
'enableRateLimit' => true,
));
try{
$symbol = 'ETH/BTC';
$type = 'limit'; // # or 'market', or 'Stop' or 'StopLimit'
$side = 'buy'; // 'sell' or 'buy'
$amount = $data['trade_base_amount']; //0.0515996
$price = $data['exchange_rate']; // 0.01938
// extra params and overrides
$params = array();
$response = $exchange->create_order($symbol, $type, $side, $amount, $price, $params);
print_r($response);
}catch (\ccxt\NetworkError $e) {
echo $exchange->id . ' fetch_trades failed due to a network error: '.$e->getMessage () . "\n";
}catch (\ccxt\ExchangeError $e) {
echo $exchange->id . ' fetch_trades failed due to exchange error: ' .$e->getMessage () . "\n";
}catch (\Exception $e) {
echo $exchange->id . ' fetch_trades failed with: ' . $e->getMessage () . "\n";
}
このエラーが発生する理由を誰か説明してもらえますか?
前もって感謝します。