Interface IRuntimeRange

Interface for runtime information and range used in backtesting and strategy execution. The interface defines the time range for the backtest while executing a strategy in backtest mode

interface IRuntimeRange {
    from: Date;
    to: Date;
}

Properties

Properties

from: Date

Start date of the runtime range

to: Date

End date of the runtime range