Interface IOptimizerFilterArgs

Filter arguments for data source queries without pagination. Used internally to filter data by symbol and time range.

interface IOptimizerFilterArgs {
    endDate: Date;
    startDate: Date;
    symbol: string;
}

Hierarchy (View Summary)

Properties

endDate: Date

End date of the data range (inclusive).

startDate: Date

Start date of the data range (inclusive).

symbol: string

Trading pair symbol (e.g., "BTCUSDT").