← Back to Skills Marketplace
thesentitrader

Us Stocks Analysis

by Senti · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
72
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install us-stocks-analysis
Description
US stocks analysis with AI-synthesized insights. Combines price, sentiment, insider trades, congressional STOCK Act disclosures, institutional flows, analyst...
README (SKILL.md)

US Stocks Analysis - SentiSense

Capability skill for US equities. Don't just pull data: synthesize it. This skill teaches the agent five expert workflows that combine price action, sentiment, insider trading, congressional STOCK Act disclosures, institutional 13F flows, analyst ratings, and AI insights into one-line answers a non-technical user can act on. Read-only API. No trading, no purchases, no write operations, no wallet access.

Base URL: https://app.sentisense.ai Website: https://sentisense.ai Full API reference: https://sentisense.ai/skill.md Authentication: API key via X-SentiSense-API-Key header. Generate keys at Settings > Developer Console.


Use & Disclaimer

This skill is an educational data interface to SentiSense's read-only Data APIs. Output is informational only. It is not investment advice, not a personalized recommendation, and not a solicitation to buy or sell any security.

The user is responsible for their own decisions. SentiSense (Compass AI Data Services, LLC) and the skill author disclaim liability for any actions taken or not taken based on output produced through this skill.

The capability workflows below produce data-grounded synthesis. When framing the result for the user, present it as educational context and analysis (signal convergence, sentiment shifts, position changes), never as a personal buy/sell recommendation.

Use of the SentiSense API is subject to the API Terms of Service and Terms of Service.


Authentication

curl -H "X-SentiSense-API-Key: $SENTISENSE_API_KEY" \
  "https://app.sentisense.ai/api/v1/stocks/price?ticker=AAPL"

All endpoints require an API key. Free tier (1,000 req/month, 15 req/min) covers everyday use. PRO ($15/mo) lifts limits and unlocks full preview-gated history.

Tier Quota Rate
Free 1,000 req/month 15 req/min
PRO 100,000 req/month 120 req/min

Anonymous calls return 401 api_key_required.


Capability Menu

Each capability is a natural-language command the user can give the agent. The agent's job is to recognize the intent, run the API calls in order, and synthesize the result. Specific endpoint reference at the bottom of this file.


Capability 1: "Brief me on $TICKER"

A 5-line composite read on a stock that goes far beyond the quote.

Synthesis pattern:

  1. GET /api/v1/stocks/price?ticker={T} to anchor with current price + day change
  2. GET /api/v2/metrics/entity/{T}/metric/sentiment?period=7d for the 7-day sentiment trend
  3. GET /api/v1/insider/trades/{T}?lookbackDays=90 for recent insider activity
  4. GET /api/v1/analyst/{T}/consensus for the analyst price target band
  5. GET /api/v1/insights/stock/{T}/latest for the most recent AI insight

Synthesize as: "AAPL $190.20 (+1.2%). Sentiment up 8% over 7d. 3 insider buys in 90d, no sells. Analyst target band $180-$250 (mean $210, 33 analysts, Buy). Latest insight: 'Margin guide raised, services revenue beating consensus.'"

The user gets a Bloomberg-style read in five lines.


Capability 2: "What's the smart money doing this week?"

Cross-reference insider cluster buys + congressional STOCK Act trades + analyst upgrades. Surface tickers where all three converge.

Synthesis pattern:

  1. GET /api/v1/insider/cluster-buys?lookbackDays=7 for tickers where multiple insiders bought
  2. GET /api/v1/politicians/activity?lookbackDays=7 for recent congressional purchases (filter to PURCHASE)
  3. GET /api/v1/analyst/market/activity?days=7&types=UPGRADE for analyst upgrades

Synthesize as: intersect the three ticker lists. Report tickers in 2+ of the three buckets, with a one-liner on each: "NVDA: 4 insiders bought ($2.1M), 1 senator purchased $50k-$100k, 2 analyst upgrades."

This is a screen no free data source produces: convergence is the signal.


Capability 3: "Find divergence stocks"

