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

The indicator plots Pivot levels for all the available history. It doesn't uses any objects.

There are 5 variants of Pivot levels is supported. There are 3 calculation periods: daily, weekly, monthly. For the daily pivot levels it's possible to specify the GMT time shift.

The formulae, used for the calculation, are:

PIVOT_CLASSIC

Pivot (P) = (H + L + C) / 3
Resistance (R1) = (2 * P) - L      Support (S1) = (2 * P) - H
R2 = P + H - L                           S2 = P - H + L
R3 = H + 2 * (P - L)                   S3 = L - 2 * (H - P)  

PIVOT_FIBONACCI 

Pivot (P) = (H + L + C) / 3
Resistance (R1) = P + 0.382(H – L)      Support (S1) =  P – 0.382(H – L)
R2 = P + 0.618*(H – L)                       S2 = P – 0.618*(H – L)
R3 = H + *(H – L)                             S3 = L - (H – L)  

PIVOT_DEMARK

If C < O Then X = H + 2 * L + C;
If C > O Then X = 2 * H + L + C;
If C = O Then X = H + L + 2 * C;
Resistance (R1) = X / 2 - L; Support (S1) = X / 2 - H

PIVOT_CAMARILLA

R4 = (H - L) X 1.1 / 2 + C    R3 = (H - L) X 1.1 / 4 + C    R2 = (H - L) X 1.1 / 6 + C    R1 = (H - L) X 1.1 / 12 + C
S1 = C - (H - L) X 1.1 / 12   S2 = C - (H - L) X 1.1 / 6     S3 = C - (H - L) X 1.1 / 4     S4 = C - (H - L) X 1.1 / 2

PIVOT_WOODIES

Pivot (P) = (H + L + 2 X C) / 4
Resistance (R1) = (2 X P) - L         Support (S1) = (2 X P) - H
R2 = P + H - L                              S2 = P - H + L


Pivot Points Universal technical indicator

At the image there are 4 indicators of PIVOT_CLASSIC with the different parameters are presented. The first parameter (GMT shift) is actual for the daily Pivots only.

If you have found any errors, please report at Forum and we will fix them ;)

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

Murrey Math Lines (support and resistance) Murrey Math Lines (support and resistance)

The indicator plots Murrey Math Lines for all available history, it doesn't uses any objects.

ZeroLag MACD ZeroLag MACD

The ZeroLag MACD indicator shows the histogram with color of the previous bar.

Simple MA Expert Advisor Simple MA Expert Advisor

Something for those who wants to try out new Strategy Tester and don't have any EA.

Clipboard Clipboard

The script gets contents from the Windows Clipboard.