Enum defining the order activation types.
Namespace:
T4Assembly: T4Definitions.20 (in T4Definitions.20.dll)
Syntax
| C# |
|---|
[ObfuscationAttribute(Feature = "renaming", Exclude = true)] public enum ActivationType |
| Visual Basic (Declaration) |
|---|
<ObfuscationAttribute(Feature := "renaming", Exclude := True)> _ Public Enumeration ActivationType |
| Visual C++ |
|---|
[ObfuscationAttribute(Feature = L"renaming", Exclude = true)] public enum class ActivationType |
Members
| Member name | Description | |
|---|---|---|
| Undefined | Undefined value. | |
| Immediate | Activate the order immediately upon receipt at the server. (default) | |
| Hold | Hold the order at the server until triggered. | |
| Triggered | Order was held and is now triggered. | |
| AtOrAfterTime | Activates the order at or as soon after the specified time. | |
| AtOrAboveTradeTicks | Activates the order as soon as a trade occurs at or above the specified ticks. | |
| AtOrBelowTradeTicks | Activates the order as soon as a trade occurs at or below the specified ticks. | |
| OnMarketMode | Activates the order as soon as the market goes into the specified market mode. | |
| TriggeredAtOrAfterTime | Order was held, is now triggered and has activation time to cancel it. | |
| TriggeredAtOrAboveTradeTicks | Order was held, is now triggered and has activation time to cancel it. | |
| TriggeredAtOrBelowTradeTicks | Order was held, is now triggered and has activation time to cancel it. | |
| TriggeredOnMarketMode | Order was held, is now triggered and has activation time to cancel it. | |
| Queue | Order is queued until manually triggered | |
| TriggeredQueue | Order was queued, is now triggered and has activation time to cancel it. | |
| PitFilledQueue |
Order was queued, but has now been partially or completely filled with pit fills and can no longer be executed at the exchange.
|
Remarks
This is used when submitting AutoOCO batches to identify the order that is the
trigger (that is actually sent to the market) and the orders that are held server
side until the trigger order is filled.