Artyom Trishkin
Artyom Trishkin
4.2 (65)
  • Informations
13+ années
expérience
0
produits
0
versions de démo
20
offres d’emploi
0
signaux
0
les abonnés
Программист à
X
Writing scripts, indicators, EAs on mql5 and mql4
------------------------------------------------
Reliable, high quality. Help you check your strategy in StrategyTester, offer options to increase profitability. I write as a tester, and for demo and live trading.
------------------------------------------------
For all questions, please contact personal messages.
------------------------------------------------
Artyom Trishkin
Article publié Индикатор CandleCode: Формализация свечных моделей в MQL5
Индикатор CandleCode: Формализация свечных моделей в MQL5

В статье показана практическая реализация CandleCode для MetaTrader 5: расчет кодов свечей по методу Лиховидова с адаптацией порогов к волатильности (Bollinger Bands) и гистограммное отображение. Дополнительно представлен советник, который строит базу исторических паттернов по ZigZag, сравнивает их с текущим "слепком" через ATR и выдает статистику совпадений на панели.

2
Artyom Trishkin
Article publié Забытая классика объёма: индикатор "Finite Volume Elements" для современных рынков
Забытая классика объёма: индикатор "Finite Volume Elements" для современных рынков

В статье рассмотрим индикатор Finite Volume Elements (FVE), позволяющий выявлять истинные потоки капитала на рынке. Реализуем FVE для MetaTrader 5 и рассмотрим рекомендации по его использованию в торговле.

2
Artyom Trishkin
Article publié Математика волатильности: Почему индикатор GRI достоин возвращения в ваш торговый терминал
Математика волатильности: Почему индикатор GRI достоин возвращения в ваш торговый терминал

Статья посвящена индикатору Gopalakrishnan Range Index (GRI/ROCI), который количественно оценивает "хаотичность" рынка через логарифм диапазона цен закрытия за заданный период. Показано, как реализовать GRI в MetaTrader 5, устранить проблему отрицательных значений с помощью сдвинутого логарифма и привести шкалу к удобным "пунктам" через нормировку на Point. Далее рассматриваются практические сценарии применения GRI как фильтра волатильности и рыночных фаз.

2
Artyom Trishkin
Article publié Таблицы в парадигме MVC на MQL5: Таблица корреляции символов
Таблицы в парадигме MVC на MQL5: Таблица корреляции символов

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

2
Artyom Trishkin
Article publié Автоматизация запуска терминала для выполнения сервисных задач
Автоматизация запуска терминала для выполнения сервисных задач

В статье рассмотрим возможность запуска терминала с конфигурационным файлом для выполнения автоматизированных рутинных задач, программную обработку такого запуска, и создадим полноценную систему автооптимизации советника средствами ОС Windows.

2
Artyom Trishkin
Article publié Tables in the MVC Paradigm in MQL5: Customizable and sortable table columns
Tables in the MVC Paradigm in MQL5: Customizable and sortable table columns

In the article, we will make the table column widths adjustable using the mouse cursor, sort the table by column data, and add a new class to simplify the creation of tables based on any data sets.

3
Artyom Trishkin
Code publié Script avec des exemples de fonctions pour la création d'objets graphiques
Le script fournit un ensemble de fonctions permettant de créer tous les objets graphiques standard à utiliser dans vos propres développements. Les fonctions présentées dans le script peuvent être utilisées "telles quelles" ou modifiées selon vos besoins.
Artyom Trishkin
Article publié How to publish code to CodeBase: A practical guide
How to publish code to CodeBase: A practical guide

In this article, we will use real-life examples to illustrate posting various types of terminal programs in the MQL5 source code base.

1
Artyom Trishkin
Code publié ExpPinBar - Expert Advisor pour les modèles d'action de prix de type Pin Bar
Expert Advisor basé sur iPinBar Pin Bar Finder + plusieurs indicateurs de suivi différents
Artyom Trishkin
Code publié Bibliothèque de classes traînantes StopLoss pour MQL5
Un ensemble de classes pour le déplacement automatique du StopLoss des positions ouvertes en fonction d'une indentation fixe ou des valeurs des indicateurs Parabolic SAR et des moyennes mobiles, ou en fonction du niveau de stop de la position spécifiée.
Artyom Trishkin
Code publié Expert Advisor simple basé sur les indicateurs WPR, Bollinger Bands et ATR
Une stratégie simple basée sur les signaux de deux indicateurs : Williams' Percent Range (WPR) et Bollinger Bands (BB). Une position n'est ouverte que lorsque les signaux des deux indicateurs coïncident.
Artyom Trishkin
Code publié Indice du dollar américain
Un service pour MetaTrader 5 qui crée un symbole synthétique personnalisé "USDX.synthetic" reflétant le US Dollar Index (DXY) en temps réel.
Artyom Trishkin
Code publié Trouver des barres d'épingles
L'indicateur recherche sur le graphique les configurations d'action de prix "Pin Bar" et place des icônes sur la barre avec la configuration trouvée.
Artyom Trishkin
Code publié Supprimer l'historique des transactions
Le script supprime toutes les icônes d'autotrading du graphique actuel.
Artyom Trishkin
Article publié Tables in the MVC Paradigm in MQL5: Integrating the Model Component into the View Component
Tables in the MVC Paradigm in MQL5: Integrating the Model Component into the View Component

In the article, we will create the first version of the TableControl (TableView) control. This will be a simple static table being created based on the input data defined by two arrays — a data array and an array of column headers.

2
Artyom Trishkin
Article publié The View and Controller components for tables in the MQL5 MVC paradigm: Resizable elements
The View and Controller components for tables in the MQL5 MVC paradigm: Resizable elements

In the article, we will add the functionality of resizing controls by dragging edges and corners of the element with the mouse.

2
Artyom Trishkin
Article publié The View and Controller components for tables in the MQL5 MVC paradigm: Containers
The View and Controller components for tables in the MQL5 MVC paradigm: Containers

In this article, we will discuss creating a "Container" control that supports scrolling its contents. Within the process, the already implemented classes of graphics library controls will be improved.

2
Artyom Trishkin
Article publié The View and Controller components for tables in the MQL5 MVC paradigm: Simple controls
The View and Controller components for tables in the MQL5 MVC paradigm: Simple controls

The article covers simple controls as components of more complex graphical elements of the View component within the framework of table implementation in the MVC (Model-View-Controller) paradigm. The basic functionality of the Controller is implemented for interaction of elements with the user and with each other. This is the second article on the View component and the fourth one in a series of articles on creating tables for the MetaTrader 5 client terminal.

2
Artyom Trishkin
Article publié The View component for tables in the MQL5 MVC paradigm: Base graphical element
The View component for tables in the MQL5 MVC paradigm: Base graphical element

The article covers the process of developing a base graphical element for the View component as part of the implementation of tables in the MVC (Model-View-Controller) paradigm in MQL5. This is the first article on the View component and the third one in a series of articles on creating tables for the MetaTrader 5 client terminal.

1
Artyom Trishkin
Article publié Classes de table et d'en-tête basées sur un modèle de tableau dans MQL5 : Application du concept MVC
Classes de table et d'en-tête basées sur un modèle de tableau dans MQL5 : Application du concept MVC

Voici la deuxième partie de l'article consacré à l'implémentation du modèle de tableau dans MQL5 en utilisant le paradigme architectural MVC (Modèle-Vue-Contrôleur). L'article traite du développement des classes de tableau et de l'en-tête de tableau sur la base d'un modèle de tableau créé précédemment. Les classes développées constitueront la base de l'implémentation ultérieure des composants Vue et Contrôleur, qui seront abordés dans les articles suivants.