fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 424 B
TypeScript
/**
* Indicates whether the broker is to locate the stock in conjunction with a short sell order.
* - Tag: 114
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const LocateReqd: Readonly<{
/** Indicates the broker is not required to locate */
readonly No: 'N';
/** Indicates the broker is responsible for locating the stock */
readonly Yes: 'Y';
}>;