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

The indicator searches for the "Inside Bar" pattern and marks it on a chart. In the Inside Bar candlestick pattern, the right candlestick is inside the right candlestick, which is the determinant candlestick. It searches for formations, in which the internal candlestick of the pattern is not more than half the size of the determinant candlestick.

The formula for the bullish setup:

  1. High[i]<High[i-1],
  2. Low[i]>Low[i-1],
  3. (High[i-1]-Low[i-1])/(High[i]-Low[i])>2,
  4. Close[i]>Open[i],
  5. High[i]<Median[i-1],
  6. Close[i-1]<Open[i-1].
  7. The formula for the bearish setup:

    1. High[i]<High[i-1],
    2. Low[i]>Low[i-1],
    3. (High[i-1]-Low[i-1])/(High[i]-Low[i])>2,
    4. Close[i]<Open[i],
    5. Low[i]<Median[i-1],
    6. Close[i-1]>Open[i-1].
    7. The indicator has no configurable parameters, since the pattern is determined based on the price action.

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

      Autocorrelation Autocorrelation

      The indicator calculates and displays on a chart the autocorrelation function, which shows the relationship between the function (signal) and its shifted copy depending on the time shift value.

      AsymmetricFractals AsymmetricFractals

      The indicator allows setting any dimension for each side of a fractal.

      SSS SSS

      SSS (Special Slow Stochastic) has an additional smoothed (slow) line based on the Stochastic signal line.

      AD AD

      The AD (Accumulation Distribution) indicator with three calculation methods.