Artyom Trishkin
Artyom Trishkin
4.2 (65)
  • 信息
13+ 年
经验
0
产品
0
演示版
20
工作
0
信号
0
订阅者
Программист
Writing scripts, indicators, EAs on mql4 and mql5
------------------------------------------------
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.
My nickname on Mql4.com - atrmedia70 ( https://www.mql5.com/ru/users/artmedia70?utm_campaign=MQL4.community )
------------------------------------------------
Create a new job for me: https://www.mql5.com/en/job/new?prefered=artmedia70 (english) Go to the link, create jobs and send me a link to it on Skype artmedia70 specifying the that this new work.
------------------------------------------------
Artyom Trishkin
已发布文章Таблицы в парадигме MVC на MQL5: Таблица корреляции символов
Таблицы в парадигме MVC на MQL5: Таблица корреляции символов

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

2
Artyom Trishkin
已发布文章Автоматизация запуска терминала для выполнения сервисных задач
Автоматизация запуска терминала для выполнения сервисных задач

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

2
Artyom Trishkin
已发布文章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
已发布代码包含创建图形对象示例函数的脚本
该脚本提供了一套用于创建所有标准图形对象的函数,供您在开发过程中使用。脚本中提供的函数可以 "按原样 "使用,也可以根据您的要求进行修改。
· 1 246 164
Artyom Trishkin
已发布文章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
已发布代码ExpPinBar - 针形柱状价格行动模式的智能交易系统
基于 iPinBar Pin Bar Finder + 多个不同跟踪指标的智能交易系统
· 1 571 623
Artyom Trishkin
已发布代码适用于 MQL5 的 StopLoss 追踪类库
通过固定缩进、抛物线 SAR 和移动平均线指标值或指定的仓位止损水平自动移动未结头寸止损的一组类。
· 3 286 407
Artyom Trishkin
已发布代码基于 WPR、布林带和 ATR 指标的简单专家顾问工具
基于两个指标信号的简单策略:威廉百分比范围 (WPR) 和布林线 (BB)。只有当两个指标的信号一致时,才会开仓。
· 3 814 1638
Artyom Trishkin
已发布代码美元指数
为 MetaTrader 5 提供的一项服务,可创建实时反映美元指数 (DXY) 的合成自定义符号 "USDX.synthetic"。
· 2 416 296
Artyom Trishkin
已发布代码查找针杆
该指标在图表中搜索 "销钉柱形图 "的价格行为模式,并将图标放在找到模式的柱形图上。
· 2 422 915
Artyom Trishkin
已发布代码删除交易历史
脚本会删除当前图表中的所有自动交易图标
· 2 213 250
Artyom Trishkin
已发布文章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
已发布文章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
已发布文章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
已发布文章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
已发布文章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
已发布文章Table and Header Classes based on a table model in MQL5: Applying the MVC concept
Table and Header Classes based on a table model in MQL5: Applying the MVC concept

This is the second part of the article devoted to the implementation of the table model in MQL5 using the MVC (Model-View-Controller) architectural paradigm. The article discusses the development of table classes and the table header based on a previously created table model. The developed classes will form the basis for further implementation of View and Controller components, which will be discussed in the following articles.

2
Artyom Trishkin
已发布文章MQL5中表格模型的实现:应用MVC概念
MQL5中表格模型的实现:应用MVC概念

在本文中,我们将探讨如何使用MVC(模型-视图-控制器)架构模式在MQL5中开发表格模型,该模式可将数据逻辑、展示和控制进行分离,从而实现结构化、灵活且可扩展的代码。我们将考虑实现用于构建表格模型的各类,包括使用链表来存储数据。

Artyom Trishkin
已发布文章Визуализация стратегий в MQL5: раскладываем результаты оптимизации по графикам критериев
Визуализация стратегий в MQL5: раскладываем результаты оптимизации по графикам критериев

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

3
Artyom Trishkin
已发布文章事后交易分析:在策略测试器中选择尾随停止和新的止损位
事后交易分析:在策略测试器中选择尾随停止和新的止损位

我们继续在策略测试器中分析已完结成交的主题,以便提升交易品质。我们看看使用不同的尾随停止如何改变我们现有的交易结果。