I may be the only one experiencing this, but there are times when the indicator does not display fully.
In such cases, if you switch the timeframe and then switch it back, it will display correctly.
This can be somewhat frustrating.
As a workaround, please add the following to your MT5 source code:
Code: Select all
int calculated = BarsCalculated(handle);
if (calculated < totalRates) {
Print("Not all data of handle is calculated.");
return;
}