Custom indicator does not load values
-
Good morning group. Can someone explain or help me with a *.mq5 indicator, which when I add it to fxdreema does not load any value. I have tried with other indicators and these do load the data. I enclose the indicator so that you can validate it and if you can help me, I thank you very much.0_1653566898140_Extreme_TMA_line_indicator.mq5
-
@kamux This indicator doesn't seem to have any buffers
-
@jstap I only know a little about C programming, and when I compared this indicator with another one that did show the buffers in the metatrader editor, I did not notice practically any difference in its lines, or something would show me that this indicator was missing something . I also checked that of the buffers and both indicators were very similar. That's why it seemed strange to me that this indicator did not load the buffers in fxdreema. Someone who knows about programming in metratader that can help me to know why this indicator does not load the buffers in the fxdreema?
-
@kamux My knowledge on coding is limited, what I do know is though is the buffers FX uses are lines of code so if none show when added to FX it likely doesn't have them, you could try adding as it may work. If when you get this loaded in MT5 it is showing the relevent data in the data window I can show you how to get from iCustom code.
-
@jstap I think you are referring to these data, I attach the image and confirm if they are those please.

-
@kamux Triple colour indicators are notoriously hard to read, I am not talking about the indicator inputs, I am talking about the data window. View tab->data window.
-
@jstap Here is the tab data - data window

-
@kamux Create 3 double variables named as you want and add these lines to custom code block, put each variable in a comment so you can visually check all lines match variable digits.
VARIABLE1 = iCustom(NULL,0,"INDICATOR NAME"0,0);
VARIABLE2 = iCustom(NULL,0,"INDICATOR NAME"1,0);
VARIABLE3 = iCustom(NULL,0,"INDICATOR NAME"2,0);
See if this works but it looks as though this is different on MT5 vs MT4, on mt4 this would return the data needed.
-
@jstap Hello friend... I don't know how to program in mql, but I started to add the indicator manually as shown in a tutorial, and it worked for me. Many thanks anyway for your help.