get_top_trending_tickers
Identify trending stock tickers from ApeWisdom, focusing on popular NASDAQ symbols based on upvotes and mentions. Filter results to target specific communities like WallStreetBets for actionable insights.
Instructions
Fetch top trending stock tickers from ApeWisdom, filtered by valid NASDAQ symbols.
Args:
num_stocks: Number of top stocks to consider based on upvotes and mentions. Defaults to 20.
filter: ApeWisdom filter category (e.g., 'wallstreetbets', 'all'). Defaults to 'wallstreetbets'.
Returns:
A list of valid, trending tickers.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter | No | wallstreetbets | |
num_stocks | No |
Input Schema (JSON Schema)
{
"properties": {
"filter": {
"default": "wallstreetbets",
"title": "Filter",
"type": "string"
},
"num_stocks": {
"default": 20,
"title": "Num Stocks",
"type": "integer"
}
},
"title": "get_top_trending_tickersArguments",
"type": "object"
}