거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
당사 팬 페이지에 가입하십시오
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Oscillator Intraday Momentum Index displays the ratio between the directed change in the price and the total change in the prices over the specified period.
There are three adjustable parameters:
- Period - calculation period;
- Overbought - overbought level;
- Oversold - oversold level.
Calculation:
IMI = 100*U /(U+D)
where:
U = SMA(Up, Period), D = SMA(Down, Period)
If Close > Open:
Up = Close - Open
otherwise:
Up = 0
If Close < Open:
Down = Open - Close
otherwise:
Down = 0
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/21106