Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Telegram !
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

SimpleTrade - expert pour MetaTrader 5

Publié par:
Vladimir Karputov
Vues:
3344
Note:
(17)
Publié:
2017.03.02 09:55
Mise à jour:
2018.02.15 17:22
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The Expert Advisor compares open prices of the zero and third bar.

Author of the idea is Oleksandrauthor of the MQL5 code is barabashkakvn.   

Condition to open a Buy position:

         if(iOpen(0)>iOpen(3))

- If the opening price of a zero bar is higher than the opening price of the third bar.

Condition to open a Sell position:

         if(iOpen(0)<=iOpen(3))

- If the opening price of a zero bar is less than or equal the opening price of the third bar.

SimpleTrade Sell
 

Position is closed by StopLoss or at the beginning of the next bar:

SimpleTrade Close All 

Since the EA works at the moment of emergence of a new bar, it is equipped with several protection steps — so as to avoid missing a whole bar due to possible position opening errors.

For example, if we cannot update the current prices, we should then reset the timer (static variable):

            //--- Since we work on a new bar, if refresh of current
            //--- prices fails, reset the timer
            if(!RefreshRates())
              {
               curTime=iTime(1);
               return;
              }

Also we check the result of the trading operation:

  1. The Buy or Sell method must return true
    1. and the ResultDeal method should return a non-zero value
if an error occurs, we reset the timer:

         if(iOpen(0)<=iOpen(3))
           {
            //--- Since we work on a new bar, if refresh of current
            //--- prices fails, reset the timer
            if(!RefreshRates())
              {
               curTime=iTime(1);
               return;
              }
            //--- Since we work on a new bar, if if a trade operation fails,
            //--- reset the timer
            if(m_trade.Sell(Lots,NULL,m_symbol.Bid(),m_symbol.Ask()+StopLoss*m_adjusted_point))
               if(m_trade.ResultDeal()!=0)
                  return;
            curTime=iTime(1);
            return;
           }

 

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

NRTR GATOR NRTR GATOR

Derived from the NRTR indicator, provided with a new visual display.

AIS1 AIS1

The EA works based on the analysis of Open, High and Low.

Lucky Lucky

A tick Expert Advisor. It compares the price on the previous tick and the current price.

21hour 21hour

The Expert Advisor places two pending orders at a certain time.