← Back to Skills Marketplace
rashed-mamoon

Bangladesh stock market live data and analytics

by Rashed Al Mamoon · GitHub ↗ · v1.0.4 · MIT-0
cross-platform ✓ Security Clean
110
Downloads
1
Stars
0
Active Installs
5
Versions
Install in OpenClaw
/install bd-stock-live
Description
Bangladesh stock market data and analytics for DSE (Dhaka Stock Exchange) - prices, signals, EMA channels, Fibonacci levels
README (SKILL.md)

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 \x3Csymbol>

Get current stock price and details.

python scripts/stock.py price ACI

search \x3Cquery>

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

Get historical price data.

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

Enterprise Commands (৳4,499/month)

signal \x3Csymbol>

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

python scripts/stock.py signal ACI

vegas \x3Csymbol>

Vegas Tunnel multi-dimensional trend analysis.

python scripts/stock.py vegas ACI

ema \x3Csymbol>

Get EMA channel status (Fibonacci-based pairs).

python scripts/stock.py ema ACI

fib \x3Csymbol>

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


License

MIT License

Usage Guidance
This package appears to do what it says: it runs a local Python CLI and sends your STOCKAI_API_KEY to api endpoints on stock-ai.live. Before installing, confirm you trust stock-ai.live and only provide an API key scoped appropriately (don’t reuse a high-privilege or widely-used secret). Review the bundled scripts if you want to verify there are no additional network calls or file reads beyond the skill directory. If you need stronger isolation, run the script manually in a controlled environment rather than granting it autonomous invocation.
Capability Analysis
Type: OpenClaw Skill Name: bd-stock-live Version: 1.0.4 The bd-stock-live skill is a legitimate tool for accessing Bangladesh stock market data via the StockAI Live API. The Python script (scripts/stock.py) uses only standard libraries and includes security features such as domain validation for the API base URL to prevent redirection attacks. The documentation (SKILL.md) and changelog (CHANGELOG.md) reflect a well-maintained project that has proactively removed riskier authentication methods like JWT tokens and raw credentials in favor of API keys.
Capability Assessment
Purpose & Capability
Name/description (DSE data, analytics) match the requested binary (python3), the declared env var (STOCKAI_API_KEY), and the included CLI script which calls stock-ai.live API endpoints. No unrelated credentials or binaries are requested.
Instruction Scope
SKILL.md and scripts/stock.py describe and implement only CLI commands for market data and analytics, require an API key, and document allowed environment/config paths. The script reads a .env file from the skill directory (intended behavior) and only constructs requests to stock-ai.live endpoints.
Install Mechanism
No install spec or remote downloads are present; the skill is instruction-only with a bundled Python script. Nothing is downloaded or executed from unknown URLs during runtime or install.
Credentials
Only STOCKAI_API_KEY is required (primary credential). An optional STOCKAI_API_BASE is supported but validated to allow only stock-ai.live (or its subdomains). No additional secrets, system config paths, or unrelated credentials are requested.
Persistence & Privilege
The skill does not request always:true and has no install actions that modify other skills or system-wide settings. It runs as a normal, user-invocable skill and does not attempt to persist or escalate privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install bd-stock-live
  3. After installation, invoke the skill by name or use /bd-stock-live
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.4
**Change summary:** Initial OpenClaw metadata added and setup documentation streamlined. - Added `_meta.json` for OpenClaw (metadata, env hints, emoji) - Removed `.env` sample/environment file; shifted to documentation - Revised SKILL.md: condensed, included OpenClaw-specific setup, clarified env options - Moved environment variable instructions to top, emphasized recommended methods - Kept feature list and command docs concise without removing core info
v1.0.3
bd-stock-live 1.0.3 Changelog - Added a .env file to the repository for environment configuration. - SKILL.md and setup documentation updated for improved accuracy and clarity: - The API base URL environment variable now requires domains that end with stock-ai.live or .stock-ai.live. - Authentication for the portfolio command now uses the API key instead of JWT token. - Minor wording and formatting improvements across documentation. - No functional or API changes—update focuses on configuration and documentation.
v1.0.2
- Removed the `.env` file from the repository. - No functional or user-facing changes to the skill features or documentation. - This update helps prevent accidental inclusion of sensitive environment variables in version control.
v1.0.1
bd-stock-live v1.0.1 - Added .env file for environment variable configuration. - Added CHANGELOG.md for tracking changes. - Updated SKILL.md with clearer environment setup instructions and API base URL override option. - Usage guidance for both OpenClaw workspace and local development environments improved. - Removed obsolete _meta.json file.
v1.0.0
bd-stock-live 1.0.0 - Initial release providing real-time Dhaka Stock Exchange (DSE) data and trading analytics. - Supports free and paid tiers with features like stock quotes, search, market overview, and news. - Pro/Enterprise plans add top gainers/losers, price history, advanced analytics (signals, EMA, Fibonacci), and sector performance. - Portfolio tracking and WebSocket updates available for Enterprise users. - Comprehensive command-line and API usage instructions included.
Metadata
Slug bd-stock-live
Version 1.0.4
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 5
Frequently Asked Questions

What is Bangladesh stock market live data and analytics?

Bangladesh stock market data and analytics for DSE (Dhaka Stock Exchange) - prices, signals, EMA channels, Fibonacci levels. It is an AI Agent Skill for Claude Code / OpenClaw, with 110 downloads so far.

How do I install Bangladesh stock market live data and analytics?

Run "/install bd-stock-live" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Bangladesh stock market live data and analytics free?

Yes, Bangladesh stock market live data and analytics is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Bangladesh stock market live data and analytics support?

Bangladesh stock market live data and analytics is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Bangladesh stock market live data and analytics?

It is built and maintained by Rashed Al Mamoon (@rashed-mamoon); the current version is v1.0.4.

💬 Comments