🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Bangladesh stock market live data and analytics

by @rashed-mamoon

Bangladesh stock market data and analytics for DSE (Dhaka Stock Exchange) - prices, signals, EMA channels, Fibonacci levels

Versionv1.0.4
Downloads372
Stars⭐ 1
TERMINAL
clawhub install bd-stock-live

πŸ“– About This Skill


name: bd-stock-live description: Bangladesh stock market data and analytics for DSE (Dhaka Stock Exchange) - prices, signals, EMA channels, Fibonacci levels homepage: https://stock-ai.live metadata: openclaw: emoji: "πŸ“ˆ" requires: bins: ["python3"] env: ["STOCKAI_API_KEY"] primaryEnv: STOCKAI_API_KEY

BD Stock Live β€” Bangladesh Stock Market Data & Analytics

Real-time Dhaka Stock Exchange (DSE) market data and trading analytics.


Setup

Get API Key

1. Visit https://stock-ai.live/register to create a free account 2. Go to https://stock-ai.live/api-keys 3. Click "Create New API Key" 4. Copy your API key (starts with sk_live_)

Configure Environment

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


Quick Start

# 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


Pricing Tiers

| 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 | ❌ | ❌ | βœ… |


Free Tier Commands

price

Get current stock price and details.

python scripts/stock.py price ACI

search

Search stocks by name or symbol.

python scripts/stock.py search "BRAC Bank"

market

Get market overview with indices (DSEX, DSES, DS30).

python scripts/stock.py market

news

Get recent market news.

python scripts/stock.py news


Pro Commands ($9/month)

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 [--days N]

Get historical price data.

python scripts/stock.py history ACI --days 30


Enterprise Commands (ΰ§³4,499/month)

signal

Get AI-powered trading signal (BUY/SELL/HOLD).

python scripts/stock.py signal ACI

vegas

Vegas Tunnel multi-dimensional trend analysis.

python scripts/stock.py vegas ACI

ema

Get EMA channel status (Fibonacci-based pairs).

python scripts/stock.py ema ACI

fib

Get Fibonacci retracement levels.

python scripts/stock.py fib ACI

sectors

Get sector performance analysis.

python scripts/stock.py sectors


Command-Line Options

| 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) |


Free Tier Limits

  • 100 requests/day
  • 10 requests/minute
  • Basic endpoints only: price, search, market, news

  • Environment Variables

    | 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) |


    Support

  • Documentation: https://stock-ai.live/docs
  • API Keys: https://stock-ai.live/api-keys
  • Pricing: https://stock-ai.live/pricing
  • Contact: support@stock-ai.live

  • License

    MIT License

    πŸ’‘ Examples

    # 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


    βš™οΈ Configuration

    Get API Key

    1. Visit https://stock-ai.live/register to create a free account 2. Go to https://stock-ai.live/api-keys 3. Click "Create New API Key" 4. Copy your API key (starts with sk_live_)

    Configure Environment

    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