ワンクリックで
analyzestock
Analyze individual stocks, providing technical, fundamental, and sentiment analysis along with trading recommendations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Analyze individual stocks, providing technical, fundamental, and sentiment analysis along with trading recommendations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Analyze overall market sentiment, sector trends, and identify hot topics and stocks.
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.
Execute a trading plan with safety checks, confirmation verification, and rollback capabilities.
| name | analyzeStock |
| description | Analyze individual stocks, providing technical, fundamental, and sentiment analysis along with trading recommendations. |
分析个股并提供投资建议。
interface AnalyzeStockInput {
ticker: string; // 股票代码
timeframe?: string; // 分析时间周期(默认:"1d")
includeMemory?: boolean; // 使用历史记忆(默认:true)
userPreference?: UserPreference; // 用于定制的用户偏好
}
interface AnalyzeStockOutput {
ticker: string;
id: string;
timestamp: Date;
conclusion: 'buy' | 'sell' | 'hold' | 'watch';
confidence: number;
assessment: {
fundamental: {
score: number;
keyPoints: string[];
};
technical: {
score: number;
keyPoints: string[];
};
sentiment: {
score: number;
keyPoints: string[];
};
};
risk: {
level: 'low' | 'medium' | 'high';
factors: string[];
stopLoss: number;
};
recommendation: {
action: 'buy' | 'sell' | 'hold' | 'watch';
entryPrice: number;
targetPrice: number;
timeHorizon: string;
positionSize: number;
};
rationale: string;
sources: string[];
}
INVALID_TICKER: 股票代码格式无效NO_DATA: 无股票数据可用ANALYSIS_ERROR: 股票分析失败# 1) Collect necessary data for the ticker
node ~/projects/ai/financial-agent/src/stock_rich/dist/index.js collect --ticker ${TICKER} --range 1d
node ~/projects/ai/financial-agent/src/stock_rich/dist/index.js options --ticker ${TICKER} --date 2026-03-20
node ~/projects/ai/financial-agent/src/stock_rich/dist/index.js news --ticker ${TICKER} --days 3
# 2) Aggregation and Scoring (TODO: Integrate actual script)
# node ~/projects/ai/financial-agent/scripts/analyze/stock.js --ticker ${TICKER} --timeframe 1d --out ./output/${TICKER}-analysis.json
conclusion, confidence, and assessment (fundamental/technical/sentiment).risk (level/factors/stopLoss) and recommendation (action/entry/target/positionSize).