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

The idea is that the sharper trend movement is, the greater is the momentum, and the closer is the value of the momentum to the sum of the ranges of bars. So the indicator is the ratio of the momentum to the sum of ranges:

Change To Range Ratio = (close[bar] - close[bar-period]) / Sum(high - low)

This indicator is very similar to Range Ratio, but it uses a difference between the closing prices, which provides the following benefits:

  • more accurate signals;
  • turns the indicator into an oscillator with oversold and overbought areas.

The indicator is designed for short-term trading on high timeframes (H4 and higher), and works well with 3-5 bar period. Values ​​greater than 0.5 indicate an overbought market, and therefore you should close long positions and shouldn't open new ones. Values ​​less than -0.5 warn against opening short positions, or, if there are open new ones, you should close them.

ChangeToRangeRatio

Tips:

  • I do not advise to use the indicator with a period of more than 5, as it is designed for short-term systems, so the greater the value of the period - the less reliable is the signal.
  • Example of use as a filter: if you receive a buy signal on the timeframe H1, but on the daily chart in an uptrend the value of the indicator is greater than 0.5 - it is recommended to ignore the signal. In other words, intending to enter the market, check the value of ChangeToRangeRatio on a higher timeframe.

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/1759

MTF_MACD_Bars MTF_MACD_Bars

A semaphore signal indicator showing the MACD histogram calculated on the timeframe specified in the input parameters

Tro_Range Tro_Range

A simple volatility meter which displays sizes of candlesticks in a separate subwindow

ATRStops_v1 ATRStops_v1

A trend indicator implemented in the form of NRTR

Volatility2 Volatility2

A simple indicator that calculates only the volatility of a financial asset