2.5k
GitHub Stars
2
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill openclaw/skills --skill intellectia-stock-screener- _meta.json299 B
- SKILL.md5.1 KB
Overview
This skill fetches stock screener results from the Intellectia public API and produces compact summaries of the returned data. It retrieves screener metadata and paginated lists of instruments, then extracts key fields like price, change ratio, probability, and predicted profit. The skill is designed for quick integration into monitoring tools, dashboards, or automation scripts that need screener snapshots without authentication.
How this skill works
The skill calls GET /gateway/v1/stock/screener-list with optional query parameters (symbol_type, period_type, trend_type, profit_asc, market_cap, price, page, size). It parses the JSON response, validates top-level fields (ret, msg, data) and iterates data.list to collect instrument summaries and screener detail. The output highlights top rows, counts total results, and converts timestamps to human-friendly form if requested.
When to use it
- You want a lightweight, no-auth snapshot of Intellectia screener results for stocks, ETFs, or crypto.
- You need to embed screener data into a dashboard or alerting pipeline periodically.
- You want to compare model probability, predicted profit, and recent price change across a set.
- You need paginated access to large screener results with configurable filters and sorting.
Best practices
- Limit page size and add exponential backoff if you encounter rate limits.
- Filter by symbol_type, market_cap, price and trend_type to reduce payload and focus results.
- Validate ret == 0 and handle empty or partial data.list gracefully.
- Use probability and profit together to prioritize candidates; treat single-day signals as short-term.
Example use cases
- Daily job that fetches bullish screeners (trend_type=0) for small-cap stocks and alerts high-probability picks.
- Dashboard widget showing top 10 screener rows with price, change_ratio, probability, and profit.
- Automated comparator that pulls trend_list series to find similar instruments and cluster signals.
- Research export that pages through results and saves code, name, price series (klines) for backtesting.
FAQ
No. The endpoint is public and does not require API keys.
What do symbol_type and trend_type mean?
symbol_type: 0=stock, 1=ETF, 2=crypto. trend_type: 0=bullish, 1=bearish.