docs: Update documentation files

This commit is contained in:
Ash
2025-10-28 19:33:54 +00:00
parent 46218890c5
commit 2c0706b70f
2 changed files with 13 additions and 12 deletions
+1 -1
View File
@@ -31,4 +31,4 @@ This project is a trading bot for MetaTrader 5 that uses a machine learning mode
The project uses two machine learning models:
1. **Benchmark Model**: A simple logistic regression model that predicts the direction of the next day's price change based on the previous day's price change.
2. **Neural Network Model**: A multi-layer perceptron (MLP) classifier that predicts the direction of the next day's price change based on the previous day's price change. The model is trained using hyperparameter tuning with `RandomizedSearchCV` and `TimeSeriesSplit` to find the best parameters.
2. **Neural Network Model**: A multi-layer perceptron (MLP) classifier that predicts the direction of the next day's price change based on the previous day's price change. The model is trained using hyperparameter tuning with `RandomizedSearchCV` and `TimeSeriesSplit` to find the best parameters. The hyperparameter search space includes different hidden layer sizes, activation functions, solvers, and learning rates. The exact architecture of the model will vary depending on the results of the hyperparameter tuning.