create_trading_plan
Create rule-based trading plans that automatically execute when specific market conditions occur, storing them for future activation within the TradeMemory Protocol system.
Instructions
Create a prospective trading plan that activates when conditions are met.
Stores a rule-based plan in prospective memory. The plan stays active until triggered, expired, or manually cancelled.
Args: trigger_type: Type of trigger (e.g. "market_condition", "drawdown", "time_based") trigger_condition: JSON string describing when to trigger (e.g. '{"regime": "ranging"}') planned_action: JSON string describing what to do (e.g. '{"type": "skip_trade"}') reasoning: Why this plan was created expiry_days: Days until plan expires (default 30) priority: Priority 0-1, higher = checked first (default 0.5)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| trigger_type | Yes | ||
| trigger_condition | Yes | ||
| planned_action | Yes | ||
| reasoning | Yes | ||
| expiry_days | No | ||
| priority | No |