Ticaret robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Twitter ü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

TP SL Trailing - MetaTrader 5 için Uzman Danışman

Yayınlayan:
Vladimir Karputov
Görüntülemeler:
12046
Derecelendirme:
(30)
Yayınlandı:
2018.10.25 15:49
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 - Sergey Efimenko

mq5 code author - barabashkakvn

Stop loss (Stop Loss) and take profit (Take Profit) initial setting if these properties are not set for the position. Trailing works only for profitable positions.

If Only zero values is "true" - this means searching for positions having either stop loss, or take profit equal to zero. As soon as such a position is found:

  • If this is a BUY position
    • a stop loss is set: current price (Bid) minus stop loss
    • a take profit is set: current price (Bid) plus take profit
  • If this is a SELL position
    • a stop loss is set: current price (Ask) plus stop loss
    • a take profit is set: current price (Ask) minus take profit

If the Only zero values parameter is "false", stop loss (Stop Loss) and take profit (Take Profit) parameters are disabled.

The EA works for all positions on the current symbol - unique magic number is not considered.


To see how it all works, uncomment the strings:

   ExtStopLoss    = InpStopLoss     * m_adjusted_point;
   ExtTakeProfit  = InpTakeProfit   * m_adjusted_point;
   ExtTrailingStop= InpTrailingStop * m_adjusted_point;
   ExtTrailingStep= InpTrailingStep * m_adjusted_point;

//m_trade.Buy(2.0);
//m_trade.Sell(1.0);
//---
   return(INIT_SUCCEEDED);
  }

and launch the EA in the strategy tester.

MetaQuotes Ltd tarafından Rusçadan çevrilmiştir.
Orijinal kod: https://www.mql5.com/ru/code/22001

XDeMarker_Histogram_Vol XDeMarker_Histogram_Vol

DeMarker_Histogram_Vol indicator with additional averaging of the resulting histogram

Breadandbutter2 Breadandbutter2

Trading system based on iADX (Average Directional Movement Index, ADX) and iAMA (Adaptive Moving Average, AMA) indicators. The system works on a new bar only.

SSL_NRTR SSL_NRTR

NRTR type trend indicator based on exiting the channel formed by averaging High and Low of the price series

Exp_TrendManager_Tm_Plus Exp_TrendManager_Tm_Plus

The trading system based on TrendManager indicator signals with the possibility to set a fixed position holding time