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
Vues:
26211
Note:
(5)
Publié:
2008.05.17 05:41
Mise à jour:
2016.11.22 07:32
MQL5 Freelance Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Author: Korey


In manual trading, watching how zero bar is forming makes you impatient in vain.

Zero bar is often out of control in automated trading, because it is considered as not-yet formed.

From these considerations, we concluded that it would be useless to display zero bar of the indicator due to false signals that occur while it was being formed.

However, it is possible and necessary to display the indicator signal line on zero bar, since this line is rather integrated, i.e., forecast functions of the signal line are retained on zero bar.



It is proposed to evaluate an indicator that does not display zero bar, but displays the signal line on zero bar.

The indicator is colored in the B. Williams' AC/AO style.

If the next bar is below the preceding one, then the down-color=red.

If the next bar is above the preceding one, then the up-color=green.

Recommendations:

You can restore displaying of zero bar directly in the indicator's code:

a) no zero bar displayed: if(i>=1),

b) zero bar displayed: if(i>=0).


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

Support - Resistance Support - Resistance

A version of indicators to detect Support/Resistance levels.

Pattern Searching ZigZag Pattern Searching ZigZag

Building in the current window a ZigZag calculated on a larger timeframe.

Volatility.mq4 Volatility.mq4

The indicator shows the volatility of a currency pair. This knowledge may be very helpful when using one strategy or another.

TRAYLER+ TRAYLER+

I supposed to use the EA for trailing, but added graphical order management to it while programming.