Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 poloniex 编写 python 机器人。
polo = poloniex.Poloniex('key', 'secret') polo.sell('BTC_ETH', 0.043, 0.01) polo.buy('BTC_ETH', 0.043, 0.01)
买入和卖出函数引发错误“总计必须至少为 0.0001。”
为什么 poloniex 返回此错误?余额足以进行交易。通过网络界面进行的类似交易是成功的。
第三个参数“金额”不是在 BTC 中,而是在你的山寨币中,所以正确的代码是:
polo.sell('BTC_ETH', 0.043, (0.01*0.043)) polo.buy('BTC_ETH', 0.043, (0.01*0.043))