بنقرة واحدة
extractlessons
Extract principles, patterns, and lessons from trade reviews to update long-term memory.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Extract principles, patterns, and lessons from trade reviews to update 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 | extractLessons |
| description | Extract principles, patterns, and lessons from trade reviews to update long-term memory. |
从交易审查中提取经验教训,并将其格式化用于记忆存储。
interface ExtractLessonsInput {
reviewResult: ReviewResult; // 要提取教训的审查结果
tradeRecord: TradeRecord; // 原始交易记录
marketContext?: MarketAnalysis; // 市场上下文
}
interface ExtractLessonsOutput {
lessons: Array<{
type: 'principle' | 'pattern' | 'lesson';
title: string;
content: string;
confidence: number;
weight: number;
relatedTickers: string[];
tags: string[];
}>;
summary: {
totalLessons: number;
byType: {
principle: number;
pattern: number;
lesson: number;
};
};
}
INVALID_INPUT: 输入参数无效EXTRACTION_ERROR: 提取教训失败