Initial commit: Mad Turtle v2.0 ML EA for XAUUSD H1 with Python inference server and MQL5 EA

This commit is contained in:
Visi
2026-06-13 15:27:41 +01:00
commit a5bfac82e4
21 changed files with 13055 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/usr/bin/env python3
"""
Train XAUUSD H1 ensemble ONNX model (demo with synthetic data if no real feed).
Run: python3 python/ml_pipeline/train_onnx.py
"""
import sys
sys.path.insert(0, str(__file__).rsplit("/", 2)[0])
from ml_pipeline.train_onnx import main
if __name__ == "__main__":
main()