在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
analyzetraderesult
// Analyze the results of executed trades to evaluate performance and extract lessons.
$ git log --oneline --stat
stars:179
forks:11
updated:2026年3月31日 11:34
SKILL.md
// Analyze the results of executed trades to evaluate performance and extract lessons.
| 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.