We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Per bittrex horribly written API documents: "market | optional | a string literal for the market (ie. BTC-LTC)".
Yet calling the API with None gives...
bittrex.get_open_orders(None) Out[16]: {'message': 'MARKET_NOT_PROVIDED', 'result': None, 'success': False}
The text was updated successfully, but these errors were encountered:
Dear @ultrarelativistic Seems that it's a bug in the Bittrex API. You can workaround it switching to V1.1 API only for this call:
my_bittrex.api_version=API_V1_1 open_orders = my_bittrex.get_open_orders() my_bittrex.api_version=API_V2_0
Remember that API V2.0 is in BETA, so you may want to fully switch to V1.1 which is the stable version.
Best regards
Sorry, something went wrong.
No branches or pull requests
Per bittrex horribly written API documents: "market | optional | a string literal for the market (ie. BTC-LTC)".
Yet calling the API with None gives...
bittrex.get_open_orders(None)
Out[16]: {'message': 'MARKET_NOT_PROVIDED', 'result': None, 'success': False}
The text was updated successfully, but these errors were encountered: