Open custom indicator chart line in a separate window through the expert

 
Hi! 

I have custom expert with some input parameters and some customizable variables, which i enter through CEdit objects.

I wish to combine all this parameters and to open my custom indicator(like i'm opening it when I drag-drop indicator to chart) on CButton.Press() change

The general purpose is to see the image of the chart(of this indicator)

iCustom function only helps to get the specific bar-value of the indicator in selected time frame and can't get the whole chart line at once. 

Pls halp.
 
UPD: looking for something similar to 

bool  ChartIndicatorAdd( 
   long  chart_id,                 // chart ID 
   int   sub_window                // number of the sub-window 
   int   indicator_handle          // handle of the indicator 
   );

but in mql4
 
Antik94:
UPD: looking for something similar to 
bool  ChartIndicatorAdd( 
   long  chart_id,                 // chart ID 
   int   sub_window                // number of the sub-window 
   int   indicator_handle          // handle of the indicator 
   );
but in mql4
Such functionality is not available in MQL4!
 
FMIC:
Such functionality is not available in MQL4!
Thanks, already translating my scripts for mt5 platform.