거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
조회수:
4454
평가:
(12)
게시됨:
2018.08.23 13:40
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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.

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: 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.