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
Vues:
5402
Note:
(26)
Publié:
2016.02.09 09:23
Mise à jour:
2016.11.22 07:32
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The indicator stores the tick from the terminal to an array. The type of the received ticks can be specified in the parameters:

Input Parameters

Next, the tick array is displayed on the screen. During that the tick flag is displayed:

  • TICK_FLAG_BID — the tick changed the Bid price;
  • TICK_FLAG_ASK — the tick changed the Ask price;
  • TICK_FLAG_LAST — the tick changed the price of the latest trade;
  • TICK_FLAG_VOLUME — the tick changed the volume;
  • TICK_FLAG_BUY — the tick appeared as a result of a buy trade;
  • TICK_FLAG_SELL — the tick appeared as a result of a sell trade;

Indicator

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

AMA_HTF AMA_HTF

The Adaptive Moving Average indicator with the timeframe selection option available in input parameters.

AMA_3HTF AMA_3HTF

Three Adaptive Moving Average indicators from three different timeframes displayed on the same chart.

DEMA_HTF DEMA_HTF

The Double Exponential Moving Average indicator with the timeframe selection option available in input parameters.

DEMA_3HTF DEMA_3HTF

Three Double Exponential Moving Average indicators from three different timeframes displayed on the same chart.