Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
analyzemarket
// Analyze overall market sentiment, sector trends, and identify hot topics and stocks.
$ git log --oneline --stat
stars:179
forks:11
updated:2026年3月31日 11:34
SKILL.md
// 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.
Execute a trading plan with safety checks, confirmation verification, and rollback capabilities.
| name | analyzeMarket |
| description | Analyze overall market sentiment, sector trends, and identify hot topics and stocks. |
分析整体市场情感、板块趋势,并识别热门话题和股票。
interface AnalyzeMarketInput {
tickers?: string[]; // 要分析的特定股票代码(默认:所有观察列表)
timeframe?: string; // 分析时间周期(默认:"1d")
includeNews?: boolean; // 在分析中包含新闻(默认:true)
includeKOL?: boolean; // 在分析中包含 KOL 观点(默认:true)
}
interface AnalyzeMarketOutput {
id: string; // 唯一分析 ID
timestamp: Date; // 分析时间戳
sentiment: {
overall: 'bullish' | 'bearish' | 'neutral';
score: number; // 情感得分(-1 到 1)
factors: {
news: number;
social: number;
technical: number;
};
};
sectors: {
[sectorName: string]: {
trend: 'up' | 'down' | 'sideways';
strength: number;
topStocks: string[];
};
};
hotTopics: string[];
hotStocks: string[];
riskLevel: 'low' | 'medium' | 'high';
riskFactors: string[];
}
NO_DATA: 无市场数据可用ANALYSIS_ERROR: 市场分析失败INVALID_TIMEFRAME: 时间周期不支持