I need to see values of my indicators

 

hello, i need a custom indicator which will show me the values of all of my indicators. (for example stochastic: i dont want to just see the line i want t see the line AND below each point in the line (every bar) the value of that point in the line. (probably writtent topdown  so as to avoid values writing over each other)),

This also goes for macd histogram for xample.

can anyone help me code something like that?

TY

 
onemore:

hello, i need a custom indicator which will show me the values of all of my indicators. (for example stochastic: i dont want to just see the line i want t see the line AND below each point in the line (every bar) the value of that point in the line. (probably writtent topdown  so as to avoid values writing over each other)),

This also goes for macd histogram for xample.

can anyone help me code something like that?

TY


ummmmmmmmmm any1????

live reading the numbers not just seeing lines.. help out pls...

 

https://docs.mql4.com/common/Comment


or for ready made search the code base.......lots of stuff there


https://www.mql5.com/en/code/mt4
 
onemore wrote >>

ummmmmmmmmm any1????

live reading the numbers not just seeing lines.. help out pls...

Create variables to hold the values you want displayed.

Display them in your indicator name.

Eg,

double stochastic = 1.3;

double macd =3.0;

IndicatorShortName("My Value Displayer "+ stochastic + macd);

Another way to do this will be to create object labels to display the info you want.

Reason: