ericsomdahl / python-bittrex

Python bindings for bittrex
MIT License
585 stars 283 forks source link

get_full_order_history #152

Open uneasyguy opened 6 years ago

uneasyguy commented 6 years ago

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'
    }, protection=PROTECTION_PRV)