Initial hello world IBKR API connection.

This commit is contained in:
2026-07-25 22:19:31 +03:00
parent 470e243526
commit 8d3e663e71
11 changed files with 456 additions and 3 deletions
+21
View File
@@ -0,0 +1,21 @@
[project]
name = "trading-bot"
version = "0.1.0"
description = "Python trading bot using machine learning and the IBKR API."
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"ib-insync>=0.9.86",
"pandas>=2.3.0",
"pyarrow>=20.0.0",
]
[dependency-groups]
dev = []
[tool.uv]
package = true
[build-system]
requires = ["uv_build>=0.8.0,<0.9.0"]
build-backend = "uv_build"