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

The TD_I indicator (Thomas DeMark Indicator) is a modified version of the standard DeMarker Indicator by Thomas R. DeMark.

The range of values ​​is from 0.0 to 100.0 instead of the standard 0.0-1.0. Additionally, a shift was introduced: instead of comparing current bar's High/Low with the previous bar's High/Low, this indicator uses current bar's High/Low and the High/Low price of the bar with the given shift, which allows to filter noises.

There are four input parameters:

  • Period - calculation period;
  • Shift - set to 1 by default, corresponds to DeMarker;
  • Overbought - overbought level;
  • Oversold - oversold level.

Calculations:

TD_I = 100.0 * HighAvg / (HighAvg + Low_Avg)

where:

HighAvg = SMA(HighDiff, Period)
LowAvg = SMA(LowDiff, Period)
HighDiff = High - High[Shift]
LowDiff = Low[Shift] - Low

Fig. 1. TD I, period 8, shift 1

Fig. 1. TD I, period 8, shift 1

Fig. 2. TD I, period 8, shift 1 + DeMarker with period 8

Fig. 2. TD I, period 8, shift 1 + DeMarker with period 8

Fig.3. TD I, period 8, shift 3 + DeMarker with period 8

Fig.3. TD I, period 8, shift 3 + DeMarker with period 8

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

55 MA 55 MA

A trading system based on iMA (Moving Average, MA) with the averaging period of 55 (the averaging period is hardcoded and is not available in input parameters).

SVE_ARSI SVE_ARSI

The SVE_ARSI (Sylvain Vervoort's Asymmetrical RSI) indicator was described in the October '08 issue of the "Stocks & Commodities" magazine.

UltraMFI UltraMFI

This indicator is based on MFI (Money Flow Index) and its multiple signal lines analysis.

BBands_Stop_v1_Alert BBands_Stop_v1_Alert

The BBands Stop v1 indicator provides alerts, sends email and push notifications when the trend direction changes and the indicator color changes accordingly.