Skip to content

SymbolDateRange

QuantConnect.Data.Auxiliary.SymbolDateRange

SymbolDateRange(
    symbol: Union[Symbol, str, BaseContract],
    start_date_time_local: Union[datetime, date],
    end_date_time_local: Union[datetime, date],
)

Represents security identifier within a date range.

Create the instance of SymbolDateRange struct.

Parameters:

Name Type Description Default
symbol Union[Symbol, str, BaseContract]

The unique security identifier

required
start_date_time_local Union[datetime, date]

Start Date Time Local

required
end_date_time_local Union[datetime, date]

End Date Time Local

required

symbol

symbol: Symbol

Represents a unique security identifier.

start_date_time_local

start_date_time_local: datetime

Ticker Start Date Time in Local

end_date_time_local

end_date_time_local: datetime

Ticker End Date Time in Local