Interface AgentTradeSuggestion

Market analysis suggestion from an AI agent

interface AgentTradeSuggestion {
    confidence?: number;
    id: string;
    metadata?: Record<string, any>;
    price?: number;
    reasoning?: string;
    side: "buy" | "sell";
    size: number;
    symbol: string;
}

Properties

confidence?: number
id: string
metadata?: Record<string, any>
price?: number
reasoning?: string
side: "buy" | "sell"
size: number
symbol: string