Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
- Publié par:
- Vladimir Karputov
- Vues:
- 7719
- Note:
- Publié:
- Mise à jour:
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Author of the idea — Collector, author of the MQL5 code — barabashkakvn.
Uses signals from the indicators: ATR, MACD.
Block of getting the indicators:
Range=iATRGet(1);
rr=Range*LEVEL;
Delta=iMACDGet(MAIN_LINE,0)-iMACDGet(SIGNAL_LINE,0);
Delta1=iMACDGet(MAIN_LINE,1)-iMACDGet(SIGNAL_LINE,1);
rr=Range*LEVEL;
Delta=iMACDGet(MAIN_LINE,0)-iMACDGet(SIGNAL_LINE,0);
Delta1=iMACDGet(MAIN_LINE,1)-iMACDGet(SIGNAL_LINE,1);
Open Buy if:
if(Delta>rr && Delta1<rr)
Open Sell if:
if(Delta<-rr && Delta1>-rr)
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/17080
Universum 3.0
Increasing the lot after a losing trade. Entry signals are based on the DeMarker indicator.
Exp_WeightOscillator
The simplest EA based on the WeightOscillator weighted oscillator.
Chart on Chart
The Chart on Chart indicator displays a chart of other symbol on the current chart.
Fractional_Bands_HTF
The Fractional_Bands indicator with the timeframe selection option available in the input parameters.