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

Price Rate-of-Change (ROC) indicator based on stochastic.

It has eight input parameters:

  • Stochastic K period - the period of calculating the stochastic %K line;
  • Stochastic D period - the period of calculating the stochastic %D line;
  • Stochastic Slowing - the period of calculating the stochastic Slowing line;
  • Stochastic MA Method - stochastic calculation method;
  • Stochastic Price field - stochastic calculation prices;
  • Stochastic line - stochastic line used for calculating the indicator:
    • Main - main line;
    • Signal - signal line.
  • ROC period - the period of calculating the ROC;
  • Calculation type - type of calculations:
    • Absolute - absolute values;
    • Relative - relative values.

The ROC indicator is not required for calculations, since it is calculated by the indicator itself.

Calculations:

If Type = Absolute Stochastic, then ROC = ((Stochastic(Now) - Stochastic(Prev)),
If Type = Relative Stochastic, then ROC = ((Stochastic(Now) - Stochastic(Prev)) / Stochastic(Prev))*100

ROC:

ROC = ((CLOSE (i) - CLOSE (i - n)) / CLOSE (i - n)) * 100
CLOSE (i) - the price of closing the current bar;
CLOSE (i - n) - the close price n bars ago;

Fig.1. Stochastic ROC Absolute

Fig.1. Stochastic ROC Absolute

Fig.2. Stochastic ROC Relative

Fig.2. Stochastic ROC Relative

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

Stochastic_MACD Stochastic_MACD

Stochastic MACD.

Stochastic_Slow Stochastic_Slow

Slow Stochastic.

Impulse Impulse

Impulse Indicator - Count of Points Passed.

GoldWarrior02b GoldWarrior02b

This EA uses indicators iCCI (Commodity Channel Index, CCI), ZigZag, and Impulse. Position trailing is possible.