finance-sentiment

Featured

Fetch structured stock sentiment across Reddit, X.com, news, and Polymarket using the Adanos Finance API. Use this skill whenever the user asks how much people are talking about a stock, how hot a ticker is on social platforms, how many Polymarket bets exist for a company, whether sources are aligned, or to compare stock sentiment across multiple tickers. Triggers include: "social sentiment on TSLA", "how hot is NVDA on X.com", "how many Reddit mentions does AAPL have", "compare sentiment on AMD vs NVDA", "how many Polymarket bets on Microsoft", "is Reddit aligned with X on META", "stock buzz", "bullish percentage", and any mention of cross-source stock sentiment research. This skill is READ-ONLY and does not place trades or modify anything.

Data & Documents 3,309 stars 377 forks Updated 2 weeks ago MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
100
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Finance Sentiment Skill Fetches structured stock sentiment from the Adanos Finance API. This skill is read-only. It is designed for research questions that are easier to answer with normalized sentiment signals than with raw social feeds. Use it when the user wants: - cross-source stock sentiment - Reddit/X.com/news/Polymarket comparisons - buzz, bullish percentage, mentions, trades, or trend - a quick answer to "what is the market talking about?" --- ## Step 1: Ensure the API Key Is Available **Current environment status:** ```bash !`python3 - <<'PY' import os print("ADANOS_API_KEY_SET" if os.getenv("ADANOS_API_KEY") else "ADANOS_API_KEY_MISSING") PY` ``` If `ADANOS_API_KEY_MISSING`, ask the user to set: ```bash export ADANOS_API_KEY="sk_live_..." ``` Use the key via the `X-API-Key` header on all requests. Base docs: ```text https://api.adanos.org/docs ``` --- ## Step 2: Identify What the User Needs Match the request to the lightest endpoint that answers it. | User Request | Endpoint Pattern | Notes | |---|---|---| | "How much are Reddit users talking about TSLA?" | `/reddit/stocks/v1/compare` | Use `mentions`, `buzz_score`, `bullish_pct`, `trend` | | "How hot is NVDA on X.com?" | `/x/stocks/v1/compare` | Use `mentions`, `buzz_score`, `bullish_pct`, `trend` | | "How many Polymarket bets are active on Microsoft?" | `/polymarket/stocks/v1/compare` | Use `trade_count`, `buzz_score`, `bullish_pct`, `trend` | | "Compare sentiment on AMD vs NVDA" | compare endpoi...

Details

Author
himself65
Repository
himself65/finance-skills
Created
6 months ago
Last Updated
2 weeks ago
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category