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

In mathematics, the value of the derivative is calculated according to the following simple formula:

, (1)

Where:

  • x0 — current value of the argument,
  • x — value of the argument to the right of the chart,
  • f(x0) — value of the function at point x0,
  • f(x) — value of the function at point х.

In the original definition the difference between x and x0 is infinitesimal, i.e. the limit of the function is used. Using the formula (1), it is possible to calculate the approximate value of the derivative using the function values, avoiding direct differentiation.

Regarding the price chart, x0 is the current bar, and x is the upcoming bar, which will be formed after a number of chart periods. Respectively, f(x0) is the price value on the current bar, and f(x) is the price value of the upcoming bar. We find that (1) contains two unknowns — f(x0) and f(x). Since we do not have additional expressions which contain the same two unknowns, the solution of equation (1) in this case is absent.

Known values must be taken as f(x) and f(x0) to make it possible to find the derivative f'(x0). For that purpose, it is necessary to take a point to the left of the current bar as x0, and to designate the current bar as x. As a result, f(x0) and f(x) become certain values (prices at points x and x0 correspond to the price values visible on the chart).

Although, the calculated value will characterize an area already known to a trader, in which the price growth or fall can be judged without the help of the derivative. In this case the useful information is not just the value of the derivative, but the comparison of two values of the derivative at adjacent bars. In case the signs of the calculated values are different the price had passed an extremum. The type of the extremum can be easily determined using the combination of signs: transition from a negative value to a positive value is minimum, positive to negative — maximum.

The described principle of calculation of a derivative is implemented in the Derivative indicator. As a result, it displays the difference of prices between the examined bar and the bar spaced from the examined one by a number of bars set in the "Delay" parameter.

The easiest way to use the indicator is this: the line crosses the zero level from below — you should buy, from above — you should sell.

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

Detection of the divergences Detection of the divergences

The lookup and display of the divergences of different classes based on the data of the base indicator.

OrderTimeAlert OrderTimeAlert

The Expert Advisor watches the market orders and generates a sound signal after a predefined time from the moment of order opening.

Road Map Road Map

The indicator displays the series of waves, breakthrough points and targets for Take Profit.

Price Channel Central Price Channel Central

The channel indicator. It also displays the current channel levels as price labels and the type of the signal for making trading decisions.