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
reply
I was getting a http error 500 when using the order reply request
interactive-broker-python-api/ibw/client.py
Line 1805 in 0ab98cd
According to ibrk documentation the confirmation should be boolean : https://www.interactivebrokers.co.uk/api/doc.html#tag/Order/paths/~1iserver~1account~1orders~1{faGroup}/post
Changing the function signature makes it work def place_order_reply(self, reply_id: str = None, reply: bool = None):
def place_order_reply(self, reply_id: str = None, reply: bool = None):
Please also note that the documentation section of the function looks like it is copy pasted from a different function
The text was updated successfully, but these errors were encountered:
It's ease to avoid by assigning True to reply:
True
reply_yes = ib_client.place_order_reply( reply_id = buy_order_id, reply = True )```
Sorry, something went wrong.
No branches or pull requests
I was getting a http error 500 when using the order reply request
interactive-broker-python-api/ibw/client.py
Line 1805 in 0ab98cd
According to ibrk documentation the confirmation should be boolean :
https://www.interactivebrokers.co.uk/api/doc.html#tag/Order/paths/~1iserver~1account~1orders~1{faGroup}/post
Changing the function signature makes it work
def place_order_reply(self, reply_id: str = None, reply: bool = None):
Please also note that the documentation section of the function looks like it is copy pasted from a different function
The text was updated successfully, but these errors were encountered: