Trading Assistant API Documentation - v0.1.0
    Preparing search index...

    Interface Signal

    interface Signal {
        symbol: string;
        signal_type: "BUY" | "SELL" | "HOLD";
        strength: number;
        strategy: string;
        price_target?: number;
        stop_loss?: number;
        confidence: number;
        generated_at: string;
    }
    Index

    Properties

    symbol: string
    signal_type: "BUY" | "SELL" | "HOLD"
    strength: number
    strategy: string
    price_target?: number
    stop_loss?: number
    confidence: number
    generated_at: string