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

Sensitive - expert pour MetaTrader 5

Publié par:
Vladimir Karputov
Vues:
2331
Note:
(15)
Publié:
2018.10.25 15:30
Sensitive.mq5 (40.72 KB) afficher
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The author of the idea - Scriptor

mq5 code author - barabashkakvn

The EA checks entry opportunities only when a new bar appears, while trailing works on each tick. When checking a signal, there is another verification apart from comparing the values of the main and signal line on the current and previous bar: the main line value is converted into points and compared to the MACD open level parameter. When a BUY open signal arrives, close SELL positions, and vice versa.

Open signals

BUY: 

   bool open_buy_signal=(main[0]<0 && main[0]>signal[0] && main[1]<signal[1] &&  
                          MathAbs(main[0])>(MACDOpenLevel*m_symbol.Point()));

SELL:

   bool open_sell_signal=(main[0]>0 && main[0]<signal[0] && main[1]>signal[1] && 
                          MathAbs(main[0])>(MACDOpenLevel*m_symbol.Point()));


EURUSD, M15

Sensitive EURUSD

USDJPY, M15:

Sensitive USDJPY

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

Mogalef Mogalef

Mogalef Bands indicator

Power_Measure Power_Measure

Power measure indicator

Proffessor v3 Proffessor v3

Grid of pending orders. The EA applies iADX (Average Directional Movement Index, ADX) indicator.

Modified_Advance_Decline_Line Modified_Advance_Decline_Line

Modified Advance Decline line indicator