In order to make my code more efficient, I'm trying to limit my api request for open orders to one single pair. I can't figure out how to correctly use the input parameters. I'm using python3 and the krakenex package (which I could replace if there is one which works better)
client = krakenex.API(<<key>>, <<secret>>)
data = {'pair': 'ADAEUR'}
open_ord = client.query_private(method='OpenOrders',data = data) ['result']
open_ord_ = list(open_ord.values())[0]
---> this unfortunately returns the open orders of all my pairs and not only the "ADAEUR". I guess one needs to adapt the data parameters which I was not able to figure out... Would be awesome if someone could help me. Many Thanks in advance
According to the Kraken API docs, there is no
data
argument for the getOpenOrders endpoint, so this explains why your results are not filtered.Two methods:
krakenex
and filtering from the JSON output:Both methods are written so they can filter one or multiple pairs. Method 1 returns a Pandas DataFrame, the second method returns a list with for each open order a tuple of (order ID (str), order info (dict)).