거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
당사 팬 페이지에 가입하십시오
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
- 조회수:
- 19452
- 평가:
- 게시됨:
- 2018.12.28 12:59
- 업데이트됨:
- 2019.01.17 11:29
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Shadow True Strength Index oscillator with two signal lines (TSI shadows).
It has ten adjustable parameters:
- Price source - calculation price of the source data, on which TSI (*) is calculated
- Price source period - calculation period of the source data, on which TSI (*) is calculated
- First smoothing period - primary smoothing period
- Second smoothing period - secondary smoothing period
- First shadow period - first signal line calculation period
- First shadow method - first signal line calculation method
- Second shadow period - second signal line calculation period
- Second shadow method - second signal line calculation method
- Overbought - overbought level
- Oversold - oversold level
Calculations:
TSI = 100.0 * UDM2 / ADM2
Shadow1 = MA(TSI, First shadow period, First shadow method)
Shadow2 = MA(Shadow1, Second shadow period, Second shadow method)
where:
UDM2 = EMA(UDM1, Second smoothing period)
ADM2 = EMA(ADM1, Second smoothing period)
UDM1 = EMA(UDM, First smoothing period)
ADM1 = EMA(ADM, First smoothing period)
UDM = Close - PrevClose
ADM = ABS(UDM)
* Source data for TSI calculation:
unlike indicator TSI calculated on the Close price, the calculations here are based on prices of the simple moving average (SMA) featuring both calculation prices and a timeframe. If SMA's Price source period is 1, the TSI line of the indicator fully coincides with the line of indicator TSI. In case of the high values of the Price source period, the TSI line is smoothed.
unlike indicator TSI calculated on the Close price, the calculations here are based on prices of the simple moving average (SMA) featuring both calculation prices and a timeframe. If SMA's Price source period is 1, the TSI line of the indicator fully coincides with the line of indicator TSI. In case of the high values of the Price source period, the TSI line is smoothed.
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/22784

This is a utility for rounding the lot size correctly

Indicator Volatility Ratio2