거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
당사 팬 페이지에 가입하십시오
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Smoothed_RSI - MetaTrader 5용 지표
- 조회수:
- 3940
- 평가:
- 게시됨:
- 2018.12.18 19:15
- 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Smoothed RSI indicator. The indicator is based on moving average data.
There are seven configurable parameters:
- Source period - source data period for calculation (МА)
- Source method - source data calculation method (МА)
- Source applied price - source data calculation price (МА)
- Smoothed RSI period - smoothing period
- Smoothed RSI method - smoothing method
- Top level - upper level
- Bottom level - lower level
Calculation:
SmRSI = 100.0-(100.0 / (1.0+AvgPositive / AvgNegative))
where:
AvgPositive = MA(Pos, Smoothed RSI period, Smoothed RSI method)
AvgNegative = MA(Neg, Smoothed RSI period, Smoothed RSI method)
- If Diff > 0
Pos = Diff, Neg = 0
- If Diff < 0
Pos = 0, Neg = -Diff
Diff = MA - Close
MA - MA(Source applied price, Source period, Source method)
Compared to standard RSI, this indicator has a feature: When the price falls, SmRSI rises and vice versa.
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/22510
SineWMA
Sine Weighted MA indicator
Normalized_Moving_Average_SlopeNormalized Moving Average Slope indicator