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

MA Reverse - expert pour MetaTrader 5

Publié par:
Vladimir Karputov
Vues:
4118
Note:
(23)
Publié:
2017.03.02 10:00
Mise à jour:
2018.02.15 17:51
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Trading by Moving Average. Checking for sufficiency of funds.

Author of the idea is Konstantin Grandauthor of the MQL5 code is barabashkakvn.   

Operation Principle:

MA Reverse algo

Performance result on EURUSD, M30 from 2016.05.08 to 2016.12.28:

MA Reverse tester 

Also, before each operation, we should check if we have sufficient funds:

         //--- check volume before OrderSend to avoid "not enough money" error (CTrade)
         double chek_volime_lot=m_trade.CheckVolume(m_symbol.Name(),1.0,m_symbol.Bid(),ORDER_TYPE_SELL);
...
         //--- check volume before OrderSend to avoid "not enough money" error (CTrade)
         double chek_volime_lot=m_trade.CheckVolume(m_symbol.Name(),1.0,m_symbol.Ask(),ORDER_TYPE_BUY);

This protection allows avoiding the "not enough money" error.
 

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

RSI EA RSI EA

RSI EA - trading based on overbought/oversold zones determined by the iRSI (Relative Strength Index, RSI) indicator.

Money Fixed Margin Money Fixed Margin

An example for calculating the lot value with a fixed margin level. That is, if you specify 10%, a position with the margin equal to 10% of free margin will be opened.

e-TurboFx e-TurboFx

Analysis of bars, if they contain N consecutive bars of the same type.

Waddah Attar Win Waddah Attar Win

Pending Buy Limit (BuyLimit) and Sell Limit (SellLimit) orders. Using OnTradeTransaction().