Bangladesh stock market live data and analytics

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

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 9 · 0 current installs · 0 all-time installs
byRashed Al Mamoon@rashed-mamoon
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.4
Download zip
latestvk9774yc64zaf7befg13wkqa6s583zkhw

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

📈 Clawdis
Binspython3
EnvSTOCKAI_API_KEY
Primary envSTOCKAI_API_KEY

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

FeatureFreePro (৳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 <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"

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

Get historical price data.

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

Enterprise Commands (৳4,499/month)

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

sectors

Get sector performance analysis.

python scripts/stock.py sectors

Command-Line Options

OptionDescription
--api-key KEYAPI key (or set STOCKAI_API_KEY env)
--limit NLimit number of results
--days NDays of history (default: 30)

Free Tier Limits

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

Environment Variables

VariableRequiredDescription
STOCKAI_API_KEYYesAPI key from stock-ai.live
STOCKAI_API_BASENoOverride API base URL (must be stock-ai.live domain)

Support


License

MIT License

Files

4 total
Select a file
Select a file to preview.

Comments

Loading comments…