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

The indicator named after the author of the filter system is the direction filter, e.g., for some candlestick models.

It has three filtering scenarios:

  1. Power Trend (strong trend)

    • Buy signal:
      • EMA 3 > EMA 7;
      • EMA 7 > EMA 50.
    • Sell conditions are opposite.

  2. Medium MA Bounce (medium moving average bounce)

    • Buy signal:
      • EMA 20 > EMA 50;
      • Low of the candlestick < EMA 20;
      • Open of the candlestick > EMA 20;
      • Close of the candlestick > EMA 20.
    • Sell conditions are opposite.

  3. Long MA Bounce (long moving average bounce)

    • Buy signal:
      • EMA 20 > EMA 50;
      • Low of the candlestick < EMA 50;
      • Open of the candlestick > EMA 50;
      • Close of the candlestick > EMA 50.
    • Sell conditions are opposite.

The indicator has seventeen input parameters:

  • Use scenario 1 "Power Trend" - scenario 1 usage switch (Yes/No)

    • Scenario 1, Period 1 - scenario 1, calculation period of the first MA;
    • Scenario 1, Method 1 - scenario 1, calculation method of the first MA;
    • Scenario 1, Period 2 - scenario 1, calculation period of the second MA;
    • Scenario 1, Method 2 - scenario 1, calculation method of the second MA;
    • Scenario 1, Period 3 - scenario 1, calculation period of the third MA;
    • Scenario 1, Method 3 - calculation method of the third MA.

  • Use scenario 2 "Medium MA Bounce" - scenario 2 usage switch (Yes/No)

    • Scenario 2, Period 1 - scenario 2, calculation periodof the first MA;
    • Scenario 2, Method 1 - scenario 2, calculation method of the first MA;
    • Scenario 2, Period 2 - scenario 2, calculation period of the second MA;
    • Scenario 2, Method 2 - scenario 2, calculation method of the second MA.

  • Use scenario 3 "Slow MA Bounce" - scenario 3 usage switch (Yes/No)

    • Scenario 3, Period 1 - scenario 3, calculation period of the first MA;
    • Scenario 3, Method 1 - scenario 3, calculation method of the first MA;
    • Scenario 3, Period 2 - scenario 3, calculation period of the second MA;
    • Scenario 3, Method 2 - scenario 3, calculation method of the second MA.

Fig.1 Filter, scenario 1

Fig.1 Filter, scenario 1


Fig.2 Filter, scenario 2

Fig.2 Filter, scenario 2


Fig.3 Filter, scenario 3

Fig.3 Filter, scenario 3

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

MIT MIT

Oscillator MIT (Momentum In Time) is a normal momentum with anchoring the calculations to the calculation start time.

Linda's Coil Linda's Coil

Linda's Coil - an indicator of "engulfed" candlesticks.

ReverseMinMax ReverseMinMax

The indicator of the lowest tops and the highest bottoms.

ASCtrend_NRTR ASCtrend_NRTR

Indicator ASCtrend with the NRTR line of possible stop order locations.