Interface IOptimizerRange

Time range configuration for optimizer training or testing periods. Used to define date boundaries for data collection.

interface IOptimizerRange {
    endDate: Date;
    note?: string;
    startDate: Date;
}

Properties

endDate: Date

End date of the range (inclusive).

note?: string

Optional description of this time range. Example: "Bull market period 2024-Q1"

startDate: Date

Start date of the range (inclusive).