← 返回
未分类 Key 中文

Intellectia Stock Forecast

US Stock AI Trading Assistant | SkillBoss API Hub Stock Forecast — Smart analysis of stock entry/exit points, target price predictions, probability calculati...
美股 AI 交易助手 | SkillBoss API Hub 股票预测 — 智能分析股票买卖点、目标价预测、概率计算...
marjoriebroad marjoriebroad 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 282
下载
💾 0
安装
1
版本
#latest

概述

Stock Forecast (via SkillBoss API Hub)

Single-symbol forecast (yearly predictions) and "Should I Buy?" analysis via SkillBoss API Hub.

Base URL: https://api.skillboss.com/v1

Overview

This skill covers two use cases:

  • Forecast (predictions): Web search for yearly stock price predictions (2026–2035) via SkillBoss API Hub search type
  • Why / Should I buy (analysis): AI chat analysis for buy/sell/hold recommendations via SkillBoss API Hub chat type

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:

  • 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:

  • "Forecast for TSLA. Show price, probability, profit, and predictions 2026–2035."
  • "Why should I buy TSLA? Give me a buy/sell/hold analysis."
  • "Should I buy AAPL? Give me conclusion, catalysts, analyst rating, and 52-week range."
  • "Get yearly predictions for BTC-USD (crypto)."

Endpoints

Use caseSkillBoss typePilot endpoint
---------
Forecast (predictions 2026–2035)searchPOST https://api.skillboss.com/v1/pilot
Why / Should I buy analysischatPOST https://api.skillboss.com/v1/pilot

API: Forecast (stock predictions search)

  • Method: POST https://api.skillboss.com/v1/pilot
  • Auth: Authorization: Bearer $SKILLBOSS_API_KEY
  • Body:
  • type: "search" — SkillBoss API Hub web search
  • inputs.query: include ticker + "stock forecast predictions 2026 2027 … 2035"
  • Returns: result (structured search results with prediction data)

Example (cURL)

curl -sS -X POST "https://api.skillboss.com/v1/pilot" \
  -H "Authorization: Bearer $SKILLBOSS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"search","inputs":{"query":"TSLA stock price forecast predictions 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035"},"prefer":"balanced"}'

Example (Python)

python3 - <<'PY'
import requests, os
SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
r = requests.post(
    "https://api.skillboss.com/v1/pilot",
    headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
    json={"type": "search", "inputs": {"query": "TSLA stock price forecast predictions 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035"}, "prefer": "balanced"},
    timeout=30)
r.raise_for_status()
results = r.json()["result"]
print(results)
PY

API: Why / Should I buy (AI chat analysis)

  • Method: POST https://api.skillboss.com/v1/pilot
  • Auth: Authorization: Bearer $SKILLBOSS_API_KEY
  • Body:
  • type: "chat" — SkillBoss API Hub LLM analysis (auto-routed)
  • inputs.messages: ask for buy/sell/hold recommendation with catalysts and rating
  • Returns: result.choices[0].message.content

Example (cURL)

curl -sS -X POST "https://api.skillboss.com/v1/pilot" \
  -H "Authorization: Bearer $SKILLBOSS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"chat","inputs":{"messages":[{"role":"user","content":"Should I buy TSLA stock? Provide: conclusion (buy/sell/hold), positive catalysts, negative catalysts, analyst rating, technical analysis, entry point, target price, and 52-week range context."}]},"prefer":"balanced"}'

Example (Python)

python3 - <<'PY'
import requests, os
SKILLBOSS_API_KEY = os.environ["SKILLBOSS_API_KEY"]
r = requests.post(
    "https://api.skillboss.com/v1/pilot",
    headers={"Authorization": f"Bearer {SKILLBOSS_API_KEY}", "Content-Type": "application/json"},
    json={
        "type": "chat",
        "inputs": {"messages": [{"role": "user", "content": "Should I buy TSLA? Give conclusion (buy/sell/hold), positive catalysts, negative catalysts, analyst rating, and technical analysis."}]},
        "prefer": "balanced"
    },
    timeout=30)
r.raise_for_status()
content = r.json()["result"]["choices"][0]["message"]["content"]
print("analysis:", content)
PY

Tool configuration

ToolPurpose
------
curlOne-off POST to SkillBoss API Hub
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 source: Data is retrieved via SkillBoss API Hub web search and AI analysis. Results may vary and are not necessarily real-time. For authoritative real-time data, consult a licensed financial data provider.

Notes

  • Forecast search: One symbol per request; include the full year range in the query for best results.
  • Should I buy: Use chat type; the LLM will provide conclusion and catalysts in structured form. Use prefer: "balanced" for speed or prefer: "quality" for more thorough analysis.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-08 02:29 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

professional

Stock Market Pro

kys42
Yahoo Finance (yfinance) 驱动的股票分析技能:行情报价、基本面、ASCII 趋势图、高分辨率图表(RSI/MACD/BB/VWAP/ATR),以及可选的网络...
★ 166 📥 40,526
ai-agent

Skillboss

marjoriebroad
AI 代理的瑞士军刀,50+ 模型支持图像生成、视频生成、语音合成、语音识别、音乐、聊天、网页搜索、文档解析、邮件...
★ 0 📥 694
professional

All-Market Financial Data Hub

financial-ai-analyst
基于东方财富数据库,支持自然语言查询金融数据,覆盖A股、港股、美股、基金、债券等资产,提供实时行情、公司信息、估值、财务报表等,适用于投资研究、交易复盘、市场监控、行业分析、信用研究、财报审计、资产配置等场景,满足机构与个人需求。返回结果为
★ 134 📥 43,295