@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
20 lines (19 loc) • 405 B
TypeScript
/**
* Indicates the current state of the instrument.
* tag: 965
* @readonly
* @enum {string} (String)
*/
export declare enum SecurityStatus {
Active = "1",
Inactive = "2",
ActiveClosingOrdersOnly = "3",
Expired = "4",
Delisted = "5",
KnockedOut = "6",
KnockOutRevoked = "7",
PendingExpiry = "8",
Suspended = "9",
Published = "10",
PendingDeletion = "11"
}