一键导入
validateriskcontrols
Validate risk control parameters for a proposed trade against user preferences and portfolio constraints.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Validate risk control parameters for a proposed trade against user preferences and portfolio constraints.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | validateRiskControls |
| description | Validate risk control parameters for a proposed trade against user preferences and portfolio constraints. |
根据用户偏好和投资组合约束验证风险控制措施。
interface ValidateRiskControlsInput {
ticker: string;
action: 'buy' | 'sell' | 'day_trade';
proposedQuantity: number;
proposedPrice: number;
userPortfolio: UserPortfolio;
userPreference: UserPreference;
}
interface ValidateRiskControlsOutput {
valid: boolean;
riskControls: {
stopLoss: number;
takeProfit: number;
maxLoss: number;
positionSize: number;
};
warnings: string[];
errors: string[];
}
INVALID_INPUT: 输入参数无效VALIDATION_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.