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 Buy" investment decision Q&A.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install intellectia-stock-forecast-1-0-2或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install intellectia-stock-forecast-1-0-2⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/intellectia-stock-forecast-1-0-2/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: intellectia-stock-forecast description: 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 Buy" investment decision Q&A. metadata: {"openclaw":{"requires":{"bins":["curl","python3"]},"install":[{"id":"python","kind":"pip","package":"requests","bins":[],"label":"Install requests (pip)"}]}} ---
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
Copy-ready prompts:
| Use case | Method | Path | |---|---|---| | Forecast (predictions 2026–2035) | GET | /gateway/v1/stock/screener-public | | Why / Should I buy analysis | POST | /gateway/v1/finance/should-i-buy |
GET /gateway/v1/stock/screener-public - ticker (string, required) - asset_type (int, required): 0=stock 1=etf 2=crypto
data.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 | |---|---| | curl | One-off GET or POST | | python3 / requests | Scripts; pip install requests |
clawhub install intellectia-stock-forecast
Start a new OpenClaw session, then:
openclaw skills list
openclaw skills info intellectia-stock-forecast
openclaw skills check
安装 Intellectia Stock Forecast 1.0.2 后,可以对 AI 说这些话来触发它
Help me get started with Intellectia Stock Forecast 1.0.2
Explains what Intellectia Stock Forecast 1.0.2 does, walks through the setup, and runs a quick demo based on your current project
Use Intellectia Stock Forecast 1.0.2 to uS Stock AI Trading Assistant | Intellectia AI Stock Forecast — Sma...
Invokes Intellectia Stock Forecast 1.0.2 with the right parameters and returns the result directly in the conversation
What can I do with Intellectia Stock Forecast 1.0.2 in my finance & investment workflow?
Lists the top use cases for Intellectia Stock Forecast 1.0.2, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/intellectia-stock-forecast-1-0-2/ 目录(个人级,所有项目可用),或 .claude/skills/intellectia-stock-forecast-1-0-2/(项目级)。重启 AI 客户端后,用 /intellectia-stock-forecast-1-0-2 主动调用,或让 AI 根据上下文自动发现并使用。
Intellectia Stock Forecast 1.0.2 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Intellectia Stock Forecast 1.0.2 可免费安装使用。请查阅仓库了解许可证信息。
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 Buy" investment decision Q&A.
Automate my finance & investment tasks using Intellectia Stock Forecast 1.0.2
Identifies repetitive steps in your workflow and sets up Intellectia Stock Forecast 1.0.2 to handle them automatically
Intellectia Stock Forecast 1.0.2 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。