一键导入
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.