Time

定義

ヒストリカル・バーのタイムスタンプ値のコレクション

プロパティ値

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");
最終更新:2014年06月10日 22:41