├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── docs.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── api.rst ├── changelog.rst ├── code.rst ├── conf.py ├── images │ └── qt-tickertable.png ├── index.rst ├── links.rst ├── notebooks.rst ├── readme.rst └── recipes.rst ├── examples ├── qt_ticker_table.py └── tk.py ├── ib_async ├── __init__.py ├── client.py ├── connection.py ├── contract.py ├── decoder.py ├── flexreport.py ├── ib.py ├── ibcontroller.py ├── objects.py ├── order.py ├── py.typed ├── ticker.py ├── util.py ├── version.py └── wrapper.py ├── notebooks ├── bar_data.ipynb ├── basics.ipynb ├── contract_details.ipynb ├── market_depth.ipynb ├── option_chain.ipynb ├── ordering.ipynb ├── scanners.ipynb └── tick_data.ipynb ├── pyproject.toml └── tests ├── conftest.py ├── test_contract.py └── test_requests.py /.gitattributes: -------------------------------------------------------------------------------- 1 | notebooks/* linguist-documentation 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | github: mattsta 3 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/code.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/qt-tickertable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/images/qt-tickertable.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/links.rst -------------------------------------------------------------------------------- /docs/notebooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/notebooks.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/readme.rst -------------------------------------------------------------------------------- /docs/recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/docs/recipes.rst -------------------------------------------------------------------------------- /examples/qt_ticker_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/examples/qt_ticker_table.py -------------------------------------------------------------------------------- /examples/tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/examples/tk.py -------------------------------------------------------------------------------- /ib_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/__init__.py -------------------------------------------------------------------------------- /ib_async/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/client.py -------------------------------------------------------------------------------- /ib_async/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/connection.py -------------------------------------------------------------------------------- /ib_async/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/contract.py -------------------------------------------------------------------------------- /ib_async/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/decoder.py -------------------------------------------------------------------------------- /ib_async/flexreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/flexreport.py -------------------------------------------------------------------------------- /ib_async/ib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/ib.py -------------------------------------------------------------------------------- /ib_async/ibcontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/ibcontroller.py -------------------------------------------------------------------------------- /ib_async/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/objects.py -------------------------------------------------------------------------------- /ib_async/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/order.py -------------------------------------------------------------------------------- /ib_async/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ib_async/ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/ticker.py -------------------------------------------------------------------------------- /ib_async/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/util.py -------------------------------------------------------------------------------- /ib_async/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/version.py -------------------------------------------------------------------------------- /ib_async/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/ib_async/wrapper.py -------------------------------------------------------------------------------- /notebooks/bar_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/notebooks/bar_data.ipynb -------------------------------------------------------------------------------- /notebooks/basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/notebooks/basics.ipynb -------------------------------------------------------------------------------- /notebooks/contract_details.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/notebooks/contract_details.ipynb -------------------------------------------------------------------------------- /notebooks/market_depth.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/notebooks/market_depth.ipynb -------------------------------------------------------------------------------- /notebooks/option_chain.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/notebooks/option_chain.ipynb -------------------------------------------------------------------------------- /notebooks/ordering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/notebooks/ordering.ipynb -------------------------------------------------------------------------------- /notebooks/scanners.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/notebooks/scanners.ipynb -------------------------------------------------------------------------------- /notebooks/tick_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/notebooks/tick_data.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/tests/test_contract.py -------------------------------------------------------------------------------- /tests/test_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattsta/ib_insync/HEAD/tests/test_requests.py --------------------------------------------------------------------------------