Time (UTC) of required historical tick.
SYNTAX
public override DateTime Time (int offset)
PARAMETERS
offset — int
Defines index of the required tick.
RETURN
DateTime Returns a DataTime value representing the time of the required tick.
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; namespace TradeDataClassExamples { public class TradeDataClassExamples : NETStrategy { public override void OnQuote() { TradeData TD = GetHistoricalData(new HistoricalDataRequest(Instruments.Current,Period.Day)) as TradeData; //Methods in TradeData Class Print(TD.Aggressor(0)); Print(TD.Price(0)); Print(TD.Size(0)); Print(TD.Time(0)); //Properties in TradeData Class Print(TD.Count); Print(TD.DataType); Print(TD.HistoryMode); Print(TD.HistorySize); Print(TD.HistoryType); Print(TD.Instrument); Print(TD.Loading); Print(TD.Period); Print(TD.Reversal); } } }