Interface Position

interface Position {
    contractSize: number;
    controlledRisk: boolean;
    createdDate: Date;
    createdDateUTC: Date;
    currency: string;
    dealId: string;
    dealReference: string;
    direction: Direction;
    level: number;
    limitLevel?: number;
    size: number;
    stopLevel?: number;
    trailingStep?: number;
    trailingStopDistance?: number;
}

Properties

contractSize: number
controlledRisk: boolean
createdDate: Date
createdDateUTC: Date
currency: string
dealId: string
dealReference: string
direction: Direction
level: number
limitLevel?: number
size: number
stopLevel?: number
trailingStep?: number
trailingStopDistance?: number