Stanislav Korotky
Stanislav Korotky
4.2 (68)
  • Information
10+ years
experience
98
products
136
demo versions
0
jobs
0
signals
0
subscribers
Trading is just my hobby. I'm working in IT industry. So developement of experts, indicators, and script is not a problem at all to me. Wide range of technologies are used: MQL4, MQL5, system and applied programming, web-services, neural networks and more.

New:
PnFxo - (MT5) https://www.mql5.com/en/market/product/61592
MACD Advanced - (MT5) https://www.mql5.com/en/market/product/61515
PFKBreakOut - (MT5) https://www.mql5.com/en/market/product/61170
PointFigureKagiCharts - (MT5) https://www.mql5.com/en/market/product/61168
PointFigureKagiCharts - [demo] https://www.mql5.com/en/market/product/61169
CustomVolumeDelta - (MT5) https://www.mql5.com/en/market/product/60798
RenkoFromRealTicks - (MT5) https://www.mql5.com/en/market/product/60797
RenkoFromRealTicks - [demo] https://www.mql5.com/en/market/product/60824
UniversalDashboard - (MT5) https://www.mql5.com/en/market/product/59610
VolumeDeltaWaves - (MT5) https://www.mql5.com/en/market/product/54183
AutomaticZigZag - (MT5) https://www.mql5.com/en/market/product/54123
VolumeDeltaScanner - (MT5) https://www.mql5.com/en/market/product/53549
ADXSignal - (MT5) https://www.mql5.com/en/market/product/50861
CyclicPatterns - (MT5) https://www.mql5.com/en/market/product/40547

Latest Updates:
WalkForwardOptimizer 1.11 - (MT5) https://www.mql5.com/en/market/product/23068
TrueVolumeSurrogate 1.4 - (MT5) https://www.mql5.com/en/market/product/18319
VolumeDeltaM1 1.6 - (MT5) https://www.mql5.com/en/market/product/18307

Most popular products, user choice:
VolumeDelta
+ (MT4) https://www.mql5.com/en/market/product/5102
+ (MT5) https://www.mql5.com/en/market/product/18307
CumulativeVolumeDeltaBars
+ (MT4) https://www.mql5.com/en/market/product/18285
+ (MT5) https://www.mql5.com/en/market/product/18238
TrueVolumeSurrogate
+ (MT4) https://www.mql5.com/en/market/product/5380
+ (MT5) https://www.mql5.com/en/market/product/18319
WalkForwardOptimizer
+ (MT4) https://www.mql5.com/en/market/product/17683
+ (MT5) https://www.mql5.com/en/market/product/23068
VolumeDeltaM1
+ (MT4) https://www.mql5.com/en/market/product/13353
+ (MT5) https://www.mql5.com/en/market/product/18307
OnBalanceVolumeSurrogate
+ (MT4) https://www.mql5.com/en/market/product/8531
+ (MT5) https://www.mql5.com/en/market/product/18320
OrderBook History Library
+ (MT5) https://www.mql5.com/en/market/product/30681
RenkoTradingBot
+ (MT4) https://www.mql5.com/en/market/product/9170
ADXS/ADXSignal
+ (MT4) https://www.mql5.com/en/market/product/5052
+ (MT5) https://www.mql5.com/en/market/product/50861

Please note: if I'm banned due to inadequate judgment of specific MetaQuotes' staff, my actions on the site are very limited and I can not afford proper support for my products.
Stanislav Korotky Published product

VolumeDeltaScanner is a volume delta monitor for multiple (up to 10) time scopes. It works by online ticks or history ticks. Indicator monitors tick volumes for buys and sells separately, and find their delta on every bar and larger scopes, then displays the volume deltas for all the scopes. Every scope is presented by its own buffer/line. The smallest scope is the current timeframe. It's required. All other scopes should be multiples of it. For example, if placed on a M5 chart, it can

Stanislav Korotky
Published article Parallel Particle Swarm Optimization
Parallel Particle Swarm Optimization

The article describes a method of fast optimization using the particle swarm algorithm. It also presents the method implementation in MQL, which is ready for use both in single-threaded mode inside an Expert Advisor and in a parallel multi-threaded mode as an add-on that runs on local tester agents.

Stanislav Korotky
Published article Custom symbols: Practical basics
Custom symbols: Practical basics

The article is devoted to the programmatic generation of custom symbols which are used to demonstrate some popular methods for displaying quotes. It describes a suggested variant of minimally invasive adaptation of Expert Advisors for trading a real symbol from a derived custom symbol chart. MQL source codes are attached to this article.

Stanislav Korotky
Stanislav Korotky
Recent trade opportunity with SuperIndices on Russian oil industry.
Ernst Theobald
Ernst Theobald 2020.06.24
Hallo Stanislav, I buy and instaled you TUS for MT5. Do you have a more detaied instruction how to use it?
I need alerts on the PC and per sms?
How can I adjust the volume-level at which I am getting an allert?
Greetings from Germany, Ernst theobald@sekuria.de
004967217018145
Stanislav Korotky
Stanislav Korotky 2020.06.29
There are no notifications about comments here, so please send all support requests via private messages (chats). SMS are not natively supported by MT. The indicator fires standard Alerts at sigma levels specified in the input parameters.
Stanislav Korotky
Published code M1MA indicator
M1-based Moving Average. It gives more adequate estimation of average price per bar compared to any standard price type (close, open, median, typical, weighted, etc).
· 2 12609 882
Stanislav Korotky Published product

30.00 USD

