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