Interface PartialLossNotification

Partial loss notification. Emitted when signal reaches loss level milestone (-10%, -20%, etc).

interface PartialLossNotification {
    backtest: boolean;
    currentPrice: number;
    exchangeName: string;
    id: string;
    level: PartialLevel;
    position: "long" | "short";
    priceOpen: number;
    signalId: string;
    strategyName: string;
    symbol: string;
    timestamp: number;
    type: "partial.loss";
}

Properties

backtest: boolean
currentPrice: number
exchangeName: string
id: string
level: PartialLevel
position: "long" | "short"
priceOpen: number
signalId: string
strategyName: string
symbol: string
timestamp: number
type: "partial.loss"