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

Author: Korey


In manual trading, watching how zero bar is forming makes you impatient in vain.

Zero bar is often out of control in automated trading, because it is considered as not-yet formed.

From these considerations, we concluded that it would be useless to display zero bar of the indicator due to false signals that occur while it was being formed.

However, it is possible and necessary to display the indicator signal line on zero bar, since this line is rather integrated, i.e., forecast functions of the signal line are retained on zero bar.



It is proposed to evaluate an indicator that does not display zero bar, but displays the signal line on zero bar.

The indicator is colored in the B. Williams' AC/AO style.

If the next bar is below the preceding one, then the down-color=red.

If the next bar is above the preceding one, then the up-color=green.

Recommendations:

You can restore displaying of zero bar directly in the indicator's code:

a) no zero bar displayed: if(i>=1),

b) zero bar displayed: if(i>=0).


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

Support - Resistance Support - Resistance

A version of indicators to detect Support/Resistance levels.

Pattern Searching ZigZag Pattern Searching ZigZag

Building in the current window a ZigZag calculated on a larger timeframe.

Volatility.mq4 Volatility.mq4

The indicator shows the volatility of a currency pair. This knowledge may be very helpful when using one strategy or another.

TRAYLER+ TRAYLER+

I supposed to use the EA for trailing, but added graphical order management to it while programming.