int WindowFind(string name)
If indicator with name was found, the function returns the window index containing this specified indicator, otherwise it returns -1.
インディケータの name(名前)が見つかった場合、この関数は指定されたインディケータを含んでいるウィンドウ インデックスを返します。それ以外の場合は、-1 を返します。
Note: WindowFind() returns -1 if custom indicator searches itself when init() function works.
注意: カスタム インディケータが、init() 関数を処理するときに、自分自身を検索する場合、WindowFind() は -1 を返します。
Parameters:
パラメータ:
1 2 | <b>name</b> - Indicator short name. インディケーターの短縮名。 |
Sample:
サンプル:
1 | int win_idx=WindowFind("MACD(12,26,9)"); |