ウィンドウハンドル【WindowHandle】int WindowHandle(string symbol, int timeframe) Returns the system window handler containing the given chart. If the chart of symbol and timeframe has not been opened by the moment of function calling, 0 will be returned.指定したチャートを含んでいるシステム ウィンドウのハンドルを返します。チャートの通貨ペアと時間枠が関数を呼び出した時に開かれていない場合は、0 が返されます。Parameters:パラメータ:symbol–symbol name.通貨ペア名。timeframe–Timeframe. It can be any of Timeframe enumeration values. 0 means the current chart timeframe.時間枠。時間枠の列挙値のいずれかを指定できます。0 は、現在のチャートの時間枠を意味します。 Sample:サンプル: int win_handle=WindowHandle("USDX",PERIOD_H1); if(win_handle!=0) Print("Window with USDX,H1 detected. Rates array will be copied immediately.");123 int win_handle=WindowHandle("USDX",PERIOD_H1); if(win_handle!=0) Print("Window with USDX,H1 detected. Rates array will be copied immediately.");