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:
パラメータ:
array[] - Array under check.
チェックする配列。
Sample:
サンプル:
if(ArrayIsSeries(array1)==false)
ArrayInitialize(array1,0);
else
{
Print("Series array cannot be initialized!");
return(-1);
}
|