fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 495 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";
}>;
export type LocateReqd = (typeof LocateReqd)[keyof typeof LocateReqd];