Stocks where price action and sentiment disagree. A bullish gap (price down, sentiment up) often precedes a recovery; a bearish gap (price up, sentiment down) often precedes a fall.

Synthesis pattern:

  1. GET /api/v1/stocks/popular to get the candidate list
  2. For each: GET /api/v1/stocks/chart?ticker={T}&timeframe=1M (compute 7-day price change)
  3. For each: GET /api/v2/metrics/entity/{T}/metric/sentiment?period=7d (compute 7-day sentiment change)
  4. Rank by |priceChange - sentimentChange|; report top 5 each direction

Synthesize as: "Bullish divergence (price down, sentiment up): TSLA -8% / sentiment +12%. Bearish divergence (price up, sentiment down): COIN +14% / sentiment -9%."


Capability 4: "Pre-earnings sentiment check on $TICKER"

Before an earnings report, agents and users want to know: is the smart-money / sentiment positioning bullish or bearish?

Synthesis pattern:

  1. GET /api/v1/stocks/{T}/profile to confirm the ticker exists and get next earnings date
  2. GET /api/v2/metrics/entity/{T}/metric/sentiment?period=30d for the 30-day trend
  3. GET /api/v1/insider/trades/{T}?lookbackDays=60 for 60-day insider activity
  4. GET /api/v1/analyst/{T}/estimates for consensus EPS/revenue estimate trend
  5. GET /api/v1/analyst/{T}/actions?days=30 for recent analyst rating changes

Synthesize as: "AAPL ER in 5d. Sentiment trending +14% over 30d (bullish). Insiders: 2 sells, 0 buys ($1.2M, neutral-to-bearish). EPS consensus $1.52 (revised up from $1.48). 3 upgrades in 30d. Setup: mixed-bullish."


Capability 5: "Sector rotation today"

Which sectors are in greed, which in fear, and what stocks are driving each.

Synthesis pattern:

  1. GET /api/v2/market-mood for composite market mood + sector breakdowns
  2. For each sector with weeklyChange > +5 or \x3C -5: GET /api/v1/insights/market and filter insights by that sector
  3. Report top 2 movers (positive) and bottom 2 (negative)

Synthesize as: "Market mood 62 (Greed, +4 wk). Greed leaders: Technology 71 (+3.2), Communications 68. Fear: Energy 31 (-6), Utilities 36. Top driver: NVDA insight 'Data-center revenue accelerating.' Top drag: XOM 'Crude inventory builds.'"


Endpoint Reference (compact)

For the full schema, see https://sentisense.ai/skill.md.

Price & profile (Public)

  • GET /api/v1/stocks/price?ticker={T}: current price, day change
  • GET /api/v1/stocks/prices?tickers=A,B,C: batch
  • GET /api/v1/stocks/chart?ticker={T}&timeframe=1M|3M|6M|1Y: OHLCV
  • GET /api/v1/stocks/{T}/profile: sector, industry, CEO

Sentiment (Public, requires API key)

  • GET /api/v2/metrics/entity/{T}/metric/sentiment?period=7d|30d|90d: time series
  • GET /api/v2/market-mood: composite fear/greed (0-100), 5 sub-signals, sector breakdowns

Insider (Public, preview)

  • GET /api/v1/insider/cluster-buys?lookbackDays=N: tickers with multiple insider buys
  • GET /api/v1/insider/trades/{T}?lookbackDays=N: Form 4 filings for a ticker

Congressional STOCK Act (Public, preview)

  • GET /api/v1/politicians/activity?lookbackDays=N: recent trades across all members
  • GET /api/v1/politicians/member/{slug}/trades: trades by a specific member

Institutional 13F (Public, preview)

  • GET /api/v1/institutional/quarters: call this FIRST to get valid reportDate values
  • GET /api/v1/institutional/top-holdings/{T}?reportDate={Q}: top holders

Analyst ratings (Public, preview)

  • GET /api/v1/analyst/{T}/consensus: price target band, distribution
  • GET /api/v1/analyst/{T}/actions?days=N: recent rating changes
  • GET /api/v1/analyst/{T}/estimates: EPS / revenue estimates
  • GET /api/v1/analyst/market/activity?days=N&types=UPGRADE,DOWNGRADE: market-wide actions

