INDICATOR_SHORTNAME ; in one separate window with several indicator together

 

in mt5 with drag & drop several indicator in one separate window, value of buffers for that

wrote after his name like below picture:

with using;

IndicatorSetString(INDICATOR_SHORTNAME,shortname);

 in a mql5, all value's for buffer's show's after name :

if several indicator are in one code mql5 how to define that ;

we have such as the first?

 
TIMisthebest:

in mt5 with drag & drop several indicator in one separate window, value of buffers for that

wrote after his name like below picture:

with using;

 in a mql5, all value's for buffer's show's after name :

if several indicator are in one code mql5 how to define that ;

we have such as the first?

There is no picture ;-)

Anyway, your question isn't very clear : "several indicator are in on code" ?

 
angevoyageur:

There is no picture ;-)

Anyway, your question isn't very clear : "several indicator are in on code" ?

can you see picture now?

-----

in mt5 with drag & drop several indicator in one separate window, value of buffers for that

wrote after his name like below picture:


with using;

IndicatorSetString(INDICATOR_SHORTNAME,shortname);

 in a mql5, all value's for buffer's show's after name :


if several indicator are in one code mql5 how to define that ;

we have such as the first?

----------------------

angevoyageur:

 "several indicator are in on code" ?

excuse me ;

i mean ; several base indicator, rewrite in a code mql5

assume :( AFL_winner & RSI & ... stochastic....) in one mql5 file as an indicator.

 
TIMisthebest:

can you see picture now?

-----

in mt5 with drag & drop several indicator in one separate window, value of buffers for that

wrote after his name like below picture:


with using;

 in a mql5, all value's for buffer's show's after name :


if several indicator are in one code mql5 how to define that ;

we have such as the first?

----------------------

excuse me ;

i mean ; several base indicator, rewrite in a code mql5

assume :( AFL_winner & RSI & ... stochastic....) in one mql5 file as an indicator.

Yes I see pictures. If you have only 1 indicator, that combines others, seems to me you can only have 1 INDICATOR_SHORTNAME
But the question is, why put all indicators in one ?
 
angevoyageur:
But the question is, why put all indicators in one ?

my view :

strategy tester in mt5 only can view 1 indicator in same time,

before write an expert, i want to see reaction between several of them and run it in strategy tester

and the connection with the main chart and several indicator are in main chart and search to find system

and limitation of chart space ( area ) ?!

 
TIMisthebest:

my view :

strategy tester in mt5 only can view 1 indicator in same time,

before write an expert, i want to see reaction between several of them and run it in strategy tester

and the connection with the main chart and several indicator are in main chart and search to find system

and limitation of chart space ( area ) ?!

You can use :

    PlotIndexSetString(0, PLOT_LABEL, "yourname");

That give you a name for a indicator, you can see it in Data Window.

 
angevoyageur:

You can use :

That give you a name for a indicator, you can see it in Data Window.

yes

and i asked : when i use several  indicator combines together in one

is it possible : the value of buffer for each of them write after his name like below picture.


 
TIMisthebest:

yes

and i asked : when i use several  indicator combines together in one

is it possible : the value of buffer for each of them write after his name like below picture.


Already answered : no.
 
angevoyageur:
thank you.
 
TIMisthebest:
thank you.
 IndicatorSetString(INDICATOR_SHORTNAME,StringFormat("AFL Winner (%u, %u) RSI(%u)",periods,average,period));
 
kourosh1347:

thank's

i will try this

thank you

Reason: