ヒストリカル・バーの始値のコレクション
DataSeries型のオブジェクト。インデックス値[ int barsAgo ]を通してこのプロパティにアクセスすると、参照されたバーの価格を表すdouble型の値が返される。
Open
Open[
int
barsAgo
]
// Current bar opening price
double barOpenPrice = Open[0];
// Opening price of 10 bars ago
double barOpenPrice = Open[10];
// Current bar value of a 20 period simple moving average of opening prices
double value = SMA(Open, 20)[0];