Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Telegram üzerinde bulun!
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
Uzman Danışmanlar

ichimok2005 - MetaTrader 5 için Uzman Danışman

Yayınlayan:
Vladimir Karputov
Görüntülemeler:
5854
Derecelendirme:
(23)
Yayınlandı:
2018.01.22 10:02
Güncellendi:
2018.02.28 14:53
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git

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 tarafından Rusçadan çevrilmiştir.
Orijinal kod: 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).