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

RobotPowerM5 meta4V12 - expert pour MetaTrader 5

Publié par:
Vladimir Karputov
Vues:
4571
Note:
(21)
Publié:
2017.01.19 16:55
Mise à jour:
2018.02.16 10:32
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The Expert Advisor is based on analyzing iBullsPower and iBearsPower indicator readings on the first bar:

//+------------------------------------------------------------------+
//|  Calculate indicators' value                                     |
//+------------------------------------------------------------------+
void calculateIndicators()
  {
   bull = iBullsPowerGet(1);
   bear = iBearsPowerGet(1);
   Comment("bull+bear= ",bull+bear);
//b = 1 * Point() + iATRGet(1)*1.5;
//s = 1 * Point() + iATRGet(1)*1.5;
   isBuying  = (bull+bear > 0);
   isSelling = (bull+bear < 0);
   isClosing = false;
  }

Testing on EURUSD M5, deposit $100, 2016.06.01-2016.10.31, default parameters:

RobotPowerM5_meta4V12 

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

CenterOfGravityCandle CenterOfGravityCandle

Ehlers Center of Gravity indicator in the form of candles.

Exp_3RVI Exp_3RVI

The trading system based on the three RVI oscillator signals from three different timeframes.

ZoomPrice tick indicator ZoomPrice tick indicator

The indicator shows the price chart of any scaling level.

Exp_GStopLoss Exp_GStopLoss

This Expert Advisor closes all positions if the total loss exceeds a predefined limit.