거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
당사 팬 페이지에 가입하십시오
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
- 조회수:
- 4796
- 평가:
- 게시됨:
- 2018.06.06 14:30
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
The "Repulse" oscillator allows finding possible levels of price rebound or rollback from strong levels.
It has two parameters:
- Repulse period - oscillator calculation period;
- Signal period - signal line calculation period.
Calculation:
Repulse1[i] = Pos_EMA1[i]-Neg_EMA1[i], Repulse2[i] = Pos_EMA2[i]-Neg_EMA2[i]
where
Pos_EMA1, Neg_EMA1 - EMA(PosSt1), EMA(NegSt1) with the period of 5*Period1), Pos_EMA2, Neg_EMA2 - EMA(PosSt2), EMA(NegSt2) with the period of (5*Period2), PosSt1[i] = 100*(3*Close[i] - 2*MinPrice1 - Open[i])/Close[i], NegSt1[i] = 100*(Open[i] + 2*MaxPrice1 - 3*Close[i])/Close[i], PosSt2[i] = 100*(3*Close[i] - 2*MinPrice2 - Open[i-Period2])/Close[i], NegSt2[i] = 100*(Open[i-Period2] + 2*MaxPrice2 - 3*Close[i])/Close[i], MinPrice1, MaxPrice1 - the highest and the lowest prices in the range from (i-Period1+1) to i, MinPrice2, MaxPrice2 - the highest and the lowest prices in the range from (i-Period2+1) to i
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/20449