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

ichimok2005 - MetaTrader 5용 expert

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

The author of the idea: John Smith, the mq5 code author: barabashkakvn.

The EA trades based on the signals of iIchimoku (Ichimoku Kinko Hyo) using a fixed lot. When a signal emerges, opposite positions are closed.

The Buy signal:

   if(Senkou_Span_A>Senkou_Span_B)
      if(Close>Open)
         if(Senkou_Span_B<Close && Close<Senkou_Span_A)

Example:

ichimok2005 Open Buy

The Sell signal:

   if(Senkou_Span_B>Senkou_Span_A)
      if(Open>Close)
         if(Senkou_Span_B>Close && Close>Senkou_Span_A)


Input Parameters

  • Ichimoku settings
    • Ichimoku: period of Tenkan-sen;
    • Ichimoku: period of Kijun-sen;
    • Ichimoku: period of Senkou Span B.
  • Trade settings
    • Lots - position volume;
    • Stop Loss (in pips) - stop loss value;
    • Take Profit (in pips) - take profit value;
    • magic number - Expert Advisor identifier.

Example of EA launch on EURUSD,H3:

ichimok2005 EURUSD H3

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

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.

FORTS Currency Powers FORTS Currency Powers

An example of creating synthetic instruments for calculating the strength of RTS, USD, RUB based on futures contracts of the FORTS market.

Momo_trades Momo_trades

The Expert Advisor trades based on the signals of iMA (Moving Average, MA) and iMACD (Moving Average Convergence/Divergence, MACD). The minimum distance between the price and the MA indicator is taken into account.

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).