AI insights (Quota-gated)

  • GET /api/v1/insights/stock/{T}/latest: newest AI signal for a ticker
  • GET /api/v1/insights/stock/{T}/types: list available insight types (no quota cost)
  • GET /api/v1/insights/market: top market-wide signals

Agent Tips

  • Always wrap data calls. Most preview-gated endpoints return { isPreview, previewReason, data }. Iterate data, not the wrapper.
  • Always fetch quarters first before /institutional/* calls. Never hardcode reportDate.
  • Free tier is real. A user without PRO still gets back data (just truncated). Synthesize from what you get; don't refuse the workflow.
  • Don't hallucinate endpoints. No options flow, no dark pool, no /congress (it's /politicians).
  • Be brief. Users asked for synthesis, not a data dump. Five lines beats fifty.

Tier Summary

Capability Free PRO
Brief me on $TICKER Full read, AI insight quota-counted Unlimited insights
Smart money this week Top items shown Full lists
Divergence screen Works against /popular (~50 tickers) Run against full universe
Pre-earnings check Insider preview, action preview Full history
Sector rotation Full sector breakdown free Unlimited refreshes

PRO at $15/month: https://sentisense.ai/pricing

Usage Guidance
This skill looks coherent and read-only. Before installing, make sure you trust SentiSense with API-key-authenticated stock queries, monitor request volume to avoid quota surprises, and treat generated stock insights as educational research rather than trading advice.
Capability Analysis
Type: OpenClaw Skill Name: us-stocks-analysis Version: 1.0.1 The skill bundle provides a well-structured set of instructions for an AI agent to perform US stock analysis using the SentiSense API (sentisense.ai). It defines specific workflows for synthesizing financial data, such as price action, sentiment, and insider trading, while explicitly stating it is read-only and lacks trading capabilities. No evidence of data exfiltration, malicious execution, or harmful prompt injection was found in SKILL.md or _meta.json.
Capability Tags
cryptorequires-walletcan-make-purchasesrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The stated purpose is coherent: it provides read-only US equities analysis using SentiSense APIs and explicitly says there is no trading, purchasing, write operation, or wallet access. Because the outputs concern financial decisions, users should treat them as informational.
Instruction Scope
The workflows instruct the agent to make several API calls, including fan-out screens over multiple tickers. This is purpose-aligned and read-only, but it can consume API quota and should remain user-directed.
Install Mechanism
No install spec, binaries, or code files are present; this is an instruction-only skill. The static scanner had nothing executable to analyze and reported no findings.
Credentials
The required SENTISENSE_API_KEY is proportionate for accessing the external SentiSense API. The visible SKILL.md repeatedly says no wallet access or purchases, despite automated capability signals mentioning wallet/purchase-related terms.
Persistence & Privilege
The provided artifacts show no persistence, background workers, local file indexing, credential storage, or privilege escalation.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install us-stocks-analysis
  3. After installation, invoke the skill by name or use /us-stocks-analysis
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
Add Use & Disclaimer section (educational data interface, not investment advice; user responsible for own decisions; subject to SentiSense API ToS).
v1.0.0
Initial release: 5 capability workflows for US equity research (brief, smart-money week, divergence, pre-earnings, sector rotation)
Metadata
Slug us-stocks-analysis
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Us Stocks Analysis?

US stocks analysis with AI-synthesized insights. Combines price, sentiment, insider trades, congressional STOCK Act disclosures, institutional flows, analyst... It is an AI Agent Skill for Claude Code / OpenClaw, with 72 downloads so far.

How do I install Us Stocks Analysis?

Run "/install us-stocks-analysis" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Us Stocks Analysis free?

Yes, Us Stocks Analysis is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Us Stocks Analysis support?

Us Stocks Analysis is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Us Stocks Analysis?

It is built and maintained by Senti (@thesentitrader); the current version is v1.0.1.

💬 Comments