Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Experts

Trailing_Profit - expert pour MetaTrader 5

Publié par:
Vladimir Karputov
Vues:
11376
Note:
(39)
Publié:
2017.08.10 12:56
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Author of the idea — Vitaly, author of the MQL5 code — barabashkakvn.

The Expert Advisor manages all open positions in the terminal (on all symbols and with all magic numbers). If the total profit has not reached "minimum_profit", the EA waits.

If the total profit has reached "minimum_profit", the EA sets a percent of profit drawdown and enables tracking.

The "percent_of_profit" parameter is specified in percent. For example, "minimum_profit" = 1000 and "percent_of_profit" 20. The total profit of all open positions has reached 1000. If the profit falls to 800 (1000 - 20%), positions will be closed. If the profit continues to grow, for example up to 2000, the allowable drawdown will be equal to 400 (2000 - 20%). That is, all positions will be closed with the total profit of 1600. There is no fixed drawdown limit, as I do not find it useful to use absolute values.

In theory, it is possible to set percentage = 0. It will function as a total Take Profit. It is possible to set percentage = 100, it will function as breakeven (do not forget, as some orders are being closed, others may become losing).

Attention! The Expert Advisor works with the 3-second interval:

void OnTick()
  {
//--- allow work every three seconds
   static datetime prev_time=0;
   datetime time_current=TimeCurrent();
   if(time_current-prev_time<3)
      return;
   prev_time=time_current;
//---


Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/18709

EURUSD breakout EURUSD breakout

The EA trades during two trading sessions, starting at the specified session beginning time. Stop Loss. Take Profit.

ExpertClor_v01 ExpertClor_v01

An assistant Expert Advisor. Only CLOSING positions.

Get_Rich_or_Die_Trying_GBP Get_Rich_or_Die_Trying_GBP

Trades on PERIOD_M1 (M1). Calculates bullish and bearish candlesticks.

HistoryPositionInfo version 2 HistoryPositionInfo version 2

Returns the profit of a position in points, as well as commission, swaps and profit in money based on the trading history.