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:
パラメータ:
|
Sample:
サンプル:
1 2 3 | int win_handle=WindowHandle("USDX",PERIOD_H1); if(win_handle!=0) Print("Window with USDX,H1 detected. Rates array will be copied immediately."); |