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

Doji Arrows - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
5310
평가:
(15)
게시됨:
2018.06.16 10:12
Doji Arrows.mq5 (38.02 KB) 조회
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Idea by: Scriptor.

MQL5 code by: Vladimir Karputov.

The EA trades by the Doji pattern:

Doji

At the same time, you can set the candlestick body size in the "Size of a body of a candle (Open Close)" parameter.


Operation algorithm

The EA analyzes bar #2 and bar #1 when a new bar appears. If bar #2 is Doji, then the following signals are checked:

  • close#1 > high#2 → signal for opening a BUY;
  • close#1 < low#2 → signal for opening a SELL.


Inputs

  • Lots (if "0" → the parameter "Risk" will be used) - a lot value that is set manually. If you set to "0", then the parameter of "Risk" will work, i.e., risk in percents of free margin per a trade;
  • Stop Loss (in pips) - Stop Loss; if you set it to "0", the parameter will be disabled;
  • Take Profit (in pips) - Take Profit; if you set it to "0", the parameter will be disabled;
  • Trailing Stop (in pips) - trailing, if you set it to "0", the parameter will be disabled;
  • Trailing Step (in pips) - trailing step;
  • Risk (if "0" → the parameter "Lots" will be used) - risk in percents of free margin per trade;
  • Size of a candle (Open Close) - candlestick body size;
  • magic number - unique identifier for the EA.

If "Size of a candle" = 0, then there will be just a few trades (about 15-30) on H1 over the year, and profitability as follows:

Doji Arrows, Size of a candle = "0"

If you set this parameter to 1, then the number of trades will increase tenfold, and the profit will be distributed as follows:

Doji Arrows, Size of a candle = "1"

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

DeleteTradeArrows DeleteTradeArrows

It deletes the arrow objects from the chart, which mark the transactions in the chart. The utility is implemented as an indicator that does not draw anything by itself.

GoldWarrior02b GoldWarrior02b

This EA uses indicators iCCI (Commodity Channel Index, CCI), ZigZag, and Impulse. Position trailing is possible.

BSS 1_0 BSS 1_0

An Expert Advisor based on three iMA (Moving Average, MA) indicators.

KWAN_RDP KWAN_RDP

A simple oscillator based on the values of the iDemarker, iMFI and iMomentum indicators and implemented as a two-colored histogram.