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

FullDump - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
4907
평가:
(18)
게시됨:
2018.07.09 12:51
FullDump .mq5 (43.39 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Idea by: Yuri.

MQL5 code by: Vladimir Karputov.


Operation algorithm

Searching for a signal within the interval from bar "0" to Depth of search.


Buying:

  1. RSI must be below 30;
  2. The price must reach the lowest Bollinger Band;
  3. Then wait until the candlestick moves to above the middle Bollinger Band;
  4. Stop Loss is placed below the last local Low. Take Profit is placed above the upper Bollinger Band;
  5. As soon as the upper line is reached, the stop must be moved to the breakeven point.


Sell:

  1. RSI must be above 70;
  2. The price must reach the upper Bollinger Band;
  3. Then wait until the candlestick moves to below the middle Bollinger Band;
  4. Stop Loss is placed above the last local High. Take Profit is placed below the lower Bollinger Band;
  5. As soon as the lower line is reached, the stop must be moved to the breakeven point.


Inputs

  • Lots - position volume.
  • Bands - Bands: Averaging period;
  • RSI - RSI: Averaging period;
  • Indent from High and Low - indent from High and Low when placing Stop Loss and Take Profit;
  • Depth of search - number of bars, among which the signal is searched for;
  • magic number - unique identifier for the EA.

Upon optimization (attention: Non-optimized parameters are in the code; you have to search for the necessary values independently) on EURUSD,H1:

FullDump

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

ColorX2MA_x2_cloud_HTF ColorX2MA_x2_cloud_HTF

Two indicators ColorX2MA from different timeframes, the area between lines being filled with a cloud, the color of which corresponds with the trend direction on the market

Cutler_RSI Cutler_RSI

Cutler's RSI.

DBB DBB

Indicator Distance from Bollinger Bands.

Directional_Breakout Directional_Breakout

An indicator of the movement direction and stop.