├── .flake8 ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── docker-compose.yml ├── download_futures_equities.py ├── download_futures_oil.py ├── download_stocks.py ├── environment.yml ├── examples └── __init__.py ├── ibdatafetcher ├── __init__.py ├── db_client.py ├── ib_client.py ├── models.py ├── security_master.py ├── spreads.py └── util.py └── setup.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /download_futures_equities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/download_futures_equities.py -------------------------------------------------------------------------------- /download_futures_oil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/download_futures_oil.py -------------------------------------------------------------------------------- /download_stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/download_stocks.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/environment.yml -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ibdatafetcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ibdatafetcher/db_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/ibdatafetcher/db_client.py -------------------------------------------------------------------------------- /ibdatafetcher/ib_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/ibdatafetcher/ib_client.py -------------------------------------------------------------------------------- /ibdatafetcher/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/ibdatafetcher/models.py -------------------------------------------------------------------------------- /ibdatafetcher/security_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/ibdatafetcher/security_master.py -------------------------------------------------------------------------------- /ibdatafetcher/spreads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/ibdatafetcher/spreads.py -------------------------------------------------------------------------------- /ibdatafetcher/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/ibdatafetcher/util.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/westonplatter/ibdatafetcher/HEAD/setup.py --------------------------------------------------------------------------------