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

The Dynamic Trend signal indicator draws a two-color trend direction line and adds signal arrows.

It has two input parameters:

  • Period - calculation period;
  • Percent - "strengthening percent" (*).

Calculations:

Line

  • If Close < PrevLine:

    Line = Close[Hindex] - Percent
  • If Close > PrevLine:

    Line = Close[Lindex] + Percent

where:

  • Hindex - the index of the highest Close within the Period interval;
  • Lindex - the index of the lowest Close within the Period interval.

Arrows

  • If Close[3] > Line[2] and Close[2] < Line[3]: Blue up arrow.
  • If Close[2] < Line[1] and Close[2] > Line[3]: Red down arrow.
* The strengthening percent is actually the number of points, by which the line is "attached" to the price.
To filter the indicator signals, it is recommended to use confirmation signals, such as support/resistance levels.

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

Exp_ColorXPWMA_Digit_MMRec Exp_ColorXPWMA_Digit_MMRec

A trading system based on the ColorXPWMA_Digit indicator signals with an ability to change the volume of a forthcoming trade depending on the results of the previous trades for this trading system.

Trend_Intensity_Index_HTF Trend_Intensity_Index_HTF

The Trend_Intensity_Index indicator with the ability to change the indicator timeframe using the input parameters.

Klinger_Oscillator Klinger_Oscillator

Klinger Oscillator developed by Stephen Klinger to determine the long-term trend while remaining sensitive to detect short-term fluctuations enabling the trader to predict short-term reversals.

Avalanche AV Avalanche AV

One of the variations of the "Avalanche" strategy. Martingale is used.