거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Experts

VR---STEALS-2 - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
4723
평가:
(24)
게시됨:
2017.01.26 09:12
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Author of the idea — Vladimir Pastushakauthor of the MQL5 code — barabashkakvn.

The EA represents a stealth program, which manages the positions using labels.

The EA and this way of working are well proven when working with certain brokers.

The EA functionality includes:

  • Placing a virtual Take Profit
  • Placing a virtual Stop Loss
  • Placing breakeven

When orders are detected on the chart, the EA uses labels to draw the prices for closing by Take Profit, Stop Loss and the breakeven level.

The program is able to work with different magic numbers simultaneously. To do this, set the "Magic" parameter to "0".

Expert advisor parameters:

input ushort InpTakeProfit    = 50;    // TakeProfit (if 0, not used)
input ushort InpStopLoss      = 50;    // StopLoss (if 0, not used)
input ushort InpBreakeven     = 20;    // Breakeven (if 0, not used)
input ushort InpBreakMinDis   = 9;     // Minimum profit when moving to breakeven
input ulong  Magic            = 0;     // (if 0, all magics)
input ulong  InpSlip          = 20;    // Slippage
input int    coment           = 1;     // The number of comment lines. If 0, comments are not displayed

Labels:

  • Green label — breakeven level
  • Red label — Stop Loss level
  • Blue label — Take Profit level 

Example of the EA operation:

 VR---STEALS-2 start 

 

VR---STEALS-2 breakeven 

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

Fractal_WPR_HTF Fractal_WPR_HTF

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

Fractal_Moving_Average Fractal_Moving_Average

Fractal moving average with indication of the last value with a price label with the ability to change the averaging algorithm.

The MasterMind 3 The MasterMind 3

The Expert Advisor processes signals from four iWPR indicators with different averaging periods.

Fractal_DeMarker_HTF Fractal_DeMarker_HTF

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