← Back to Skills Marketplace
xanxustan

Stock Forecast

by xanxustan · GitHub ↗ · v1.0.2
cross-platform ✓ Security Clean
2598
Downloads
3
Stars
13
Active Installs
3
Versions
Install in OpenClaw
/install 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.
README (SKILL.md)

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 \x3Cyour request>

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

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 - \x3C\x3C'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 - \x3C\x3C'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

Tool Purpose
curl One-off GET or POST
python3 / requests Scripts; 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.
Usage Guidance
This skill appears coherent and only calls Intellectia's public API endpoints using curl or python+requests; it does not ask for credentials. Before installing, consider that queries (tickers and any user text you send) will be transmitted to api.intellectia.ai — if you need to keep queries private or trust only known vendors, avoid installing or verify the provider. Also note the skill's source/homepage is not provided; prefer skills from publishers you trust. The pip step installs the standard 'requests' library (normal for Python clients).
Capability Analysis
Type: OpenClaw Skill Name: intellectia-stock-forecast Version: 1.0.2 The OpenClaw skill bundle 'intellectia-stock-forecast' is classified as benign. The `SKILL.md` file clearly defines the skill's purpose to interact with the Intellectia AI API for stock forecasts and analysis. It requires standard tools like `curl` and `python3` and installs the `requests` Python library, all of which are appropriate for making HTTP requests. All network calls demonstrated in the examples are directed to the specified `https://api.intellectia.ai` domain, with no evidence of data exfiltration to unauthorized endpoints, malicious execution, persistence mechanisms, or obfuscation. The instructions in `SKILL.md` are designed to guide the AI agent in using the skill for its stated purpose, rather than attempting prompt injection for harmful objectives.
Capability Assessment
Purpose & Capability
Name/description describe calling Intellectia forecasting and 'should I buy' endpoints; required binaries (curl, python3) and pip-installed 'requests' are appropriate for that purpose. No unrelated services or credentials are requested.
Instruction Scope
SKILL.md only instructs the agent to call public endpoints on https://api.intellectia.ai using GET/POST (curl or python requests). It does not direct reading system files, other env vars, or transmitting data to unexpected endpoints.
Install Mechanism
Install spec only lists pip install of the well-known 'requests' package. This is a common dependency for the provided Python examples and is proportionate; no downloads from arbitrary URLs or archive extraction are present.
Credentials
No environment variables, credentials, or config paths are required. That aligns with the public API usage described in SKILL.md.
Persistence & Privilege
always is false and the skill does not request permanent/system-wide changes or access to other skills' configuration. Autonomous invocation is allowed (platform default) but not combined with other privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install intellectia-stock-forecast
  3. After installation, invoke the skill by name or use /intellectia-stock-forecast
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.2
- Documentation rewritten and greatly simplified for ease of use. - Clear separation of use cases, endpoints, and example prompts. - Endpoint and response explanations are now more concise and structured. - Skill usage instructions and disclaimers remain unchanged.
v1.0.1
- Updated the skill description to emphasize AI-powered US stock trading assistance, entry/exit analysis, technical ratings, and investment decision Q&A. - Added concise marketing-oriented summary to the start of documentation. - No changes to technical API details or functionality.
v1.0.0
Initial release of Intellectia Stock Forecast skill. - Provides single-symbol yearly stock/crypto forecasts (2026–2035) via the screener-public API. - Supports "Should I Buy?" analysis with actionable conclusions, catalysts, technical analysis, and analyst ratings using the should-i-buy API. - Includes ready-to-use API call examples (cURL, Python). - Clear usage guide for asking predictions and buy-analysis questions. - Disclaimer and real-time data note included for user guidance.
Metadata
Slug intellectia-stock-forecast
Version 1.0.2
License
All-time Installs 13
Active Installs 13
Total Versions 3
Frequently Asked Questions

What is 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. It is an AI Agent Skill for Claude Code / OpenClaw, with 2598 downloads so far.

How do I install Stock Forecast?

Run "/install intellectia-stock-forecast" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Stock Forecast free?

Yes, Stock Forecast is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Stock Forecast support?

Stock Forecast is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Stock Forecast?

It is built and maintained by xanxustan (@xanxustan); the current version is v1.0.2.

💬 Comments