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

Camarilla Equation system was implemented by Nick Stott at the end of 1980s.

Camarilla Equation consists of 8 or 10 levels (in later modifications) calculated by using Open, Close, High and Low prices of a previous trading session and a set of instructions on the application of these levels in trading.

The levels are divided in two groups. The first one is built downwards from the yesterday's Close price, indicated by L symbol (for "Low") and numbered from 1 to 5. Similarly, the second group of levels is built upwards from the yesterday's Close price, indicated by H symbol (for "High") and also numbered from 1 to 5.

It should be noted that levels 1 and 2 have comparatively small value and are often not considered. As for L5 and H5 levels, they should always be considered, though they are ignored in some sources.

Camarilla Equation levels are calculated the following way:

H1 = close + (high-low)*1.1 /12
H2 = close + (high-low)*1.1 /6
H3 = close + (high-low)*1.1 /4
H4 = close + (high-low)*1.1 /2
H5 = (high/low)*close

L1 = close - (high-low)*1.1 /12
L2 = close - (high-low)*1.1 /6
L3 = close - (high-low)*1.1 /4
L4 = close - (high-low)*1.1 /2
L5 = close - (H5 - close)

Camarilla_Equation

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

X2MA X2MA

The universal moving average with double smoothing and possibility to select each of this smoothings from the dozen of possible variants.

AT_CF AT_CF

Four digital filters that form the basis of the V. Kravchuk's AT&CF method in one separate window.

Camarilla_Full Camarilla_Full

The system of Camarilla Equation levels for all bars.

Heiken Ashi Smoothed Heiken Ashi Smoothed

Standard Heiken Ashi calculated using smoothed price time series.