openclaw-aisa-us-stock-analyst
Professional US stock analysis with financial data, news, social sentiment, and multi-model AI. Comprehensive reports at $0.02-0.10 per analysis.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install openclaw-aisa-us-stock-analyst或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install openclaw-aisa-us-stock-analyst⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/openclaw-aisa-us-stock-analyst/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: us-stock-analyst description: "Professional US stock analysis with financial data, news, social sentiment, and multi-model AI. Comprehensive reports at $0.02-0.10 per analysis." homepage: https://openclaw.ai metadata: {"openclaw":{"emoji":"📈","requires":{"bins":["curl","python3"],"env":["AISA_API_KEY"]},"primaryEnv":"AISA_API_KEY"}} ---
Professional equity analysis powered by AIsa's unified API platform.
One API key. Complete market intelligence. AI-powered insights.
"Analyze NVDA: financial metrics, analyst estimates, insider trades,
news sentiment, and AI-powered valuation"
"Track my portfolio (AAPL, MSFT, GOOGL): daily updates on metrics,
news, and sentiment changes"
"Full Tesla Q4 earnings analysis: results vs estimates, guidance,
price reaction, analyst updates"
"Compare AMD vs NVDA: financials, growth, valuation, market sentiment"
"Find tech stocks with P/E < 30, revenue growth > 20%,
and positive insider activity"
export AISA_API_KEY="your-key"
---
Real-time Financial Metrics
curl "https://api.aisa.one/apis/v1/financial/financial-metrics/snapshot?ticker=AAPL" \
-H "Authorization: Bearer $AISA_API_KEY"
Returns: Market cap, P/E ratio, revenue, EPS, profit margin, ROE, debt/equity, and more.
Historical Stock Prices
# Daily prices for last 30 days
curl "https://api.aisa.one/apis/v1/financial/prices?ticker=AAPL&start_date=2025-01-01&end_date=2025-01-31&interval=day&interval_multiplier=1" \
-H "Authorization: Bearer $AISA_API_KEY"
# 5-minute intraday data
curl "https://api.aisa.one/apis/v1/financial/prices?ticker=AAPL&start_date=2025-02-07&end_date=2025-02-07&interval=minute&interval_multiplier=5" \
-H "Authorization: Bearer $AISA_API_KEY"
Financial Statements
# All statements (income, balance, cash flow)
curl "https://api.aisa.one/apis/v1/financial/financial_statements/all?ticker=AAPL" \
-H "Authorization: Bearer $AISA_API_KEY"
Analyst Estimates
# EPS forecasts and ratings
curl "https://api.aisa.one/apis/v1/financial/analyst/eps?ticker=AAPL&period=annual" \
-H "Authorization: Bearer $AISA_API_KEY"
Insider Trading
# Track insider buy/sell activity
curl "https://api.aisa.one/apis/v1/financial/insider/trades?ticker=AAPL" \
-H "Authorization: Bearer $AISA_API_KEY"
Institutional Ownership
# See who owns the stock
curl "https://api.aisa.one/apis/v1/financial/institutional/ownership?ticker=AAPL" \
-H "Authorization: Bearer $AISA_API_KEY"
SEC Filings
# Access 10-K, 10-Q, 8-K filings
curl "https://api.aisa.one/apis/v1/financial/sec/filings?ticker=AAPL" \
-H "Authorization: Bearer $AISA_API_KEY"
---
Company News
curl "https://api.aisa.one/apis/v1/financial/news?ticker=AAPL&limit=10" \
-H "Authorization: Bearer $AISA_API_KEY"
Web Search (News & Articles)
curl -X POST "https://api.aisa.one/apis/v1/scholar/search/web?query=AAPL+stock+analysis&max_num_results=10" \
-H "Authorization: Bearer $AISA_API_KEY"
Academic Research
curl -X POST "https://api.aisa.one/apis/v1/scholar/search/scholar?query=semiconductor+industry+analysis&max_num_results=5" \
-H "Authorization: Bearer $AISA_API_KEY"
---
Twitter Search
curl "https://api.aisa.one/apis/v1/twitter/tweet/advanced_search?query=\$AAPL&queryType=Latest" \
-H "Authorization: Bearer $AISA_API_KEY"
---
YouTube Search (Earnings Calls, Analysis)
curl "https://api.aisa.one/apis/v1/youtube/search?engine=youtube&q=AAPL+earnings+call&gl=us&hl=en" \
-H "Authorization: Bearer $AISA_API_KEY"
---
LLM Gateway (OpenAI Compatible)
curl -X POST "https://api.aisa.one/v1/chat/completions" \
-H "Authorization: Bearer $AISA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4",
"messages": [
{
"role": "system",
"content": "You are a professional equity analyst."
},
{
"role": "user",
"content": "Analyze Apple stock investment prospects"
}
],
"temperature": 0.3,
"max_tokens": 2000
}'
Supported Models:
---
# Basic analysis
python3 {baseDir}/scripts/stock_analyst.py analyze --ticker AAPL
# Standard analysis with multiple models
python3 {baseDir}/scripts/stock_analyst.py analyze --ticker NVDA --depth standard --models gpt-4 claude-3-opus
# Deep analysis (all data sources)
python3 {baseDir}/scripts/stock_analyst.py analyze --ticker TSLA --depth deep
# Quick screening
python3 {baseDir}/scripts/stock_analyst.py analyze --ticker MSFT --depth quick
# Save report to file
python3 {baseDir}/scripts/stock_analyst.py analyze --ticker GOOGL --output report.json
---
| Mode | Time | Cost | Data Sources | |------|------|------|--------------| | quick | ~10s | $0.01-0.02 | Metrics, News, Twitter, Basic AI | | standard | ~20s | $0.02-0.05 | + Analyst Estimates, Insider Trades, YouTube | | deep | ~30s | $0.05-0.10 | + Statements, Institutional, SEC, Research |
---
| Category | Endpoint | Method | Cost | |----------|----------|--------|------| | Financial Metrics | /financial/financial-metrics/snapshot | GET | $0.002 | | Stock Prices | /financial/prices | GET | $0.001 | | News | /financial/news | GET | $0.001 | | Statements | /financial/financial_statements/* | GET | $0.002 | | Analyst Estimates | /financial/analyst/eps | GET | $0.002 | | Insider Trades | /financial/insider/trades | GET | $0.001 | | Institutional | /financial/institutional/ownership | GET | $0.001 | | SEC Filings | /financial/sec/filings | GET | $0.001 | | Web Search | /scholar/search/web | POST | $0.001 | | Scholar Search | /scholar/search/scholar | POST | $0.002 | | Twitter | /twitter/tweet/advanced_search | GET | $0.0004 | | YouTube | /youtube/search | GET | $0.002 | | LLM | /v1/chat/completions | POST | Token-based |
Every response includes usage.cost and usage.credits_remaining.
---
{
"ticker": "NVDA",
"analysis_date": "2025-02-07T10:30:00Z",
"investment_summary": "NVIDIA maintains dominant position in AI chip market with strong data center revenue growth. Recent Blackwell launch positions company for continued expansion...",
"key_metrics": {
"market_cap": 1780500000000,
"pe_ratio": 68.5,
"revenue": 60922000000,
"revenue_growth": 1.26,
"profit_margin": 0.489,
"roe": 1.152
},
"sentiment_analysis": {
"sentiment": "bullish",
"confidence": "high",
"key_themes": ["AI dominance", "Data center growth", "Blackwell launch"],
"summary": "Overwhelmingly positive sentiment following Q4 earnings beat"
},
"valuation": {
"assessment": "fairly_valued",
"price_target_12m": 850.00,
"reasoning": "Premium valuation justified by AI market leadership and strong growth trajectory"
},
"data_sources": {
"Financial Metrics": "Available",
"Stock News": 10,
"Analyst Estimates": "Available",
"Insider Trades": 15,
"Twitter": "Available",
"YouTube": 5
}
}
---
Analysis Costs:
...
安装 US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports 后,可以对 AI 说这些话来触发它
Help me get started with US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports
Explains what US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports does, walks through the setup, and runs a quick demo based on your current project
Use US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports to professional US stock analysis with financial data, news, social se...
Invokes US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports with the right parameters and returns the result directly in the conversation
What can I do with US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports in my data & analytics workflow?
将技能文件夹放到 ~/.claude/skills/openclaw-aisa-us-stock-analyst/ 目录(个人级,所有项目可用),或 .claude/skills/openclaw-aisa-us-stock-analyst/(项目级)。重启 AI 客户端后,用 /openclaw-aisa-us-stock-analyst 主动调用,或让 AI 根据上下文自动发现并使用。
US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports 可免费安装使用。请查阅仓库了解许可证信息。
Lists the top use cases for US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports, with example commands for each scenario
Automate my data & analytics tasks using US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports
Identifies repetitive steps in your workflow and sets up US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports to handle them automatically
Professional US stock analysis with financial data, news, social sentiment, and multi-model AI. Comprehensive reports at $0.02-0.10 per analysis.
US Stock Analyst by leading AI LLM models with Bloomberg Data, Twitter Sentiment and Wall Street Equity Research Reports 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。