|
A group of functions to work with arrays.
配列を使用する関数のグループです。
Arrays are allowed to be maximum four-dimensional. Each dimension is indexed
from 0 to dimension size-1. In a particular case of a one-dimensional array of 50 elements, calling
of the first element will appear as array[0], of the last one - as array[49].
配列は最大4次元まで許可されています。それぞれの次元のインデックスは、0 から 次元数 -1 です。50個の要素からなる1次元の配列がある具体的なケースでは、最初の要素の呼び出しは
array[0] となり、最後の要素は array[49] と表現されます。
これらの関数を使用して(配列の量と特質を除いて)、定義済みの時系列配列 Time[ ]、Open[ ]、High[ ]、Low[ ]、Close[ ]、Volume[ ] の処理ができます。
|