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

Trend_Risk_Indicator - MetaTrader 5용 지표

조회수:
8083
평가:
(19)
게시됨:
2018.09.27 16:08
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

The Trend Risk indicator finds trendy parts of the price movement and indicates the trend presence by a value in the buffer.

Can be used for flat trading - to disable trading when there is a possibility of price exiting the channel, in which trades are performed. During trend trading, the indicator can determine areas where the trend can be exhausted or it can slow down.

It has two input parameters:

  • Bands range - bands calculation range
  • Deviation - the deviation value (the width of the allowed channel)

Calculation:

Top = SmoothPrice + SmoothRange * Deviation Bottom = SmoothPrice - SmoothRange * Deviation

where:

SmoothPrice = (PrevSmoothPrice * (Bands range-1) + Close) / Bands range SmoothRange = (PrevSmoothRange * (Bands range-1) + High-Low) / Bands range

Signals:

If Close > Top

SignalBuffer = "Do not trade" = Top

If Close < Bottom

SignalBuffer = "Do not trade" = Bottom

The indicator displays colored Japanese candlesticks in a separate window - bullish ones are green, bearish ones are red. If a candlestick closes outside the channel formed by the bands, the candlesticks are colored in gray, and a value corresponding to the value of the broken channel line is added to the indicator signal buffer, which allows to determine the breakout direction from Expert Advisors and to limit trading in this or that direction, in accordance with the trading system used.

Fig. 1. Trading in the flat channel: Bands range = 12, Deviation = 1.8


Fig. 2. Trend trading (limitation): Bands range = 23, Deviation = 6.0

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

TMAGi TMAGi

The TMAGi indicator

T3 T3

The T3 Moving Average indicator

Blue Renko Bars Blue Renko Bars

An indicator for constructing Renko bars in the chart sub-window.

StepMA_3D_v3 StepMA_3D_v3

A trend indicator with three moving averages having different periods, using the Average True Range in calculations.