home / skills / openclaw / skills / apewisdom
This skill scans Reddit for trending tickers and sentiment shifts using ApeWisdom data to identify meme stocks and momentum opportunities.
npx playbooks add skill openclaw/skills --skill apewisdomReview the files below or copy the command above to add this skill to your agents.
---
name: apewisdom
description: Scan Reddit for trending stocks and sentiment spikes using the ApeWisdom API (free). Use this to find "meme stocks", retail momentum, and sentiment shifts on r/wallstreetbets.
---
# ApeWisdom Reddit Scanner
Scan Reddit (r/wallstreetbets, r/stocks, etc.) for trending tickers and sentiment spikes.
## Usage
This skill uses a Python script to fetch live data from ApeWisdom.
### Basic Scan (Top Mentions)
Get the top 20 most discussed stocks right now.
```bash
skills/apewisdom/scripts/scan_reddit.py
```
### Find Spikes (Momentum)
Find stocks with the biggest **24h increase** in mentions (ignoring low volume noise). This is the best way to find "breaking" meme stocks like $SNDK.
```bash
skills/apewisdom/scripts/scan_reddit.py --sort spike
```
### Specific Subreddits
Filter by specific communities.
```bash
# WallStreetBets only
skills/apewisdom/scripts/scan_reddit.py --filter wallstreetbets
# SPACs
skills/apewisdom/scripts/scan_reddit.py --filter SPACs
# Crypto
skills/apewisdom/scripts/scan_reddit.py --filter all-crypto
```
## Output Fields
- `ticker`: Stock symbol
- `mentions`: Mentions in the last 24h
- `mentions_24h_ago`: Mentions in the previous 24h period
- `change_pct`: Percentage increase/decrease in chatter
- `upvotes`: Total upvotes on posts mentioning the ticker
This skill scans Reddit communities for trending stock tickers and sudden sentiment spikes using the ApeWisdom API (free). It surfaces top mentions, momentum spikes, and community-specific chatter to help identify meme stocks and retail-driven moves. The tool is designed for quick discovery of retail momentum on subreddits like r/wallstreetbets.
The script queries ApeWisdom for recent Reddit posts and aggregates ticker mentions, upvotes, and historical counts. It calculates metrics such as total mentions, mentions 24 hours ago, and percentage change to highlight breaking momentum. Filters let you restrict results to specific subreddits or topic groups for targeted scans.
What metrics does the scanner return?
It returns ticker, mentions (last 24h), mentions_24h_ago, change_pct, and upvotes.
How do I find breaking momentum versus noise?
Sort by spikes (24h percentage increase) and ignore entries with low absolute mentions to reduce false positives.