Is it possible to call an indicator out of another indicator

 

Is it possible to call an indicator from another indicator so that the graphic objects (rectangles and lines) of this indicator are drawn. It would be best if this could be done with a call. So not just the pure query of a buffer value.

 
sunshineh: Is it possible to call an indicator from another indicator so that the graphic objects (rectangles and lines) of this indicator are drawn. It would be best if this could be done with a call. So not just the pure query of a buffer value.

Add the indicator to the chart, so the objects are drawn. Only then can you read the objects.

 
sunshineh:

Is it possible to call an indicator from another indicator so that the graphic objects (rectangles and lines) of this indicator are drawn. It would be best if this could be done with a call. So not just the pure query of a buffer value.

See that

Documentation on MQL5: Chart Operations / ChartIndicatorAdd
Documentation on MQL5: Chart Operations / ChartIndicatorAdd
  • www.mql5.com
ChartIndicatorAdd - Chart Operations - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
 
If you need indicator values from buffers, then you can use iCustom() function. But if you need Objects that drawn from another indicator then indicator must be active on chart then you can search the objects from chart to get values. 
Reason: