fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
24 lines (23 loc) • 695 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;
}>;
export type SecurityListRequestType = (typeof SecurityListRequestType)[keyof typeof SecurityListRequestType];