feat: Add MT5 trading bot project files

This commit includes the initial project files for the MT5 trading bot. It includes:

- MQL5 scripts for exporting data and for the trading EAs.

- Python scripts for model development and for creating a benchmark model.

- ONNX models for the trading EAs.

- A file with all the code concatenated.

- A directory with the separate code files.
This commit is contained in:
Ash
2025-10-23 23:02:10 +01:00
parent e9b49bb370
commit 1e16b161c4
9 changed files with 717 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
Time,Open,High,Low,Close,Volume
2023.01.01,1.1,1.2,1.0,1.15,100
2023.01.02,1.15,1.25,1.1,1.2,200
2023.01.03,1.2,1.3,1.15,1.25,300
2023.01.04,1.25,1.35,1.2,1.3,400
2023.01.05,1.3,1.4,1.25,1.35,500
1 Time Open High Low Close Volume
2 2023.01.01 1.1 1.2 1.0 1.15 100
3 2023.01.02 1.15 1.25 1.1 1.2 200
4 2023.01.03 1.2 1.3 1.15 1.25 300
5 2023.01.04 1.25 1.35 1.2 1.3 400
6 2023.01.05 1.3 1.4 1.25 1.35 500