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

Real author:

HgCl2

The indicator utilizes the idea of adding to a bar open time the value equal to the average minimum swing from the open price for a few days or weeks, and the standard deviation from the average swing multiplied by a coefficient to determine the possible resistance level. It's vice versa for the support level.

The minimum swing relative to the open price of a day or week is the lowest of the distances High - Open and Open - Low.

Resistance level of the indicator is:

R = Open - k * AV - k_std * Std;

where:

  • AV is the average minimum swing from the open price for a few days;
  • k - coefficient of the average minimum swing;
  • Std - standard deviation from this minimum swing;
  • k_std - multiplier coefficient. (is available in the indicator settings).

For the support level:

S = Open + k * AV + k_std * Std;

In contrast to the methods of finding support and resistance levels using GSV ('Long-Term Secretes to Short-Term Trading' by Larry Williams, chapter: 'Greatest Swing Value'), all minimum swings of 4 and 9-day or week bars are used in calculation without separating divergent bars.

The mean swing value and its standard deviation are calculated separately for the period defined in the input parameters, and at the end of calculation the indicator selects the largest sum of the average swing and standard deviation multiplied by the coefficient. This ratio can be modified in the indicator settings window (the default is one, which means that one standard deviation is added to the mean minimal swing as a filter).

In this indicator version you can set any period. It also includes a built-in filter of weekend bars, i.e. weekend bars are combined with Monday bars. The S and R levels for Monday are calculated relativ eto the open price of the weekend bar. If Monday's low is below the weekend bar's low, the Monday's low will be used in calculations, and vice versa. Similarly, for Monday's and weekend bar's highs.

The original indicator was developed in the MQL4 language and published in the CodeBase on 26.08.2013.

Figure 1. The SRm_Cloud indicator

Figure 1. The SRm_Cloud indicator

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

SR_Cloud SR_Cloud

The indicator utilizes the idea of ​​finding possible resistance and support levels, similar to the use of GSV.

RD-ForecastOsc_HTF RD-ForecastOsc_HTF

The RD-ForecastOsc indicator with the timeframe selection option available in input parameters.

CHOWithFlat CHOWithFlat

Chaikin Oscillator with the market flat state detection option.

CHOWithFlat_HTF CHOWithFlat_HTF

The CHOWithFlat indicator with the timeframe selection option available in input parameters.