fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
23 lines (22 loc) • 585 B
TypeScript
/**
* Identifies the type/criteria of Security List Request
* - Tag: 559
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const SecurityListRequestType: Readonly<{
/** Symbol */
readonly Symbol: 0;
/** SecurityType and/or CFICode */
readonly SecurityTypeAnd: 1;
/** Product */
readonly Product: 2;
/** TradingSessionID */
readonly TradingSessionID: 3;
/** All Securities */
readonly AllSecurities: 4;
/** MarketID or MarketID + MarketSegmentID */
readonly MarketIDOrMarketID: 5;
}>;