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

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

There are four input parameters:

  • Period - calculation period;
  • Applied price;
  • Overbought - overbought level;
  • Oversold - oversold level.

Calculations:

ARSI = 100.0 - 100.0 / (1.0 + RS)

where:

RS = UpMove / DnMove
  • If up = 0: UpMove = 0.
  • If up = 1: UpMove = Up.
  • Otherwise UpMove = AvgUp.
  • If dn = 0: DnMove = 0.
  • If dn = 1: DnMove = Dn.
  • Otherwise: DnMove = AvgDn.
AvgUp = EMA(Up, 2*Period-1)
AvgDn = EMA(Dn, 2*Period-1)
Up = Max(ROC,0)
Dn = Abs(Min(ROC,0))
ROC = Applied price - PrevApplied price
up = Floor(AvgUpCnt * Period + 0.5)
dn = Period - up
AvgUpCnt = SMA(UpCnt, Period)
  • If ROC < 0, UpCnt = 0.
  • Otherwise: UpCnt = 1.
AvgUp = EMA(Up, 2*Period-1)
AvgDn = EMA(Dn, 2*Period-1)

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

Demand_Index Demand_Index

The Demand_Index indicator developed by James Sibbet combines the price and volume, and is often considered a leading indicator of price change.

ChandelierExit_Candle ChandelierExit_Candle

The Chandelier Exit indicator implemented as a sequence of candlesticks

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).

TD_I TD_I

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