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

Differential indicator by Sultonov - MetaTrader 5용 지표

게시자:
Ihor Herasko
조회수:
6692
평가:
(28)
게시됨:
2017.11.03 12:35
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Indicator lines show the accumulated sums of bulls and bears power for the user-defined period.


Method of Calculation

Bulls power is calculated by the following formula:

BullsPower(i) = SUM(Close(i) - Close(i + 1), N) / BUN

where the following applies:

  • BullsPower(i) - the current bulls power.
  • Close(i) - the Close price of the current bar.
  • Close(i + 1) - the Close price of the previous bar.
  • N - indicator calculation period.
  • BUN - the number of positive increments of Close prices over N bars. The sum includes only positive increments.

Accordingly, the following formula is used for calculating the bears power:

BearsPower(i) = SUM(Close(i + 1) - Close(i), N) / BEN

where the following applies:

  • BearsPower(i) - the current bears power.
  • BEN - the number of negative increments of Close prices over N bars. The sum includes only negative increments.


Parameters

  1. Calculate period - the number of past bars used for the calculation of indicator values (specified as N in the formulas).
  2. The number of bars to display - the number of past bars, on which the indicator values will be displayed. To display the indicator on the whole available history, enter any unnatural number (0 or less). The parameter does not affect the indicator quality.


Interpretation

The red indicator line shows the bears power, and the blue line indicates the bulls power. The higher line shows the stronger side. The intersection of lines indicates trend change and is a good moment for opening a deal in the direction of the power that appeared to be above the other one.

Fig. 1. Change of an uptrend to a downtrend.


Update 22.09.2017

  • The error in recognizing the Russian language of the terminal has been fixed.

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

Current Next Futures Current Next Futures

The script has three independent functions for determining the current FORTS futures.

Vortex Indicator System Vortex Indicator System

A trading system based on the Vortex indicator signals.

Flat Channel Flat Channel

The Expert Advisor trades in a channel. When a flat channel is found or when the market slows down, the EA places a pending order expecting the channel breakout.

HarVesteR HarVesteR

The Expert Advisor uses the following indicators: Moving Average Convergence/Divergence, MACD; Moving Average, MA; Average Directional Movement Index, ADX. It closes half of the profitable position.