我正在使用 Kraken API,但我无法找到对我在响应中的信息的良好解释。
实际上,对于给定的一对,我有以下信息:
altname = alternate pair name
aclass_base = asset class of base component
base = asset id of base component
aclass_quote = asset class of quote component
quote = asset id of quote component
lot = volume lot size
pair_decimals = scaling decimal places for pair
lot_decimals = scaling decimal places for volume
lot_multiplier = amount to multiply lot volume by to get currency volume
leverage_buy = array of leverage amounts available when buying
leverage_sell = array of leverage amounts available when selling
fees = fee schedule array in [volume, percent fee] tuples
fees_maker = maker fee schedule array in [volume, percent fee] tuples (if on maker/taker)
fee_volume_currency = volume discount currency
margin_call = margin call level
margin_stop = stop-out/liquidation margin level
我对这个有效载荷有一些疑问。感谢所有愿意提供帮助的人。
lot_decimals
和pair_decimals
:这些如何应用?我猜可能前者意味着第一种货币的数量可以用最多lot_decimals
小数位表示,而后者意味着您可以用最多pair_decimals小数位表示对值。这合理吗?lot_multiplier
:解释很清楚,但总是1。有什么理由吗?lot
:这是您要以第二种货币计算的第一种货币的数量吗?示例:100 EURBTC,100 是手数?
谢谢