거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Universal digital filter - MetaTrader 5용 지표

게시자:
Nikolay Kositsin
조회수:
10189
평가:
(20)
게시됨:
2011.08.23 11:52
업데이트됨:
2016.11.22 07:32
dll.zip (1514.31 KB)
dfilter.mq5 (7.89 KB) 조회
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Real author:

Sergey Ilyukhin, the author of the "Digital methods generator" method.

DFilter universal digital filter provides a common solution of the issue of the digital filters creation in the client terminal.

With this MQL5 filter you don't need to create any other digital filters using the tools of the client terminal. That fact gives new possibilities for the use of these indicators.

This indicator was thoroughly described in the article "Practical Implementation of Digital Filters in MQL5 for Beginners".

Place the DF.dll file to "\MetaTrader5\MQL5\Libraries\".

Attention! Three additional dll files are required for DF.dll operation: bdsp.dll, lapack.dll and mkl_support.dll. These files contain mathematical treatment block and must be placed in "C:\Windows\System32\" for 32-bit Windows OS or "C:\Windows\SysWOW64\" for 64-bit Windows OS.

Check the following things before use:

1. "Allow DLL imports" checkbox is marked in Tools->Options->Expert Advisors;
2. Bdsp.dll, lapack.dll and mkl_support.dll files (additional mathematical libraries) are placed in "C:\Windows\System32\" or "C:\Windows\SysWOW64\" folder.

Input parameters description:

  • Ftype - filter type:
    0 - LPF (FATL/SATL/KGLP);
    1 - HPF (KGHP);
    2 - band-pass (RBCI/KGBP);
    3 - rejection (KGBS).
  • P1 - P1 cut-off period, bars;
  • D1 - D1 transient process cut-off period, bars;
  • A1 - A1 attenuation in a rejection band, dB;
  • P2 - P2 cut-off period, bars;
  • D2 - D2 transient process cut-off period, bars;
  • A2 - A2 attenuation in a rejection band, dB;
  • Ripple - Pulsations in a pass band, dB;
  • Delay - Delay, bars.

P2, D2 and A2 parameters' values must not be considered for LPF and HPF.

Working conditions:

  • LPF: P1>D1
  • HPF: P1<D1
  • Band-pass and rejector: D2>P2>P1>D1

Digital Low Pass (FATL/SATL, KGLP) Filter indicator

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

FractalChannel_v1 FractalChannel_v1

The indicator shows the channel based on fractals.

FATL FATL

Fast Adaptive Trend Line (FATL) is based on the low frequency digital filter.

3D_Oscilator 3D_Oscilator

This oscillator generates market entry and exit signals based on RSI and CCI indicators.

PCCI PCCI

PCCI (Perfect Commodity Channel Index) is a high frequency part of the price fluctuations normalized using the standard deviation.