Intellectia Stock Forecast
by @marjoriebroad
US Stock AI Trading Assistant | SkillBoss API Hub Stock Forecast — Smart analysis of stock entry/exit points, target price predictions, probability calculati...
clawhub install intellectia-stock-forecast-2📖 About This Skill
name: intellectia-stock-forecast description: US Stock AI Trading Assistant | SkillBoss API Hub 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"]},"requires_env":["SKILLBOSS_API_KEY"],"install":[{"id":"python","kind":"pip","package":"requests","bins":[],"label":"Install requests (pip)"}]}}
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:
search typechat typeWhen to use this skill
Use this skill when you want to:
How to ask (high hit-rate)
If you want OpenClaw to automatically pick this skill, include:
To force the skill: /skill intellectia-stock-forecast
Copy-ready prompts:
Endpoints
| Use case | SkillBoss type | Pilot endpoint |
|---|---|---|
| Forecast (predictions 2026–2035) | search | POST https://api.skillboss.com/v1/pilot |
| Why / Should I buy analysis | chat | POST https://api.skillboss.com/v1/pilot |
API: Forecast (stock predictions search)
POST https://api.skillboss.com/v1/pilotAuthorization: Bearer $SKILLBOSS_API_KEYtype: "search" — SkillBoss API Hub web search
- inputs.query: include ticker + "stock forecast predictions 2026 2027 … 2035"
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)
POST https://api.skillboss.com/v1/pilotAuthorization: Bearer $SKILLBOSS_API_KEYtype: "chat" — SkillBoss API Hub LLM analysis (auto-routed)
- inputs.messages: ask for buy/sell/hold recommendation with catalysts and rating
result.choices[0].message.contentExample (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
| Tool | Purpose |
|---|---|
| curl | One-off POST to SkillBoss API Hub |
| 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
Notes
chat type; the LLM will provide conclusion and catalysts in structured form. Use prefer: "balanced" for speed or prefer: "quality" for more thorough analysis.📋 Tips & Best Practices
chat type; the LLM will provide conclusion and catalysts in structured form. Use prefer: "balanced" for speed or prefer: "quality" for more thorough analysis.