/** * Skill: manage_orders — Create and manage conditional orders. * * Supports: * - limit_buy / limit_sell: Execute at a specific price * - stop_loss: Sell when price drops below threshold * - take_profit: Sell when price rises above threshold * - dca: Recurring buys at fixed intervals * - trailing_stop: Sell when price drops N% from its peak * - twap: Split a large trade into time-distributed chunks * * Advanced features: * - Order chaining (create follow-up orders on execution) * - Risk management (position sizing, drawdown circuit breaker, rate limits) * - Pause/resume individual orders * - Tag-based grouping and bulk cancel * * Orders persist in the agent's state store. The heartbeat checks pending * orders against current prices and wakes the agent to execute triggers. * * Actions: create, list, cancel, cancel_tag, check, executed, failed, * pause, resume, risk, reset_circuit_breaker, cleanup */ import type { SkillDefinition } from '../types.js'; export declare const manageOrdersSkill: SkillDefinition; //# sourceMappingURL=manage-orders.d.ts.map