一键导入
analyzetraderesult
Analyze the results of executed trades to evaluate performance and extract lessons.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analyze the results of executed trades to evaluate performance and extract lessons.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | analyzeTradeResult |
| description | Analyze the results of executed trades to evaluate performance and extract lessons. |
分析已完成交易的结果并评估其成功情况。
interface AnalyzeTradeResultInput {
tradeId: string; // 要分析的交易 ID
currentPrice?: number; // 当前价格(用于未平仓)
marketContext?: MarketAnalysis; // 交易时的市场上下文
userPreference?: UserPreference; // 用于评估的用户偏好
}
interface AnalyzeTradeResultOutput {
id: string;
tradeId: string;
timestamp: Date;
evaluation: {
success: boolean;
score: number; // 总体得分(0-1)
grade: 'A' | 'B' | 'C' | 'D' | 'F';
};
analysis: {
decisionQuality: {
score: number;
reasoning: string;
};
executionQuality: {
score: number;
reasoning: string;
};
timing: {
score: number;
reasoning: string;
};
};
lessons: {
whatWentWell: string[];
whatWentWrong: string[];
improvements: string[];
};
memoryUpdates: {
principles: string[];
patterns: string[];
lessons: string[];
};
followUp: {
needsReview: boolean;
reviewDate?: Date;
actions: string[];
};
}
INVALID_TRADE_ID: 交易 ID 无效TRADE_NOT_COMPLETED: 交易尚未完成ANALYSIS_ERROR: 交易结果分析失败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.
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.
Execute a trading plan with safety checks, confirmation verification, and rollback capabilities.
基于 SOC 职业分类