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

Indicator AML (Adaptive Market Level) displays one of three market states: Flat, uptrend, and downtrend.

It is based on fractal smoothing and has a discrete filter that removes small price movements: If the price movement amplitude does not exceed the square of the predefined amplitude within the specified range, then this price movement will be ignored and considered a flat one.

It has two parameters:

  • Period - calculation period;
  • Dimension - price movement amplitude in points.

Calculation:

If ABS(FR - FR(Dimension)) < LAG:

AML = PrevAML

otherwise:

AML = FR

where:

LAG = Dimension * Dimension * Point
FR = Alpha * Price + (1.0 - Alpha) * PrevFR
Price = (High + Low + 2.0 * Open + 2.0 * Close) / 6.0
Alpha = EXP(-1.0 * Dimension * (DIM - 1.0)) in the range from 0.01 to 1.0

If R1+R2 > 0 and R3 > 0:

DIM = 1.44269504088896 * (LOG(R1+R2) - LOG(R3))

Otherwise:

DIM = 0
  • R1 - (Maximum price - Minimum price within thе Period from the current price) / Period
  • R2 - (Maximum price - Minimum price within the Period from i+Period) / Period
  • R3 - (Maximum price - Minimum price within the Period * 2) / Period * 2

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

ZLS ZLS

Indicator ZLS (Zero Lag Stochastic) - a zero-delay stochastic - a ratio of several stochastics with different periods %К, deceleration, and weights.

Test_values_print Test_values_print

A simple include file to print out the values and names of variables.

APZ APZ

Indicator APZ (Adaptive Price Zone) represents an adaptive price channel.

CVI CVI

Oscillator CVI (Chartmill Value Indicator).