ヒストリカル・バーの加重終値のコレクション。加重終値は (高値 + 低値 + 終値 + 終値) / 4 で計算される。
DataSeries型のオブジェクト。インデックス値[ int barsAgo ]を通してこのプロパティにアクセスすると、参照されたバーの価格を表すdouble型の値が返される。
Weighted
Weighted[
int
barsAgo
]
// Current bar weighted price
double barWeigthedPrice = Weighted[0];
// Weighted price of 10 bars ago
double barWeigthedPrice = Weighted[10];
// Current bar value of a 20 period exponential moving average of weighted prices
double value = EMA(Weighted, 20)[0];