错误的价值显示在使用Coinbase Pro API出售时



我正在使用沙盒的coinbase pro api并测试销售案例。

我下订单是

const sellParams:any = {
'side': 'sell',
'product_id': 'BTC-USD',
'type': 'market',
'size': '0.009'
}

订单状态的响应如下所示

{
"type": "market",
"id": "5846345c-c070-44bf-9d31-ec07a1c9892c",
"product_id": "BTC-USD",
"side": "sell",
"post_only": false,
"created_at": "2019-08-12T04:08:29.845922Z",
"fill_fees": "0.0297509100000000",
"filled_size": "0.00300000",
"executed_value": "9.9169700000000000",
"status": "done",
"settled": true,
"done_at": "2019-08-12T04:08:29.853Z",
"done_reason": "canceled",
"size": "0.00900000"
}

问题是关于显示 9.9169 的执行值... 不应该在100美元左右吗?

所以基本上沙盒价格与实际价格不同,这就是混淆的地方。

最新更新