Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Views:
5342
Rating:
(26)
Published:
2016.02.09 09:23
Updated:
2016.11.22 07:32
Need a robot or indicator based on this code? Order it on Freelance Go to 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

Translated from Russian by MetaQuotes Ltd.
Original code: 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.