Proposal
Add an optional Adanos Market Sentiment API tool for equity research workflows.
Why this fits OpenAlice
OpenAlice already exposes AI tools for market search, equity fundamentals, financial ratios, earnings, insider trading, and news. Adanos would add a complementary alternative-data layer for U.S. equities: Reddit discussion, X / FinTwit, financial news, and Polymarket stock-related sentiment.
This should be treated as research context only, not as a trading trigger or order-execution dependency.
Suggested implementation shape
Given the repository policy that external pull requests are not accepted, this is a design suggestion for maintainers to implement internally:
- Add a small optional tool, for example
equityGetMarketSentiment
- Gate it behind
ADANOS_API_KEY; if unset, return a clear disabled result
- Use
ADANOS_API_BASE_URL, defaulting to https://api.adanos.org
- Query only explicit user-provided symbols; do not discover or expand the trading universe
- Return compact per-source fields for
reddit, x, news, and polymarket:
sentiment_score
buzz_score
mentions
bullish_pct
bearish_pct
trend
- Document that the tool is optional commercial API context and should not be the sole reason to trade
Example endpoint
GET https://api.adanos.org/{platform}/stocks/v1/stock/{symbol}
with:
X-API-Key:
Platforms:
Docs: https://api.adanos.org/docs
Security / risk notes
- No dependency is required beyond standard HTTP fetch
- API key should remain server-side / environment-only
- Timeout should be short because this is an agent-facing tool
- The response should be source-attributed and clearly marked as alternative-data context
Proposal
Add an optional Adanos Market Sentiment API tool for equity research workflows.
Why this fits OpenAlice
OpenAlice already exposes AI tools for market search, equity fundamentals, financial ratios, earnings, insider trading, and news. Adanos would add a complementary alternative-data layer for U.S. equities: Reddit discussion, X / FinTwit, financial news, and Polymarket stock-related sentiment.
This should be treated as research context only, not as a trading trigger or order-execution dependency.
Suggested implementation shape
Given the repository policy that external pull requests are not accepted, this is a design suggestion for maintainers to implement internally:
equityGetMarketSentimentADANOS_API_KEY; if unset, return a clear disabled resultADANOS_API_BASE_URL, defaulting tohttps://api.adanos.orgreddit,x,news, andpolymarket:sentiment_scorebuzz_scorementionsbullish_pctbearish_pcttrendExample endpoint
GET https://api.adanos.org/{platform}/stocks/v1/stock/{symbol}with:
X-API-Key:Platforms:
redditxnewspolymarketDocs: https://api.adanos.org/docs
Security / risk notes