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

Well Martin EA is based on two indicators: Bollinger Bands and ADX. It is designed for use on a tranquil market.

After a Stop Loss, the EA increases the lot by KLot coefficient until it reaches the maximum value — MaxLot. Then the lot returns to its start size — Lot.

The EA has Stealth Mode in which the stops are visible only to the user.

When breaking through the lower Bollinger Bands boundary, the EA opens a Buy order, when breaking through the higher boundary, it opens a Sell order. 

EURUSD, М15 timeframe.


Expert Advisor parameters:

//--- Bollinger Bands indicator input parameters
input int      BBPeriod  = 84;        // Bollinger Bands period
input int      BBShift   = 0;         // Offset relative to the chart
input double   BBDev     = 1.8;       // Standard deviation
//--- ADX indicator input parameters
input int      ADXPeriod = 40;        // ADX period
input int      ADXLevel  = 45;        // ADX level
//--- EA input parameters
input int      TP        = 1200;      // Take Profit
input int      SL        = 1400;      // Stop Loss
input int      Slip      = 50;        // Slippage
input int      Stelth    = 0;         // Mode: 1-stops are only visible to the user
input double   KLot      = 2;         // Lot multiplier
input double   MaxLot    = 5;         // Maximum lot size re-setting it to the start size
input double   Lot       = 0.1;       // Number of lots for trading
input color    LableClr  = clrGreen;  // Label color

Fig.1. Stealth Mode

Optimization results

Fig.2. Optimization results from 2010 until now

Tips:

  • It is recommended to use this EA only as a basis for your own strategy.

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

ColorDM_361_HTF ColorDM_361_HTF

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

CGOscillator_HTF CGOscillator_HTF

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

ClockAnalog ClockAnalog

24-hour analog GMT(UTC) market clock displaying in background. The clock displays the Greenwich Mean Time and shows the status of all main stock exchanges according to their schedule.

ColorZerolagMomentumOSMA ColorZerolagMomentumOSMA

Smoothed ColorZerolagMomentum indicator rate of change represented as a colored histogram.