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