This library is currently being beta-tested. See something that's broken? Did we get something
wrong? Create an issue and let us know!
IBind is an unofficial Python API client library for the Interactive Brokers Client Portal Web API. (recently rebranded to Web API 1.0 or CPAPI 1.0) It supports both REST and WebSocket APIs of the IBKR Web API 1.0. Now fully headless with OAuth 1.0a support.
Note: IBind currently supports only the Web API 1.0 since the newer Web API seems to be still in beta and is not fully documented. Some of its features may work, but it is recommended to use the Web API 1.0's documentation for the time being. Once a complete version of the new Web API is released IBind will be extended to support it.
Installation
pip install ibind
Authentication
IBind supports fully headless authentication using OAuth 1.0a. This means no longer needing to run any type software to communicate with IBKR API.
Alternatively, use IBeam along with this library for easier setup and maintenance of the CP Gateway.
See Authentication page to learn more.
Documentation
See full IBind documentation.
Features:
Overview
IBind's core functionality consists of two client classes:
-
IbkrClient
- for IBKR REST API
Using the IbkrClient
requires constructing it with appropriate arguments, then calling the API methods.
-
IbkrWsClient
- for IBKR WebSocket API
Using the IbkrWsClient
involves handling three areas:
- Managing its lifecycle. It is asynchronous and it will run on a separate thread, hence we need to construct it, start it and then manage its lifecycle on the originating thread.
- Subscribing and unsubscribing. It is subscription-based, hence we need to specify which channels we want to subscribe to and remember to unsubscribe later.
- Consuming data. It uses a queue system, hence we need to access these queues and consume their data.
Their usage differs substantially. Users are encouraged to familiarise themselves with the IbkrClient
class first.
Examples
See all examples.
Basic REST Example
from ibind import IbkrClient
client = IbkrClient()
print('\n#### check_health ####')
print(client.check_health())
print('\n\n#### tickle ####')
print(client.tickle().data)
print('\n\n#### get_accounts ####')
print(client.portfolio_accounts().data)
Basic WebSocket Example
from ibind import IbkrWsKey, IbkrWsClient
ws_client = IbkrWsClient(start=True)
ibkr_ws_key = IbkrWsKey.PNL
ws_client.subscribe(channel=ibkr_ws_key.channel)
while True:
while not ws_client.empty(ibkr_ws_key):
print(ws_client.get(ibkr_ws_key))
Licence
See LICENSE
Disclaimer
IBind is not built, maintained, or endorsed by the Interactive Brokers.
Use at own discretion. IBind and its authors give no guarantee of uninterrupted run of and access to the Interactive
Brokers Client Portal Web API. You should prepare for breaks in connectivity to IBKR servers and should not
depend on continuous uninterrupted connection and functionality. To partially reduce the potential risk use Paper Account credentials.
IBind is provided on an AS IS and AS AVAILABLE basis without any representation or endorsement made and without warranty
of any kind whether express or implied, including but not limited to the implied warranties of satisfactory quality,
fitness for a particular purpose, non-infringement, compatibility, security and accuracy. To the extent permitted by
law, IBind's authors will not be liable for any indirect or consequential loss or damage whatever (including without
limitation loss of business, opportunity, data, profits) arising out of or in connection with the use of IBind. IBind's
authors make no warranty that the functionality of IBind will be uninterrupted or error free, that defects will be
corrected or that IBind or the server that makes it available are free of viruses or anything else which may be harmful
or destructive.
Acknowledgement
IBind has been enriched by incorporating work developed in collaboration with Kinetic and Grant Stenger, which now forms part of the initial open-source release. I appreciate their significant contribution to this community-driven initiative. Cheers Kinetic! 🍻
Built by Voy
Hi! Thanks for checking out and using this library. If you are interested in discussing your project, require
mentorship, consider hiring me, or just wanna chat - I'm happy to talk.
You can email me to get in touch: hello@voyzan.com
Or if you'd just want to give something back, I've got a Buy Me A Coffee account:
Thanks and have an awesome day 👋