Install
openclaw skills install bd-stock-liveBangladesh stock market data and analytics for DSE (Dhaka Stock Exchange) - prices, signals, EMA channels, Fibonacci levels
openclaw skills install bd-stock-liveReal-time Dhaka Stock Exchange (DSE) market data and trading analytics.
sk_live_)Option 1: Environment variable (recommended)
export STOCKAI_API_KEY=sk_live_your_api_key_here
Option 2: OpenClaw config
Set skills."bd-stock-live".env.STOCKAI_API_KEY in ~/.openclaw/openclaw.json
Option 3: Local .env (for development)
Create skill/bd-stock-live/.env:
STOCKAI_API_KEY=sk_live_your_api_key_here
Optional: Override API base URL (must be stock-ai.live domain):
export STOCKAI_API_BASE=https://stock-ai.live
# Get stock price
python scripts/stock.py price ACI
# Search stocks
python scripts/stock.py search "BRAC Bank"
# Market overview
python scripts/stock.py market
# Recent news
python scripts/stock.py news
| Feature | Free | Pro (৳899/mo) | Enterprise (৳4,499/mo) |
|---|---|---|---|
| Stock prices | ✅ 100/day | ✅ 10,000/day | ✅ Unlimited |
| Stock search | ✅ | ✅ | ✅ |
| Market overview | ✅ | ✅ | ✅ |
| Recent news | ✅ | ✅ | ✅ |
| Gainers/Losers | ❌ | ✅ | ✅ |
| Price history | ❌ | ✅ | ✅ |
| Trading signals | ❌ | ❌ | ✅ |
| EMA/Fibonacci | ❌ | ❌ | ✅ |
price <symbol>Get current stock price and details.
python scripts/stock.py price ACI
search <query>Search stocks by name or symbol.
python scripts/stock.py search "BRAC Bank"
marketGet market overview with indices (DSEX, DSES, DS30).
python scripts/stock.py market
newsGet recent market news.
python scripts/stock.py news
gainers [--limit N]Get top gaining stocks.
python scripts/stock.py gainers --limit 5
losers [--limit N]Get top losing stocks.
python scripts/stock.py losers --limit 10
history <symbol> [--days N]Get historical price data.
python scripts/stock.py history ACI --days 30
signal <symbol>Get AI-powered trading signal (BUY/SELL/HOLD).
python scripts/stock.py signal ACI
vegas <symbol>Vegas Tunnel multi-dimensional trend analysis.
python scripts/stock.py vegas ACI
ema <symbol>Get EMA channel status (Fibonacci-based pairs).
python scripts/stock.py ema ACI
fib <symbol>Get Fibonacci retracement levels.
python scripts/stock.py fib ACI
sectorsGet sector performance analysis.
python scripts/stock.py sectors
| Option | Description |
|---|---|
--api-key KEY | API key (or set STOCKAI_API_KEY env) |
--limit N | Limit number of results |
--days N | Days of history (default: 30) |
| Variable | Required | Description |
|---|---|---|
STOCKAI_API_KEY | Yes | API key from stock-ai.live |
STOCKAI_API_BASE | No | Override API base URL (must be stock-ai.live domain) |
MIT License