← 返回
数据分析 中文

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 Buy" investment decision Q&A.
美国股票AI交易助手 | Intellectia AI股票预测 — 智能分析买卖点、目标价、概率与技术评级,支持‘该不该买’投资决策问答。
xanxustan
数据分析 clawhub v1.0.2 1 版本 100000 Key: 无需
★ 4
Stars
📥 3,398
下载
💾 541
安装
1
版本
#latest

概述

Intellectia Stock Forecast

Single-symbol forecast (yearly predictions) and "Should I Buy?" analysis from the Intellectia API.

Base URL: https://api.intellectia.ai

Overview

This skill covers two endpoints:

  • Forecast (predictions): GET /gateway/v1/stock/screener-public
  • Why / Should I buy (analysis): POST /gateway/v1/finance/should-i-buy

When to use this skill

Use this skill when you want to:

  • Get one stock/crypto quote + yearly predictions (2026–2035)
  • Answer why / should I buy for a specific ticker with a structured rationale

How to ask (high hit-rate)

If you want OpenClaw to automatically pick this skill, include:

  • Intellectia
  • The ticker (e.g. TSLA / AAPL / BTC-USD)
  • Either forecast / prediction (for predictions) or why / should I buy (for analysis)

To force the skill: /skill intellectia-stock-forecast

Copy-ready prompts:

  • "Intellectia forecast for TSLA. Show price, probability, profit, and predictions 2026–2035."
  • "Why should I buy TSLA? Use Intellectia Should I Buy."
  • "Should I buy AAPL? Give me conclusion, catalysts, analyst rating, and 52-week range."
  • "Get Intellectia yearly predictions for BTC-USD (asset_type 2)."

Endpoints

Use caseMethodPath
---------
Forecast (predictions 2026–2035)GET/gateway/v1/stock/screener-public
Why / Should I buy analysisPOST/gateway/v1/finance/should-i-buy

API: Forecast (screener-public)

  • Method: GET /gateway/v1/stock/screener-public
  • Query parameters:
  • ticker (string, required)
  • asset_type (int, required): 0=stock 1=etf 2=crypto
  • Returns: data.list (single object) + data.prediction_2026data.prediction_2035

Example (cURL)

curl -sS "https://api.intellectia.ai/gateway/v1/stock/screener-public?ticker=TSLA&asset_type=0"

Example (Python)

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

API: Why / Should I buy (should-i-buy)

  • Method: POST /gateway/v1/finance/should-i-buy
  • Headers: Content-Type: application/json
  • Body:
{ "asset": { "ticker": "TSLA", "asset_type": 0, "locale": "en" } }
  • Returns: data.action_type, data.conclusion, catalysts, technical analysis, analyst rating, plus price context.

Example (cURL)

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"}}'

Example (Python)

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 configuration

ToolPurpose
------
curlOne-off GET or POST
python3 / requestsScripts; pip install requests

Using this skill in OpenClaw

clawhub install intellectia-stock-forecast

Start a new OpenClaw session, then:

openclaw skills list
openclaw skills info intellectia-stock-forecast
openclaw skills check

Disclaimer and data

  • Disclaimer: The data and analysis from this skill are for informational purposes only and do not constitute financial, investment, or trading advice. Past performance and model predictions are not guarantees of future results. You are solely responsible for your investment decisions; consult a qualified professional before making financial decisions.
  • Data delay: Data provided by the API (prices, predictions, analysis) may be delayed and is not necessarily real-time. Do not rely on it for time-sensitive trading decisions.
  • Real-time data: For real-time or live data, visit Intellectia

Notes

  • screener-public: one symbol per request.
  • should-i-buy: use when the user asks "why" / "should I buy" for a symbol; use conclusion and catalysts in your answer.

版本历史

共 1 个版本

  • v1.0.2 当前
    2026-03-28 12:18 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

data-analysis

Excel / XLSX

ivangdavila
创建、检查和编辑 Microsoft Excel 工作簿及 XLSX 文件,支持可靠的公式、日期、类型、格式、重算及模板保留功能。
★ 367 📥 140,189
security-compliance

stock screener

xanxustan
Intelia股票/加密货币筛选器,提供看涨/看跌的明日/本周/本月预设。调用 /gateway/v1/stock/screener-list(无需认证)并汇总结果。
★ 1 📥 2,230
data-analysis

A股量化 AkShare

mbpz
A股量化数据分析工具,基于AkShare库获取A股行情、财务数据、板块信息等。用于回答关于A股股票查询、行情数据、财务分析、选股等问题。
★ 164 📥 59,823