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

Momo_trades - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
4247
평가:
(16)
게시됨:
2018.01.22 10:02
업데이트됨:
2018.02.28 15:24
Momo_trades.mq5 (50.84 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Author of the idea: Rustamzhan Salidzhanov, mq5 code author: barabashkakvn.

The trading idea: the iMACD (Moving Average Convergence/Divergence, MACD) Oscillator and the trend indicator iMA (Moving Average, MA). The initial signal to open a Buy position is the combination of MACD and MA:

Momo_trades open buy

"MACD: bar from which we get the value" = 2, "Moving Average: bar from which we get the value" = 6.

11 MACD values are copied to an array, copying starts with the index "MACD: bar from which we get the value". Then a search is performed in the filled array to find when MACD values change from negative to positive for the first time (in the above figure index #6 has negative values, index #5 is positive).

The values of the MA indicator are also checked: the close price of bar "Moving Average: bar from which we get the value" must be greater than the MA value on the same bar by the value of "Price Shift between Close and Moving Average".


Input Parameters

  • Manual Lot: "true" -> use manual lot, "false" -> use risk percent - position volume selection type: manual or percent of free margin;
  • Lots - lot value;
  • Stop Loss (in pips) - stop loss value;
  • Take Profit, if "0" we use "Breakeven"(in pips) - take profit value, if 0 - breakeven will be used instead;
  • Trailing Stop, if we use "Breakeven" - we do not use trailing (in pips) - trailing stop function, it is disabled if breakeven is used;
  • Trailing Step (in pips) - trailing step value;
  • Breakeven (in pips) - breakeven value;
  • Risk in percent for a deal from a free margin - risk per trade as percent of free margin.
  • Price Shift between Close and Moving Average (in pips);
  • Close End Day - closing positions at the end of the day;
  • Moving Average: period of ma - MA: averaging period;
  • Moving Average: bar from which we get the value;
  • MACD: period of fast ma - fast moving average period;
  • MACD: period of slow ma - slow moving average period;
  • MACD: period of averaging of difference - MACD: averaging period;
  • MACD: bar from which we get the value;
  • magic number - Expert Advisor identifier.

Default settings are good for EURJPY, H1.

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

ichimok2005 ichimok2005

An Expert Advisor based on the iIchimoku (Ichimoku Kinko Hyo) indicator. Fixed lot.

EMA 6.12 EMA 6.12

The Expert Advisor uses the signals of "crossover of two iMAs (Moving Average, MA)". The EA uses Trailing Stop and Take Profit.

ma-shift Puria method ma-shift Puria method

The Expert Advisor is based on Puria method with a few changes. It uses two iMA (Moving Average, MA) indicators and one iMACD (Moving Average Convergence/Divergence, MACD).

Four clicks to draw an arc-shaped channel Four clicks to draw an arc-shaped channel

A quick way to draw an arc-shaped channel using four mouse clicks.