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

DailyPivotPoints - MetaTrader 5용 지표

게시자:
Nikolay Kositsin
조회수:
13241
평가:
(17)
게시됨:
2011.09.28 10:29
업데이트됨:
2016.11.22 07:32
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

The DailyPivot Points indicator helps to compose a picture of market future movements, in distinct from the other tools that hang behind the market.

The information that became availble in the course of the previous day is used to calculate the check points of the minor trend of the current day.

Pivot Point (PP) is the equilibrium point - a level the price is attracted to throughout the day. Having three values for the previous day: maximum, minimum and close price, 13 levels for smaller timeframes are calculated: equilibrium point, 6 resistance levels and 6 support levels. This levels are called check points.

The check points provide the possibilty of easy determining the direction of the minor trend. Three values are most important - levels of equilibrium point, Resistance1 (RES1.0) and Support1 (SUP1.0). The pauses in the movement, or even a roll-back, are frequently seen during the moving of the price betweeen these values.

In such a way, the DailyPivot Points indicator:

  • forecasts the range of prices variation;
  • demonstrates the possible price stops;
  • demonstrates the possible points of changing the direction of price movement.

If the market on the current day opens above the equilibrium point, then it is the signal for opening long positions. If the market opens below the equilibrium point, then the current day is favourable for opening short positions.

The method of check points consists in the monitoring the possibility of turning and breakthrough when the price collides with the resistance level RES1.0 or with the support level SUP1.0. By the time when the price reaches the RES2.0, RES3.0 or SUP2.0, SUP3.0 levels, the market appears to be overbought or oversold as a rule, so these levels are mostly used as the exit levels.

This indicator was first implemented in MQL4 and published in Code Base at mql4.com 23.12.2005.

DailyPivotPoints

Calculation:

The calculation on the basis of HIGH, LOW and CLOSE values of the previous day generates the new values Pivot Point (PP), Resistance1 (RES1.0), Resistance2 (RES2.0), Resistance3(RES3.0), Support1 (SUP1.0), Support2 (SUP2.0) and Support3 (SUP3.0), and also the intermidiate values Resistance0.5(RES0.5), Resistance1.5 (RES1.5), Resistance2.5 (RES2.5), Support0.5(SUP0.5), Support1.5 (SUP1.5) and Support2.5 (SUP2.5).

In such a manner, the mapping to the future of maximums and minimums of the previous days is involved.

PP = (HIGH + LOW + CLOSE) / 3

RES1.0 = 2*PP - LOW
RES2.0 = PP + (HIGH -LOW)
RES3.0 = 2*PP + (HIGH – 2*LOW)

SUP1.0 = 2*PP – HIGH
SUP2.0 = PP - (HIGH – LOW)
SUP3.0 = 2*PP - (2*HIGH – LOW)

RES0.5 = (PP + RES1.0) / 2
RES1.5 = (RES1.0 + RES2.0) / 2
RES2.5 = (RES2.0 + RES3.0) / 2

SUP0.5 = (PP + SUP1.0) / 2
SUP1.5 = (SUP1.0 + SUP2.0) / 2

SUP2.5 = (SUP2.0 + SUP3.0) / 2

where:

  • HIGH - the maximum price of the previous day;
  • LOW - the minimum price of the previous day;
  • CLOSE - the close price of the previous day;
  • PP - the equilibrium point (typical price of the previous day);
  • RES0.5, RES1.0, RES1.5, RES2.0, RES2.5, RES3.0 - the check points (resistance levels);
  • SUP0.5, SUP1.0, SUP1.5, SUP2.0, SUP2.5, SUP3.0 - the check points (support levels).

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

Variation Index Variation Index

Variation Index shows if a trend or a flat movement is prevailing in the time series or random behaviour.

Five Tirone Levels Five Tirone Levels

The indicator consists of five Tirone Levels that are, in fact, support and resistance levels based on a trading range for a certain period of time.

DailyPivotPoints_Full DailyPivotPoints_Full

The indicator helps to compose a picture of market future movements, in distinct from the other tools that hang behind the market. The information that became available in the course of the previous day is used to calculate the check points of the minor trend of the current day.

LeManSignal LeManSignal

The indicator shows market entry points as colored dots. Signal dots locations can indicate the levels for setting a protective Stop Loss or a new Trailing Stop position.