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

Multi pass average filter - MetaTrader 5용 지표

조회수:
4105
평가:
(15)
게시됨:
2018.09.25 21:57
업데이트됨:
2018.09.25 21:59
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Definition :

In theory almost everything average like can be a digital filter too (it is just a matter of finding corresponding coefficients - sma , for example, has all "1" for coefficients), but this indicator goes directly into that category even though it does not use coefficients in this version. Avoiding coefficients in this version was done for 2 main reasons : simplicity and efficiency of code. The basis of this is the good old simple moving average a bit differently calculated than the usual "sum them all and then divide" in order to avoid nxn complexity (which would significantly slow down your PC when this indicator works) and that is why it does not look like "classical" digital filters.

Of limitations :

Maximal pass value allowed by the indicator is 10. To change it, change the line 4 of the code that goes like this :

#define   _maxPass  10

and replace the "10" with desired maximal pass (in the published version the limit is kept at 10 for practical reasons)

Usage :

You can use the color change as signals. Some experimenting with optimal pass for your trading stile is strongly advised (see the "big picture" example for reasons why it should be experimented with). Also, be advised that pass 1 is making this indicator value the same as SMA (Simple Moving Average). The difference comes for passes different from 1, and for that reason the best usage is probably to use short ma periods and then experiment with different pass parameters


"Big picture" example :

10 instances of the indicator with default parameters except that the pass is changed from 1 to 10


Super smoother levels Super smoother levels

Super smoother levels

Super smoother Super smoother

Super smoother

CCI JMA based CCI JMA based

CCI JMA based

CCI JMA based with floating levels CCI JMA based with floating levels

CCI JMA based with floating levels