Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Indicateurs

Projection_Bands - indicateur pour MetaTrader 5

Vues:
4466
Note:
(12)
Publié:
2018.08.23 13:40
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The indicator was first proposed by Mel Widner ("Technical Analysis of Stocks & Commodities" magazine, July 1995). Along with similar indicators, such as price channels, envelopes or Bollinger bands, it allows you to define the borders of price ranges.

The indicator has one customizable parameter:

  • Period - calculation period.

Calculation:

UpBand = Maximum(High, PrevHigh*SlopeHigh)
DnBand = Minimum(Low, PrevLow*SlopeLow)

where:

  • SlopeHigh - regression line slope of High prices in the Period range;
  • SlopeLow - regression line slope of Low prices in the Period range.

Interpretation:

  • When the price reaches the upper border, it is considered to be at the resistance level. The market is overbought;
  • When the price is located on the lower border, the market is oversold.

In order to sort out signals, use a a detrending oscillator to exclude the trend component, since overbought/oversold levels may be constantly updated by new prices during strong trends, which leads to false signals and losses.

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/21544

Open_Oscillator Open_Oscillator

Market status indicator with signal lines.

Exp_CandleStop_System_Tm_Plus Exp_CandleStop_System_Tm_Plus

The trading system based on CandleStop_System indicator signals with the possibility to set a fixed position holding time.

Projection_Oscillator Projection_Oscillator

Projection Bands indicator in the form of oscillators.

RSICandleKeltner_HTF RSICandleKeltner_HTF

The RSICandleKeltner indicator with the timeframe selection option available in the input parameters.