bool WindowIsVisible(int index)
Returns TRUE if the chart subwindow is visible, otherwise returns FALSE. The chart subwindow can be hidden due to the visibility properties of the indicator placed in it.
チャート サブウィンドウが表示されている場合は、TRUE を返します。それ以外の場合は、FALSE を返します。チャート サブウィンドウは、配置されたインディケータの表示プロパティによって、非表示にすることができます。
Parameters:
パラメータ:
1 2 | <b>index</b> - Chart subwindow index. チャート サブウィンドウのインデックス。 |
Sample:
サンプル:
1 2 3 4 5 | int maywin=WindowFind("MyMACD"); if(maywin>-1 && WindowIsVisible(maywin)==true) Print("window of MyMACD is visible"); else Print("window of MyMACD not found or is not visible"); |