mirror of
https://github.com/xavierchuan/FX-ML-Trading-Engine.git
synced 2026-07-27 18:17:44 +00:00
QuantTrader Artifacts
This directory stores the research outputs that the trading runtime consumes.
Structure
config/: strategy configuration snapshots exported from QuantResearch (YAML).params/: optimized parameter JSONs (best_params_*.json).
Manual sync process
- In
QuantResearch/, run optimization/backtest scripts to produce updated configs/params. - Copy the vetted files into this directory:
cp QuantResearch/config/<strategy>.yaml QuantTrader/artifacts/config/cp QuantResearch/data/params/best_*.json QuantTrader/artifacts/params/
- Commit the new artifacts (or upload to storage) alongside the trading release.
- Runner processes load configs from
artifacts/config/and parameters fromartifacts/params/to ensure live trading uses the approved research snapshot.
Automating this sync (e.g., via CI) is recommended once the promotion flow stabilizes.