Classical ADX revamped to provide faster and more solid trading signals. This indicator calculates ADX values using standard formulae, but excludes operation of taking the module of ADX values, which is forcedly added into ADX for some reason. In other words, the indicator preserves natural signs of ADX values, which makes it more consistent, easy to use, and gives signals earlier than standard ADX. Strictly speaking, any conversion to an absolute value destroys a part of information, and it

Stanislav Korotky
Published article Calculating mathematical expressions (Part 2). Pratt and shunting yard parsers
Calculating mathematical expressions (Part 2). Pratt and shunting yard parsers

In this article, we consider the principles of mathematical expression parsing and evaluation using parsers based on operator precedence. We will implement Pratt and shunting-yard parser, byte-code generation and calculations by this code, as well as view how to use indicators as functions in expressions and how to set up trading signals in Expert Advisors based on these indicators.

Stanislav Korotky
Published article Calculating mathematical expressions (Part 1). Recursive descent parsers
Calculating mathematical expressions (Part 1). Recursive descent parsers

The article considers the basic principles of mathematical expression parsing and calculation. We will implement recursive descent parsers operating in the interpreter and fast calculation modes, based on a pre-built syntax tree.

Stanislav Korotky
Published article MQL as a Markup Tool for the Graphical Interface of MQL Programs (Part 3). Form Designer
MQL as a Markup Tool for the Graphical Interface of MQL Programs (Part 3). Form Designer

In this paper, we are completing the description of our concept of building the window interface of MQL programs, using the structures of MQL. Specialized graphical editor will allow to interactively set up the layout that consists of the basic classes of the GUI elements and then export it into the MQL description to use it in your MQL project. The paper presents the internal design of the editor and a user guide. Source codes are attached.

Stanislav Korotky
Published article MQL as a Markup Tool for the Graphical Interface of MQL Programs. Part 2
MQL as a Markup Tool for the Graphical Interface of MQL Programs. Part 2

This paper continues checking the new conception to describe the window interface of MQL programs, using the structures of MQL. Automatically creating GUI based on the MQL markup provides additional functionality for caching and dynamically generating the elements and controlling the styles and new schemes for processing the events. Attached is an enhanced version of the standard library of controls.

Stanislav Korotky
Published article MQL as a Markup Tool for the Graphical Interface of MQL Programs. Part 1
MQL as a Markup Tool for the Graphical Interface of MQL Programs. Part 1

This paper proposes a new conception to describe the window interface of MQL programs, using the structures of MQL. Special classes transform the viewable MQL markup into the GUI elements and allow manage them, set up their properties, and process the events in a unified manner. It also provides some examples of using the markup for the dialogs and elements of a standard library.

Stanislav Korotky
Published article Applying OLAP in trading (part 4): Quantitative and visual analysis of tester reports
Applying OLAP in trading (part 4): Quantitative and visual analysis of tester reports

The article offers basic tools for the OLAP analysis of tester reports relating to single passes and optimization results. The tool can work with standard format files (tst and opt), and it also provides a graphical interface. MQL source codes are attached below.

Михаил Шерстнёв
Михаил Шерстнёв 2020.02.28
Шикарная идея. Начинаю копить деньги - может кто напишет )))
Stanislav Korotky
Published article Forecasting Time Series (Part 2): Least-Square Support-Vector Machine (LS-SVM)
Forecasting Time Series (Part 2): Least-Square Support-Vector Machine (LS-SVM)

This article deals with the theory and practical application of the algorithm for forecasting time series, based on support-vector method. It also proposes its implementation in MQL and provides test indicators and Expert Advisors. This technology has not been implemented in MQL yet. But first, we have to get to know math for it.

Stanislav Korotky
Published code MQL5 Program Packer
This is MQL5 project packer: assemble all source and resource files from dependencies into a single ZIP.
· 3 7886 427
Trick free
Trick free 2020.05.23
234000
Stanislav Korotky
Published article Forecasting Time Series (Part 1): Empirical Mode Decomposition (EMD) Method
Forecasting Time Series (Part 1): Empirical Mode Decomposition (EMD) Method

This article deals with the theory and practical use of the algorithm for forecasting time series, based on the empirical decomposition mode. It proposes the MQL implementation of this method and presents test indicators and Expert Advisors.

Stanislav Korotky
Published article Applying OLAP in trading (part 3): Analyzing quotes for the development of trading strategies
Applying OLAP in trading (part 3): Analyzing quotes for the development of trading strategies

In this article we will continue dealing with the OLAP technology applied to trading. We will expand the functionality presented in the first two articles. This time we will consider the operational analysis of quotes. We will put forward and test the hypotheses on trading strategies based on aggregated historical data. The article presents Expert Advisors for studying bar patterns and adaptive trading.

Stanislav Korotky
Published code Pseudo-Indicator with Asynchronous Multi-Threaded Calculations Demo
This is an indicator w/o buffers which demonstrates parallel multi-threaded calculations in chart objects hosting worker expert adviser.
· 1 10996 392
Stanislav Korotky
Published code WmiFor 3.5 for MT5 (with DTW engine)
This indicator predicts future price movements by searching for similar candle patterns in the rate history.
· 2 16759 2030
Stanislav Korotky
Published code BPNN MQL Predictor Demo with library
This is a demo indicator with BPNN neural network library ported from C++ to MQL.
· 2 11807 1173
Stanislav Korotky
Published code MultiMartin
This is a multi-currency expert adviser based on reversal strategy with martingale. Original idea is taken from ExpMartin for MT4.
· 2 16473 1949