Stock Forecast
US Stock AI Trading Assistant | Intellectia AI Stock Forecast — Smart analysis of stock entry/exit points, target price predictions, probability calculations, and technical ratings. Supports "Should I
US Stock AI Trading Assistant | Intellectia AI Stock Forecast — Smart analysis of stock entry/exit points, target price predictions, probability calculations, and technical ratings. Supports "Should I
Real data. Real impact.
Growing
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Single-symbol forecast (yearly predictions) and "Should I Buy?" analysis from the Intellectia API.
Base URL:
https://api.intellectia.ai
This skill covers two endpoints:
GET /gateway/v1/stock/screener-publicPOST /gateway/v1/finance/should-i-buyUse this skill when you want to:
If you want OpenClaw to automatically pick this skill, include:
To force the skill:
/skill intellectia-stock-forecast <your request>
Copy-ready prompts:
| Use case | Method | Path |
|---|---|---|
| Forecast (predictions 2026–2035) | GET | |
| Why / Should I buy analysis | POST | |
GET /gateway/v1/stock/screener-publicticker (string, required)asset_type (int, required): 0=stock 1=etf 2=cryptodata.list (single object) + data.prediction_2026 … data.prediction_2035curl -sS "https://api.intellectia.ai/gateway/v1/stock/screener-public?ticker=TSLA&asset_type=0"
python3 - <<'PY' import requests r = requests.get("https://api.intellectia.ai/gateway/v1/stock/screener-public", params={"ticker": "TSLA", "asset_type": 0}, timeout=30) r.raise_for_status() data = r.json().get("data") or {} obj = data.get("list") or {} print("symbol:", obj.get("symbol"), "price:", obj.get("price")) for y in range(2026, 2036): k = f"prediction_{y}" if k in data: print(k, data[k]) PY
POST /gateway/v1/finance/should-i-buyContent-Type: application/json{ "asset": { "ticker": "TSLA", "asset_type": 0, "locale": "en" } }
data.action_type, data.conclusion, catalysts, technical analysis, analyst rating, plus price context.curl -sS -X POST "https://api.intellectia.ai/gateway/v1/finance/should-i-buy" \ -H "Content-Type: application/json" \ -d '{"asset":{"ticker":"TSLA","asset_type":0,"locale":"en"}}'
python3 - <<'PY' import requests r = requests.post("https://api.intellectia.ai/gateway/v1/finance/should-i-buy", json={"asset": {"ticker": "TSLA", "asset_type": 0, "locale": "en"}}, timeout=30) r.raise_for_status() d = r.json().get("data") or {} print("conclusion:", d.get("conclusion")) print("action_type:", d.get("action_type")) print("positive_catalysts:", d.get("postive_catalysts")) print("negative_catalysts:", d.get("negative_catalysts")) PY
| Tool | Purpose |
|---|---|
| One-off GET or POST |
/ | Scripts; |
clawhub install intellectia-stock-forecast
Start a new OpenClaw session, then:
openclaw skills list openclaw skills info intellectia-stock-forecast openclaw skills check
No automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.