Interface SignalOpenedNotification

Signal opened notification. Emitted when a new trading position is opened.

interface SignalOpenedNotification {
    backtest: boolean;
    exchangeName: string;
    id: string;
    note?: string;
    position: "long" | "short";
    priceOpen: number;
    priceStopLoss: number;
    priceTakeProfit: number;
    signalId: string;
    strategyName: string;
    symbol: string;
    timestamp: number;
    type: "signal.opened";
}

Properties

backtest: boolean
exchangeName: string
id: string
note?: string
position: "long" | "short"
priceOpen: number
priceStopLoss: number
priceTakeProfit: number
signalId: string
strategyName: string
symbol: string
timestamp: number
type: "signal.opened"