Schau, wie man Roboter kostenlos herunterladen kann
Finden Sie uns auf Twitter!
und werden Sie Mitglied unserer Fangruppe
Interessantes Skript?
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Hat Ihnen das Skript gefallen?
Bewerten Sie es im Terminal MetaTrader 5
Indikatoren

Hodrick-Prescott Channel - Indikator für den MetaTrader 4

Veröffentlicht:
Alexey Volchanskiy
Ansichten:
27051
Rating:
(40)
Veröffentlicht:
2016.03.07 11:10
Aktualisiert:
2016.03.07 11:12
Benötigen Sie einen Roboter oder Indikator, der auf diesem Code basiert? Bestellen Sie ihn im Freelance-Bereich Zum Freelance

Real Author: Victor

Brief description of the channel

This channel is the augmented version of the channel for MQL5 revised for MQL4.

First, the filtered Close price values are calculated. Then, they are filtered with a larger period. The result is two arrays: HP and HPSlow. The next step is the calculation of the standard deviation of the HP relative to the HPSlow and channel plotting.

The indicator displays the value of the average spread and the ratio of the channel width to the HPSlow value on the zero bar as a percentage in the bottom right corner of the chart. Double click the text label to drag it to the desired location. It can be deleted by pressing the DEL key. The text reappears when switching timeframes.

How to correctly interpret the values of this channel?

This channel is based on the Hodrick-Prescott filter, that is one of the digital filters without delays. These types of filters look beautiful compared to the Moving Average, but they are redrawn at every new bar.

Why is this happening? In fact, it is mathematically impossible to implement an "honest" filter without delays. Any filter will have a delay equal to or greater than the number of bars set for averaging. This can be easily seen by changing the period in the Moving Average indicator. The greater the period, the better the smoothing, but the greater the delay.

There is only one way to remove the delay. The pure form of the algorithm is as follows: it is necessary to filter the input bars from left to right first, then filter the resulting sequence once again, this time from right to left. Moreover, the initial direction does not matter, as long as the second filtering is performed in the opposite direction.

In fact, the various filters without delays offer different degrees of compromise between the delay and the smoothing. But it must be clearly understood that the perfection can not be achieved, as it is not possible to tell the future.

This filter must be used to determine the instant (at the level of several new bars) direction of the price movement. If the both this channel and the Standard Deviation channel are attached to the chart, it will be evident that their directions are close to each other near the first (rightmost) bars. But if the Standard Deviation channel is plotted by three straight lines, this channel shows the direction of the price in history with a certain degree of accuracy. Moreover, the deeper the history, the lower the level of accuracy.

During the adaptation of the indicator to the MQL4 I specifically added the code that draws the "tails" of the channel. Run it in the М1 timeframe, wait for half an hour without changing the timeframe, and you will see the channel wagging its "tail". The "tail" disappears when switching timeframes.

It is recommended to use the indicator for scalping, it is not suitable for long-term strategies or for replacing the "honest" Moving Average.

Indicator input parameters:

  • HP Fast Period — the HP filtering period;
  • HP Slow Period — the HPSlow filtering period;
  • FontColor — font color.

GBPUSD.eM1.png

Übersetzt aus dem Russischen von MetaQuotes Ltd.
Originalpublikation: https://www.mql5.com/ru/code/14737

Future_Indicator Future_Indicator

The indicator based on the moving averages shifted to the left relative to the chart.

Tick Chart Tick Chart

The presented indicator plots a fully-functional tick chart similar to the standard price charts, with the ability of the analysis using all the MetaTrader features.

ChannelsFIBO_v2 ChannelsFIBO_v2

The Fibonacci channel with the ability to select the type of the reference distance.

RSI_TS RSI_TS

The RSI indicator implemented as a histogram with a designation of the overbought and oversold levels.