Interface WorkingOrderUpdate

interface WorkingOrderUpdate {
    channel: string;
    currency: string;
    dealId: string;
    dealReference: string;
    dealStatus: DealStatus;
    direction: Direction;
    epic: string;
    expiry: string;
    goodTillDate?: Date;
    guaranteedStop: boolean;
    level: number;
    limitDistance: number;
    orderType: OrderType;
    size: number;
    status: Status;
    stopDistance: number;
    timeInForce: OrderTimeInForce;
    timestamp: Date;
}

Properties

channel: string
currency: string
dealId: string
dealReference: string
dealStatus: DealStatus
direction: Direction
epic: string
expiry: string
goodTillDate?: Date
guaranteedStop: boolean
level: number
limitDistance: number
orderType: OrderType
size: number
status: Status
stopDistance: number
timeInForce: OrderTimeInForce
timestamp: Date