원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| 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.