poloniex 中的 returnTradeHistory 总是 returns 空列表
returnTradeHistory in poloniex always returns empty list
我正在使用 poloniex 提供的 python 包装器:wrapper
我现在尝试运行的方法是:
def returnTradeHistory(self,currencyPair):
return self.api_query('returnTradeHistory',{"currencyPair":currencyPair})
但是方法 .returnTradeHistory()
总是 return 是一个空列表,即使我已经使用该硬币进行了交易。其他方法按预期工作,即使是那些也需要私有 API 的方法(例如 return 余额)。
这是打印的输出:
这是我的交易历史记录:
我在这里错过了什么?
好吧,再次阅读文档我看到了这个:
Returns your trade history for a given market, specified by the currencyPair
POST parameter. You may specify "all"
as the currencyPair
to receive your trade history for all markets. You may optionally specify a range via start
and/or end
POST parameters, given in UNIX timestamp format; if you do not specify a range, it will be limited to one day.
所以,很抱歉这个愚蠢的问题。
我正在使用 poloniex 提供的 python 包装器:wrapper
我现在尝试运行的方法是:
def returnTradeHistory(self,currencyPair):
return self.api_query('returnTradeHistory',{"currencyPair":currencyPair})
但是方法 .returnTradeHistory()
总是 return 是一个空列表,即使我已经使用该硬币进行了交易。其他方法按预期工作,即使是那些也需要私有 API 的方法(例如 return 余额)。
这是打印的输出:
这是我的交易历史记录:
我在这里错过了什么?
好吧,再次阅读文档我看到了这个:
Returns your trade history for a given market, specified by the
currencyPair
POST parameter. You may specify"all"
as thecurrencyPair
to receive your trade history for all markets. You may optionally specify a range viastart
and/orend
POST parameters, given in UNIX timestamp format; if you do not specify a range, it will be limited to one day.
所以,很抱歉这个愚蠢的问题。