# US Stock Analyst - OpenClaw Skill
Professional equity analysis powered by AIsa's unified API platform.
## Features
- **Complete Financial Data**: Metrics, prices, statements, estimates, insider trades, SEC filings
- **Multi-Source Intelligence**: News, web search, academic research, social media, video content
- **AI-Powered Analysis**: Multi-model synthesis with GPT-4, Claude, Gemini, and more
- **Flexible Depth**: Quick, standard, or deep analysis modes
- **Affordable**: $0.02-0.10 per analysis (vs $2,000/month for Bloomberg)
## Quick Start
```bash
# Set your AIsa API key
export AISA_API_KEY="your-key"
# Run basic analysis
python scripts/stock_analyst.py analyze --ticker AAPL
# Run deep analysis with custom models
python scripts/stock_analyst.py analyze --ticker NVDA --depth deep --models gpt-4 claude-3-opus
```
## Installation
```bash
# Install dependencies
pip install httpx asyncio
# Or use requirements.txt
pip install -r requirements.txt
```
## Analysis Modes
| Mode | Time | Cost | Data Sources |
|------|------|------|--------------|
| **quick** | ~10s | $0.01-0.02 | Financial 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 |
## Examples
### Basic Analysis
```python
from scripts.stock_analyst import AIsaStockAnalyst
import asyncio
async def main():
analyst = AIsaStockAnalyst(api_key="your_key")
report = await analyst.analyze_stock(
ticker="AAPL",
depth="standard"
)
print(report['investment_summary'])
print(f"Sentiment: {report['sentiment_analysis']['sentiment']}")
await analyst.close()
asyncio.run(main())
```
### Portfolio Monitoring
```python
async def monitor_portfolio():
analyst = AIsaStockAnalyst(api_key="your_key")
portfolio = ["AAPL", "MSFT", "GOOGL", "NVDA", "TSLA"]
for ticker in portfolio:
report = await...