fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 553 B
TypeScript
/**
* Indicates whether the margin described is posted or received.
* - Tag: 2851
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MarginDirection: Readonly<{
/** Posted
The party or account that is the object of the report posted margin. */
readonly Posted: 0;
/** Received
The party or account that is the object of the report received margin. */
readonly Received: 1;
}>;
export type MarginDirection = (typeof MarginDirection)[keyof typeof MarginDirection];