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
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env python3
"""
Start Mad Turtle inference server.
Run: python3 python/run_server.py
"""
import sys
sys.path.insert(0, str(__file__).rsplit("/", 2)[0])
import uvicorn
from inference_server.server import app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000, log_level="info")