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

A modified indicator of Bill Williams' zone trading.

In contrast to using standard Awesome Oscillator (AO) and Accelerator Oscillator (AC), this indicator allows setting the calculation price and period for the fast and slow MAs used for the AO calculation, the smoothing period and the method for AC calculation, as well as selecting the filter type - using two indicators or any of them separately.

The indicator has six input parameters:

  • AO Fast MA period - fast MA period for the AO calculation;
  • AO Slow MA period - slow MA period for the AO calculation;
  • AO Applied price - price of MA for AO calculation;
  • AO Calculation method - method of MA for AO calculation;
  • AC smoothing period - smoothing period for the AC calculation;
  • Filter type:
    • By AO and AC - filter zones both by AO and AC;
    • By AO - filter zones by AO;
    • By AC - filter zones by AC.

The indicator is drawn in a separate window as a candlestick chart, colored depending on the zone:

  • BUS zone is green
  • SELL zone is red
  • Neutral zone is gray

The indicator is provided with four buffers and can be used inside an Expert Advisor:

  • Buffer 0: Signal Up - has a non-empty value at the time of transition from non-bullish zone to a bullish one;
  • Buffer 1: Signal Down - has a non-empty value at the time of transition from non-bearish zone to a bearish one;
  • Buffer 2: Bullish zone - has a non-empty value on all bars of the bullish zone;
  • Buffer 3: Bearish zone - has a non-empty value on all bars of the bearish zone.

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

DPO_Bar DPO_Bar

Detrended Price Oscillator Bar - price chart without a trend.

SV v.4.2.5 SV v.4.2.5

The Expert Advisor opens no more than one position per day. Positions are opened at the specified time. It searches for the Highest and Lowest price in an interval. Data of two iMA (Moving Average, MA) indicators are used.

HA EMA3 Indicator HA EMA3 Indicator

A Moving Average based on Heiken Ashi candlesticks.

LRL LRL

Linear regression line (LSMA) - a moving average calculated by the linear regression method.