一键导入
createtradingplan
Create a detailed trading plan based on stock analysis, portfolio status, and user preferences.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a detailed trading plan based on stock analysis, portfolio status, and user preferences.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | createTradingPlan |
| description | Create a detailed trading plan based on stock analysis, portfolio status, and user preferences. |
基于股票分析和风险控制创建详细的交易计划。
interface CreateTradingPlanInput {
stockAnalysis: StockAnalysis; // 股票分析结果
userPortfolio: UserPortfolio; // 当前投资组合
userPreference: UserPreference; // 用户偏好
memoryIds?: string[]; // 要引用的相关记忆
}
interface CreateTradingPlanOutput {
id: string;
timestamp: Date;
ticker: string;
action: 'buy' | 'sell' | 'day_trade';
execution: {
orderType: 'market' | 'limit' | 'stop';
price?: number;
quantity: number;
timing: 'immediate' | 'conditional';
condition?: string;
};
riskControls: {
stopLoss: number;
takeProfit: number;
maxLoss: number;
positionSize: number;
};
reasoning: string;
analysisId: string;
memoryIds: string[];
status: 'pending' | 'approved' | 'rejected' | 'executed' | 'user_confirmed';
statusHistory: Array<{
status: string;
timestamp: Date;
reason?: string;
}>;
}
INVALID_ANALYSIS: 股票分析无效INSUFFICIENT_FUNDS: 资金不足,无法交易RISK_LIMIT_EXCEEDED: 交易超出风险限制PRINCIPLE_VIOLATION: 交易违反投资原则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.
Execute a trading plan with safety checks, confirmation verification, and rollback capabilities.