Krakenex API multiple pairs query
问题 I am trying to use the Krakenex python library to query the order book for multiple currency pairs at once. When I do it for a single currency is works, like this: con = krakenex.API() con.load_key('kraken.key') con.query_public('Depth', {'pair':'GNOETH'}) However, if I do: con = krakenex.API() con.load_key('kraken.key') con.query_public('Depth', {'pair':['GNOETH', 'GNOEUR']}) I get {'error': ['EQuery:Unknown asset pair']} . I assume that the syntax is incorrect but can't figure out the