├── .DS_Store ├── .gitignore ├── LICENSE ├── MQL5 ├── .DS_Store ├── Experts │ └── MyTradingBot.mq5 ├── Include │ └── RiskManagement.mqh ├── Indicators │ ├── FractalScanner.mq5 │ └── OrderBlock.mq5 └── Scripts │ └── DataExporter.mq5 ├── README.md ├── TRADING_FUNCTIONS_AUDIT_REPORT.md ├── lstm_model.h5 ├── python ├── data_processing │ └── preprocess_merge.py ├── live_prediction.py └── models │ ├── best_model_v2.h5 │ ├── lstm_model_v2.h5 │ ├── scaler_v2.pkl │ └── train.py ├── requirements.txt └── tests ├── test_inference.py └── test_train.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /MQL5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/MQL5/.DS_Store -------------------------------------------------------------------------------- /MQL5/Experts/MyTradingBot.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/MQL5/Experts/MyTradingBot.mq5 -------------------------------------------------------------------------------- /MQL5/Include/RiskManagement.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/MQL5/Include/RiskManagement.mqh -------------------------------------------------------------------------------- /MQL5/Indicators/FractalScanner.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/MQL5/Indicators/FractalScanner.mq5 -------------------------------------------------------------------------------- /MQL5/Indicators/OrderBlock.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/MQL5/Indicators/OrderBlock.mq5 -------------------------------------------------------------------------------- /MQL5/Scripts/DataExporter.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/MQL5/Scripts/DataExporter.mq5 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/README.md -------------------------------------------------------------------------------- /TRADING_FUNCTIONS_AUDIT_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/TRADING_FUNCTIONS_AUDIT_REPORT.md -------------------------------------------------------------------------------- /lstm_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/lstm_model.h5 -------------------------------------------------------------------------------- /python/data_processing/preprocess_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/python/data_processing/preprocess_merge.py -------------------------------------------------------------------------------- /python/live_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/python/live_prediction.py -------------------------------------------------------------------------------- /python/models/best_model_v2.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/python/models/best_model_v2.h5 -------------------------------------------------------------------------------- /python/models/lstm_model_v2.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/python/models/lstm_model_v2.h5 -------------------------------------------------------------------------------- /python/models/scaler_v2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/python/models/scaler_v2.pkl -------------------------------------------------------------------------------- /python/models/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/python/models/train.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/test_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/tests/test_inference.py -------------------------------------------------------------------------------- /tests/test_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosrod723/MQL5-Trading-Bot/HEAD/tests/test_train.py --------------------------------------------------------------------------------