Interface TradeConfirmation

interface TradeConfirmation {
    accountIdentifier: string;
    affectedDeals: AffectedDeal[];
    dealId: string;
    dealReference: string;
    dealStatus: DealStatus;
    direction: Direction;
    epic: string;
    expiry: string;
    guaranteedStop: boolean;
    level: number;
    limitLevel: number;
    resultantStatus: Status;
    size: number;
    status: Status;
    stopLevel: number;
}

Properties

accountIdentifier: string
affectedDeals: AffectedDeal[]
dealId: string
dealReference: string
dealStatus: DealStatus
direction: Direction
epic: string
expiry: string
guaranteedStop: boolean
level: number
limitLevel: number
resultantStatus: Status
size: number
status: Status
stopLevel: number