Interface IRiskCheckArgs

Risk check arguments for evaluating whether to allow opening a new position. Called BEFORE signal creation to validate if conditions allow new signals. Contains only passthrough arguments from ClientStrategy context.

interface IRiskCheckArgs {
    currentPrice: number;
    exchangeName: string;
    strategyName: string;
    symbol: string;
    timestamp: number;
}

Hierarchy (View Summary)

Properties

currentPrice: number

Current VWAP price

exchangeName: string

Exchange name

strategyName: string

Strategy name requesting to open a position

symbol: string

Trading pair symbol (e.g., "BTCUSDT")

timestamp: number

Current timestamp