Open Crimees opened 6 years ago
Hi. I have had a problem with the trade_sell function and used your fix to solve the problem. The function returns the following data: {'success': False, 'message': 'NO_API_RESPONSE', 'result': None} I am using python-bittrex version 0.30 Python 3.6 Any idea?
When submitting a trade_buy request to the v2.0 endpoint, we get this:
There was a problem processing your request. If this problem persists, please email support@bittrex.com with this error id - a4e8ec80-1a22-4e9e-bece-dcaea19124c9
I've made some small fixes to the methods trade_buy and trade_sell and they now work off the bat. Unfortunately I don't know how/if I can directly make this suggestion with GIT, so here it is
`def trade_buy(self, market=None, order_type=None, quantity=None, rate=None, time_in_effect=TIMEINEFFECT_GOOD_TIL_CANCELLED, condition_type=CONDITIONTYPE_NONE, target=0): """ Enter a buy order into the book Endpoint 1.1 NO EQUIVALENT -- see buy_market or buy_limit 2.0 /key/market/tradebuy
`
` def trade_sell(self, market=None, order_type=None, quantity=None, rate=None, time_in_effect=TIMEINEFFECT_GOOD_TIL_CANCELLED, condition_type=CONDITIONTYPE_NONE, target=0): """ Enter a sell order into the book Endpoint 1.1 NO EQUIVALENT -- see sell_market or sell_limit 2.0 /key/market/tradesell
`