Управление separate window?

 
Добрый день

Уважаемые коллеги, прошу подсказать, как можно для своего индикатора в сепарайт окне программным методом указать Fixed Minimum и Maximum, а также добавить необходимые уровни (В диалоге Custom Indicator -> Levels -> Add) ?

Весь help пересмотрел на несколько раз
 
программно - никак.
только в исходном тексте через #property. например
#property indicator_minimum 0
#property indicator_maximum 100
#property indicator_level1  38.2
#property indicator_level2  61.8
 
Ищи - Controlling compilation
#property identifier_value

The list of predefined constant identifiers. Example:

#property link "www.mycompany.com"
#property copyright "My Company#x00EA"
#property stacksize 1024

Constant Type Description
link string a link to the company website
copyright string the company name
stacksize int stack size
indicator_chart_window void show the indicator in the chart window
indicator_separate_window void show the indicator in a separate window
indicator_buffers int the number of buffers for calculation, up to 8
indicator_minimum int the bottom border for the chart
indicator_maximum int the top border for the chart
indicator_colorN color the color for displaying line N, where N lies between 1 and 8
indicator_levelN int predefined level N for separate window custom indicator, where N lies between 1 and 8
show_confirm void before script run message box with confirmation appears
show_inputs void before script run its property sheet appears; disables show_confirm property


The compiler will write the declared values to the settings of the executable module.
 
Жаль. То есть жесткая установка параметров индикатора в #property так и останется - в MQL4 добавлять/удалять уровни и менять максимум/минимум на ходу будет нельзя?
 
Вы можете доказать необходимость программного управления параметрами пользовательского индикатора?
Причина обращения: