• Informations
10+ années
expérience
0
produits
0
versions de démo
0
offres d’emploi
0
signaux
0
les abonnés
There are two hard problems in computer science: 1) computers and 2) science.
Maxim Dmitrievsky
Maxim Dmitrievsky
Want to learn more about machine learning? Subscribe this channel to receive the latest and actual information!

https://www.mql5.com/ru/channels/machinelearning
Maxim Dmitrievsky
Article publié Кластеризация временных рядов в причинно-следственном выводе
Кластеризация временных рядов в причинно-следственном выводе

Алгоритмы кластеризации в машинном обучении — это важные алгоритмы обучения без учителя, которые позволяют разделять исходные данные на группы с похожими наблюдениями. Используя эти группы, можно проводить анализ рынка для конкретного кластера, искать наиболее устойчивые кластеры на новых данных, а также делать причинно-следственный вывод. В статье предложен авторский метод кластеризации временных рядов на языке Python.

2
Maxim Dmitrievsky
Article publié Показатель склонности (Propensity score) в причинно-следственном выводе
Показатель склонности (Propensity score) в причинно-следственном выводе

В статье рассматривается тема матчинга в причинно-следственном выводе. Матчинг используется для сопоставления похожих наблюдений в наборе данных. Это необходимо для правильного определения каузальных эффектов, избавления от предвзятости. Автор рассказывает, как это помогает в построении торговых систем на машинном обучении, которые становятся более устойчивыми на новых данных, на которых не обучались. Центральная роль отводится показателю склонности, который широко используется в причинно-следственном выводе.

2
Maxim Dmitrievsky
Code publié ONNX Trader
Пример бота со встроенной моделью машинного обучения, которая обучена на питоне и сохранена в формат ONNX.
2 167
Maxim Dmitrievsky
Article publié Причинно-следственный вывод в задачах классификации временных рядов
Причинно-следственный вывод в задачах классификации временных рядов

В этой статье мы рассмотрим теорию причинно-следственного вывода с применением машинного обучения, а также реализацию авторского подхода на языке Python. Причинно-следственный вывод и причинно-следственное мышление берут свои корни в философии и психологии, это важная часть нашего способа мыслить эту реальность.

5
Maxim Dmitrievsky
Article publié Cross-validation and basics of causal inference in CatBoost models, export to ONNX format
Cross-validation and basics of causal inference in CatBoost models, export to ONNX format

The article proposes the method of creating bots using machine learning.

4
Maxim Dmitrievsky
Sujet ajouté Questions sur la langue SI
void quicksort( double *a, int *idx, int l, int u) {    int i, m, idx_temp;    double a_temp;    if (l >= u)      return ;   m = l;    for (i=l+ 1 ; i<=u; i++)
Maxim Dmitrievsky
Sujet ajouté Interpolation, approximation et autres (paquet alglib)
J'ai besoin d'interpoler une fonction avec des paramètres arbitraires, j'ai donc choisi les splines. This subroutine builds cubic spline interpolant. INPUT PARAMETERS:     
Maxim Dmitrievsky
Sujet ajouté Analysez les caractéristiques STATISTIQUES importantes du modèle et choisissez une méthode de trading sur ce modèle.
Disons que nous avons un morceau d'un tableau. Nous devons trouver (sur l'histoire) la meilleure façon d'ouvrir des marchés sur ce sujet. Où acheter, où vendre, où acheter davantage, où fermer, etc. Mais nous devons tenir compte du fait que les
Maxim Dmitrievsky
Sujet ajouté Récupération d'un flux de prix via WebSocket en C#.
Bonjour, chers Messieurs. Intéressé à recevoir des cotations de différentes sources (y compris la bourse LMAX). Étant donné que différents courtiers sont connectés à différents ECN, fournisseurs de liquidités, il est préférable d'obtenir des
Maxim Dmitrievsky
Sujet ajouté L'arbitrage de change, est-ce que cela vaut la peine de s'y intéresser ?
Je me demande si quelqu'un a rencontré des cotations décalées de différents courtiers sur FORTS ? Est-ce que cela vaut la peine de creuser dans cette direction, ou bien tout est clair depuis longtemps et il n'y a pas besoin de jouer autour ? :) Y
Maxim Dmitrievsky
Sujet ajouté Je suis déjà sur le point d'abandonner la lutte contre eux...
Quelqu'un peut-il me dire ce qui pourrait causer ces erreurs ? Le niveau de StopLevels est de 20 pips, tous les trades devraient passer. Les handicaps et les hors-citations sont ennuyeux :)
Maxim Dmitrievsky
Sujet ajouté Conseillers en réseaux neuronaux, partageant leurs expériences.
Le forum contient peu d'informations sur les solutions toutes faites et sur l'efficacité des réseaux neuronaux pour les échanges sur le marché. Je vous propose de discuter et de partager votre expérience ici. S'il existe déjà un fil de discussion
Maxim Dmitrievsky
Sujet ajouté Utilisation d'OpenCV pour reconnaître des motifs graphiques
Il est de notoriété publique que la corrélation et les méthodes similaires ne traitent pas avec précision la correspondance des séries temporelles, et dans certains cas ne sont pas précises du tout. La vision par ordinateur s'est récemment répandue
Maxim Dmitrievsky
Article publié Machine learning in Grid and Martingale trading systems. Would you bet on it?
Machine learning in Grid and Martingale trading systems. Would you bet on it?

This article describes the machine learning technique applied to grid and martingale trading. Surprisingly, this approach has little to no coverage in the global network. After reading the article, you will be able to create your own trading bots.

6
Maxim Dmitrievsky
Article publié Finding seasonal patterns in the forex market using the CatBoost algorithm
Finding seasonal patterns in the forex market using the CatBoost algorithm

The article considers the creation of machine learning models with time filters and discusses the effectiveness of this approach. The human factor can be eliminated now by simply instructing the model to trade at a certain hour of a certain day of the week. Pattern search can be provided by a separate algorithm.

11
Maxim Dmitrievsky
Article publié Gradient boosting in transductive and active machine learning
Gradient boosting in transductive and active machine learning

In this article, we will consider active machine learning methods utilizing real data, as well discuss their pros and cons. Perhaps you will find these methods useful and will include them in your arsenal of machine learning models. Transduction was introduced by Vladimir Vapnik, who is the co-inventor of the Support-Vector Machine (SVM).

8
Maxim Dmitrievsky
Article publié Advanced resampling and selection of CatBoost models by brute-force method
Advanced resampling and selection of CatBoost models by brute-force method

This article describes one of the possible approaches to data transformation aimed at improving the generalizability of the model, and also discusses sampling and selection of CatBoost models.

7
Maxim Dmitrievsky
Article publié Gradient Boosting (CatBoost) in the development of trading systems. A naive approach
Gradient Boosting (CatBoost) in the development of trading systems. A naive approach

Training the CatBoost classifier in Python and exporting the model to mql5, as well as parsing the model parameters and a custom strategy tester. The Python language and the MetaTrader 5 library are used for preparing the data and for training the model.

11
Maxim Dmitrievsky
Article publié Econometric approach to finding market patterns: Autocorrelation, Heat Maps and Scatter Plots
Econometric approach to finding market patterns: Autocorrelation, Heat Maps and Scatter Plots

The article presents an extended study of seasonal characteristics: autocorrelation heat maps and scatter plots. The purpose of the article is to show that "market memory" is of seasonal nature, which is expressed through maximized correlation of increments of arbitrary order.

10
12