bool ArrayIsSeries(object array[ ])
Returns TRUE if the array under check is a series array (Time[ ],Open[ ],Close[ ],High[ ],Low[ ], or Volume[ ]), otherwise returns FALSE.
もし、配列をチェックした結果が直列配列(Time[ ]、Open[ ]、Close[ ]、High[ ]、Low[ ]、もしくは Volume[ ])だった場合、TRUE を返します。そうでなければ、FALSE を返します。
Parameters:
パラメータ:
1 2 | <b>array[]</b> - Array under check. チェックする配列。 |
Sample:
サンプル:
1 2 3 4 5 6 7 | if(ArrayIsSeries(array1)==false) ArrayInitialize(array1,0); else { Print("Series array cannot be initialized!"); return(-1); } |