Property of type DateTime that contains timestamp of the current bar.
// Write current time and price to the logsLog("Current price at "+ Time +": "+Market.CurrentPrice);
usingSignals.DataSeries.Bars;usingSignals.Framework;publicclassMyStrategy:SingleMarketStrategy{privateBars hourlyBars;publicoverridevoidSetup(DataMarketplace data,IndicatorsMarketplace indicators) { hourlyBars =data.Bars(BarPeriodType.Hour,1).WithOffset(25); }publicoverridevoidRegisterActions() {OnUpdateOf(hourlyBars).Do(() => { // Write current time and price to the logsLog("Current price at "+ Time +": "+Market.CurrentPrice); }); }}