Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions okx/Trade.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ def order_algos_history(self, ordType, state='', algoId='', instType='', instId=
return self._request_with_params(GET, ORDERS_ALGO_HISTORY, params)

# Get Transaction Details History
def get_fills_history(self, instType, uly='', instId='', ordId='', after='', before='', limit='', instFamily=''):
def get_fills_history(self, instType, uly='', instId='', ordId='', after='', before='', limit='', instFamily='', begin='', end=''):
params = {'instType': instType, 'uly': uly, 'instId': instId, 'ordId': ordId, 'after': after, 'before': before,
'limit': limit, 'instFamily': instFamily}
'limit': limit, 'instFamily': instFamily, 'begin': begin, 'end': end}
return self._request_with_params(GET, ORDERS_FILLS_HISTORY, params)

def get_easy_convert_currency_list(self):
Expand Down