Open

定義

ヒストリカル・バーの始値のコレクション

プロパティ値

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];
最終更新:2014年06月10日 00:14