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.
| 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: 时间周期不支持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.