interface TradingPosition {
    color?: string;
    entryPrice: number;
    id: string;
    pnlPercent?: string;
    pnlText?: string;
    readOnly?: boolean;
    side: PositionSide;
    size: number;
    variant?: TradingLineVariant;
}

Properties

color?: string
entryPrice: number
id: string
pnlPercent?: string
pnlText?: string
readOnly?: boolean
size: number