원클릭으로
generatereviewreport
Generate a comprehensive review report for a trade, including performance analysis, lessons learned, and recommendations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate a comprehensive review report for a trade, including performance analysis, lessons learned, and recommendations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | generateReviewReport |
| description | Generate a comprehensive review report for a trade, including performance analysis, lessons learned, and recommendations. |
为交易生成综合审查报告。
interface GenerateReviewReportInput {
tradeId: string; // 要生成报告的交易 ID
reviewResult: ReviewResult; // 审查结果
includeCharts?: boolean; // 是否包含图表(默认:false)
format?: 'markdown' | 'html' | 'json'; // 输出格式(默认:'markdown')
}
interface GenerateReviewReportOutput {
reportId: string;
tradeId: string;
format: string;
content: string; // 报告内容
metadata: {
generatedAt: Date;
tradeDate: Date;
tradeDuration: number; // 持续天数
profitLoss: number;
profitLossPercent: number;
grade: string;
};
charts?: Array<{ // 图表(如 includeCharts 为 true)
type: string;
data: any;
caption: string;
}>;
}
INVALID_TRADE_ID: 交易 ID 无效INVALID_FORMAT: 输出格式不支持REPORT_GENERATION_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.
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.