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

Oscillator Adaptable RSI, unlike standard RSI, allows you to select a method to calculate intermediate data that is calculated in standard RSI by the SMMA method only.

It has five configurable parameters:

  • Period - calculation period
  • Method - intermediate data calculation method
  • Applied price - calculation price
  • Overbought - overbought level
  • Oversold - oversold level

Calculations:

ARSI = 100.0-100.0/(1.0 + MA_Gain/MA_Loss)

where:

MAGain = MA(Gain, Period, Method) MALoss = MA(Loss, Period, Method)

  • If diff > 0
    Gain = diff
  • Otherwise
    Gain = 0
  • If diff < 0
    Loss = -diff
  • Otherwise
    Loss = 0
diff = Price - PrevPrice
Price = MA(Applied price, 1)

In figures below, the Adaptable RSI is shown as compared to standard RSI:

Fig 1. Period 14, method SMA


Fig. 2. Period 14, method EMA


Fig. 3. Period 14, method SSMA


Fig. 4. Period 14, method LWMA

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

AATR AATR

Indicator Average Average True Range

AbsolutelyNoLagLwma_Range_Channel AbsolutelyNoLagLwma_Range_Channel

A channel formed by two moving averages AbsolutelyNoLagLwma based on averaged High and Low timeseries

Bears_Bulls_Impuls Bears_Bulls_Impuls

An indicator of bull/bear power

DiffMA DiffMA

Two moving averages on the range of one-direction candlesticks