This platform is a full-stack algorithmic trading ecosystem
spanning three interconnected repositories: tf_1 for machine
learning, Trading-Win for Windows-side orchestration and broker
connectivity, and Trading-WSL for execution inside the Linux
runtime where live processes can run predictably. That repo
split is intentional. It keeps experimentation, contract
governance, and execution concerns separate so the production
layer only consumes approved artifacts.
The ML engine trains four distinct model families. Each family
is optimized for a different trading horizon and data shape,
ranging from hourly macro regime classification down to
multi-task learning over level-two order book dynamics. That
allows the estate to blend slower contextual signals with
short-horizon microstructure signals rather than forcing one
model to solve every market regime.
Promotion is gated through a JSON-Logic pipeline backed by a
shared ml-contracts schema repository. Models are not simply
copied into production after training. They must satisfy
contract validation, metadata requirements, and promotion rules
before the execution layer is allowed to consume anything tagged
production.alias.
On the infrastructure side, the system manages headless IBKR
Gateway sessions in both paper and live modes, persists market
data in append-only Parquet manifests, and pushes operational
notifications through a shared FastAPI microservice. The result
is a trading platform that treats ML, governance, and execution
as one integrated production system rather than isolated
scripts.