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

For the Expert Advisor work you need the BreakoutBarsTrend_v2 custom indicator (download in the MQL5/Indicators folder, and the given Expert Advisor is in the MQL5/Experts folder).

The meaning is in the following:

  • the position opens in the trend reversal. If the "Number of false signals" parameter is equal to zero, the position opens on each reversal. If this parameter is more than zero, the position will be opened only if the current reversal trend preceded the set number of false signals.
  • position closes either when trend changes its direction, or stop loss/take profit.

The signal is considered to be false if the distance in pips from close price of the first bar of the trend to the close price of the next trend is negative. The example of the false trend to sell (close[prev] - close[next] < 0, for the false trend to buy close[next] - close[prev] < 0):

Sell false signal

Parameters:

  • Reversal - reversal mode (in pips or percents)
  • Delta - the minimum distance for trend change.
  • Number of false signals - the positions will be opened only if the current signal has the set number of false signals. If the parameter is equal to zero, the position opens on each reversal.
  • Besides the above parameters there are Stop-loss, Take-profit, Lot.

Note! If the reversal mode is in percentage, the parameters of Delta, Stop-loss and Take-profit also must be set in percentage. If the reversal is in pips, then Delta, Stop-loss and Take-profit also must be set in pips!

The testing results at EURUSD H1, 2012. Reversal in percentage, Delta = 0.3%, stop-loss and take profit are equal to 1%.

a) The entry on each reversal (Number of false signals is equal to 0)

Every Signal

b) The same parameters, but the entry is after a series of false signals (Number of false signals is equal to 3)

After three false signal

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

The class for drawing the Momentum using the ring buffer The class for drawing the Momentum using the ring buffer

The class is designed for calculation the technical indicator Momentum (Momentum) using the algorithm of the ring buffer.

TrendEnvelopes TrendEnvelopes

The typical semaphore trend indicator.

Exp_ColorXADX Exp_ColorXADX

The trading system based on change of the trend direction and force of the trend displayed by the ColorXADX indicator.

Exp_MultiTrend_Signal_KVN Exp_MultiTrend_Signal_KVN

The trading system based on the indicator by Vladimir Korykin