Fast iBarShift and Bars for MT5 – library MetaTrader 5

iBarShift
There are many versions of the iBarShift functions for MetaTrader 5. However, this version is especially simple, fast, and correct. int iBarShift(const string Symb,const ENUM_TIMEFRAMES TimeFrame,datetime time,bool exact=false)   {    int Res=iBars(Symb,TimeFrame,time+1,UINT_MAX);    if(exact) if((TimeFrame!=PERIOD_MN1 || time>TimeCurrent()) && Res==iBars(Symb,TimeFrame,time-PeriodSeconds(TimeFrame)+1,UINT_MAX)) return(-1);    return(Res);   } As of the publication of this code, the integrated Bars function used … Read more

VR Atr pro Lite MT5 – indicator MetaTrader 5

VR Atr pro Lite MT5 - indicator for MetaTrader 5
This indicator calculates the price motion potential and shows the trader price levels, at which the price loses its strength or just becomes weaker. This information allows you to see whether it would be reasonable to trade and whether the currency is strong enough to move on, as well as helps you identify the levels, … Read more

VR Donchian Lite MT5 – indicator MetaTrader 5

VR Donchian Lite MT5 - indicator for MetaTrader 5
VR Donchian Lite is a classic Donchian Channel. Its main advantage is that it is based on classic trend definition rules.  Upward trend rule – new local highs and lows exceed the previous ones. Downward trend rule – new local highs and lows are lower than the previous ones. In all other cases, the movement is considered uncertain or … Read more

NELODI Trading Terminal for MT5 – library MetaTrader 5

NELODI Trading Terminal for MT5 - library for MetaTrader 5
“NLD_Main” is a trend indicator, designed to identify the most relevant trends and trend reversals for the currently selected time-frame. “NLD_Chart” is a custom price indicator, which can be used as a replacement for candles or bars, to make price movements easier to visualize, especially when the chart is zoomed out (to see more data). … Read more

NELODI Trend Waves for MT5 – library MetaTrader 5

NELODI Trend Waves for MT5 - library for MetaTrader 5
This is a highly customizable Monster Trend indicator, which calculates standard deviations, moving averages and a number of other potential support and resistance zones. By default, only the most relevant lines will be drawn, but you can customize what you want to see through input parameters. If everything is turned on, the indicator plots 119 … Read more

WmiFor 3.5 for MT5 (with DTW engine) – indicator MetaTrader 5

WmiFor 3.5 with DTW engine for MetaTrader 5
This indicator predicts possible future price movements by searching for similar candle patterns in the rate history. This is an adaptation of original indicator WmiFor 3.0 (with dynamic time warping engine, DTW) for MetaTrader 4 . Please, find all details about main principles of operation, settings, and trading strategies on the page of the original indicator … Read more

Copy Tick and History From MT4 to MT5 real time. – EA MetaTrader 5

Copy Tick and History From MT4 to MT5 real time. - expert for MetaTrader 5
Thank you @fxsaber for the Symbol library. Please Download the Project from Here: MT4 To MT5 Ticks I am not able to publish the code here. Please download it from the Google drive link above. Lets take a look at the instruction for deployment. In MT5: Copy the complete project in the Experts directory  of the … Read more