View RSS Feed

mql5

  1. Practical application of neural networks in trading. Python (Part I)

    by , 01-06-2021 at 07:17 AM
    Name:  optimz31.png
Views: 188
Size:  55.2 KB

    In the previous article entitled "Practical application of neural networks in trading. It's time to practice", we considered the practical application of a neural network module implemented using Matlab neural networks. However, that article did not cover questions related to the preparation of input data and network training related operations. In this article, we will consider these questions using examples and will implement further code using
    ...
  2. Gradient Boosting (CatBoost) in the development of trading systems. A naive approach

    by , 11-17-2020 at 06:34 PM
    Name:  qqqq.png
Views: 209
Size:  13.2 KB

    Gradient boosting is a powerful machine learning algorithm. The method produces an ensemble of weak models (for example, decision trees), in which (in contrast to bagging) models are built sequentially, rather than independently (in parallel). This means that the next tree learns from the mistakes of the previous one, then this process is repeated, increasing the number of weak models. This builds a strong model which can generalize using heterogeneous
    ...