def depositsWithdrawals(self, start, end): URL = "/api2/1/private/depositsWithdrawals" params = {'start': start, 'end': end} return httpPost(self.__trade_url, URL, params, self.__apiKey, self.__secretKey)
def sell(self, currencyPair, rate, amount): URL = "/api2/1/private/sell" params = {'currencyPair': currencyPair, 'rate': rate, 'amount': amount} return httpPost(self.__trade_url, URL, params, self.__apiKey, self.__secretKey)
def balances(self): URL = "/api2/1/private/balances" param = {} return httpPost(self.__trade_url, URL, param, self.__apiKey, self.__secretKey)
def depositAddres(self, param): URL = "/api2/1/private/depositAddress" params = {'currency': param} return httpPost(self.__trade_url, URL, params, self.__apiKey, self.__secretKey)
def withdraw(self, currency, amount, address): URL = "/api2/1/private/withdraw" params = {'currency': currency, 'amount': amount, 'address': address} return httpPost(self.__trade_url, URL, params, self.__apiKey, self.__secretKey)
def mytradeHistory(self, currencyPair, orderNumber): URL = "/api2/1/private/tradeHistory" params = {'currencyPair': currencyPair, 'orderNumber': orderNumber} return httpPost(self.__trade_url, URL, params, self.__apiKey, self.__secretKey)
def openOrders(self): URL = "/api2/1/private/openOrders" params = {} return httpPost(self.__trade_url, URL, params, self.__apiKey, self.__secretKey)
def getOrder(self, orderNumber, currencyPair): URL = "/api2/1/private/getOrder" params = {'orderNumber': orderNumber, 'currencyPair': currencyPair} return httpPost(self.__trade_url, URL, params, self.__apiKey, self.__secretKey)
def cancelAllOrders(self, type, currencyPair): URL = "/api2/1/private/cancelAllOrders" params = {'type': type, 'currencyPair': currencyPair} return httpPost(self.__trade_url, URL, params, self.__apiKey, self.__secretKey)