Jeff Bingaman
Jeff Bingaman
def get_full_order_history(self): """ Used to retrieve your order history /account/getorderhistory :param market: Bittrex market identifier (i.e BTC-DOGE) :type market: str :return: :rtype : dict """ return self._api_query(path_dict={ API_V1_1: '/account/getorderhistory' },...
``` import urllib.request, json class ForexDataClient: def __init__(self, api_key): self.api_key = api_key self.base_uri = 'http://forex.1forge.com/1.0.2/' def fetch(self, uri): response = urllib.request.urlopen(self.base_uri + uri + '&api_key=' + self.api_key) return json.load(response) def...