Skip to content

NewTradableDateEventArgs

QuantConnect.NewTradableDateEventArgs

NewTradableDateEventArgs(
    date: Union[datetime, date],
    last_base_data: BaseData,
    symbol: Union[Symbol, str, BaseContract],
    last_raw_price: Optional[float],
)

Bases: DataProviderEventArgs

Event arguments for the NewTradableDate event

Initializes a new instance of the NewTradableDateEventArgs class

Parameters:

Name Type Description Default
date Union[datetime, date]

The new tradable date

required
last_base_data BaseData

The last BaseData of the Security for which we are enumerating

required
symbol Union[Symbol, str, BaseContract]

The Symbol of the new tradable date

required
last_raw_price Optional[float]

The last raw security price we have

required

date

date: datetime

The new tradable date

last_base_data

last_base_data: BaseData

The last BaseData of the Security for which we are enumerating

last_raw_price

last_raw_price: Optional[float]

The last raw security price we have

symbol

symbol: Symbol

Gets the symbol being processed that generated the event