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

E-Skoch-Open - expert pour MetaTrader 5

Publié par:
Vladimir Karputov
Vues:
3130
Note:
(20)
Publié:
2017.03.02 12:11
Mise à jour:
2018.02.15 18:03
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Author of the idea — Skochauthor of the MQL5 code — barabashkakvn

Opens a SELL position on each bar, if Close of the 1st bar > Close of the 3rd bar. Opens a BUY position on each bar, if Close of the 3rd bar > Close of the 1st bar.

If you want to change the order opening condition, it can be easily done by changing the condition in just one line:

//--- BUY
   if((iClose(3)>iClose(2)) && (iClose(1)<iClose(2)))
.
.
.
//--- SELL
   if((iClose(3)>iClose(2)) && (iClose(2)<iClose(1)))


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

10pipsOnceADayOppositeLastNHourTrend 10pipsOnceADayOppositeLastNHourTrend

10 pips per day opposite to the "yesterday's trend".

SmoothAlgorithms SmoothAlgorithms

A library of averaging algorithms, the algorithms were described in details in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers"

e-Smart_Trailing e-Smart_Trailing

Modification of StopLoss of any positions. Trailing. Trailing.

TriXCandleKeltner TriXCandleKeltner

The TriX indicator in a candlestick form with the Keltner channel calculated relative to TriX averaging.