我正在查看Gdax api和gdax-python库,看起来像/ sell的json请求是这种格式:
# Place an order
order = {
'size': 1.0,
'price': 1.0,
'side': 'buy',
'product_id': 'BTC-USD',
}
r = requests.post(api_url + 'orders', json=order, auth=auth)
大小指定硬币的数量。
使用此API或其他内容,是否可以在USD
而非硬币大小中指定要购买的金额?
答案 0 :(得分:1)
您不能以您要求的方式更改API正文。您可以做的是根据以美元和当前价格购买的金额来计算订单大小。假设您想尽快购买,接近当前价格,并投资整个美元金额,订单机构将是:
# Place an order
order = {
'size': currentPrice/USD_TO_BUY,
'price': currentPrice,
'side': 'buy',
'product_id': 'BTC-USD',
}