fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 641 B
TypeScript
/**
* Indicates whether the resulting position after a trade should be an opening position or closing position. Used for omnibus accounting - where accounts are held on a gross basis instead of being netted together.
* - Tag: 1047
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const AllocPositionEffect: Readonly<{
/** Open */
readonly Open: "O";
/** Close */
readonly Close: "C";
/** Rolled */
readonly Rolled: "R";
/** FIFO */
readonly FIFO: "F";
}>;
export type AllocPositionEffect = (typeof AllocPositionEffect)[keyof typeof AllocPositionEffect];