Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Indicators

Projection_Bands - indicator for MetaTrader 5

Views:
4435
Rating:
(12)
Published:
2018.08.23 13:40
Need a robot or indicator based on this code? Order it on Freelance Go to 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.

Translated from Russian by MetaQuotes Ltd.
Original code: 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.