ヒストリカル・バーのタイムスタンプ値のコレクション
TimeSeries型のオブジェクト
Time
Time[
int
barsAgo
] (DateTime構造体を返す)
// Prints the current bar time stamp
Print(Time[0].ToString());
// Checks if current time is greater than the bar time stamp
if (DateTime.Now.Ticks > Time[0].Ticks)
Print("Do something");