بنقرة واحدة
validateagainstmemory
Validate a trading plan against investment principles stored in long-term memory.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Validate a trading plan against investment principles stored in long-term memory.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Analyze overall market sentiment, sector trends, and identify hot topics and stocks.
Analyze individual stocks, providing technical, fundamental, and sentiment analysis along with trading recommendations.
Analyze the results of executed trades to evaluate performance and extract lessons.
Verify if a trading plan complies with user-defined risk limits such as position size and stop-loss levels.
Collect market data, technical indicators, news, KOL views, and option data for financial analysis.
Create a detailed trading plan based on stock analysis, portfolio status, and user preferences.
| name | validateAgainstMemory |
| description | Validate a trading plan against investment principles stored in long-term memory. |
根据存储在记忆中的投资原则验证交易。
interface ValidateAgainstMemoryInput {
tradingPlan: TradingPlan; // 要验证的交易计划
memoryIds?: string[]; // 要检查的特定记忆(默认:所有原则)
}
interface ValidateAgainstMemoryOutput {
compliant: boolean;
principles: Array<{
id: string;
title: string;
weight: number;
satisfied: boolean;
reason: string;
}>;
violations: string[];
suggestions: string[];
}
INVALID_PLAN: 交易计划无效MEMORY_ERROR: 访问记忆失败