Workflow

Trading Context Research Workflow

Daily cron per ticker: Scavio news + Reddit sentiment + TradingView chart context + LLM bull/bear summary.

Overview

Per tracked ticker: pull last-7d headlines, top WSB/r/stocks threads, daily chart context, generate bull/bear summary.

Trigger

Daily cron 8am

Schedule

Daily 8am

Workflow Steps

1

Iterate ticker watchlist

From a Postgres table or YAML.

2

Per ticker: Scavio search for last-7d headlines

search_type: news where supported.

3

Scavio reddit_search for ticker mentions

Top threads + comment counts.

4

Scavio dorked search site:sec.gov for filings

Latest 10-Q / 10-K / 8-K.

5

TradingView MCP: pull daily chart + key levels

Via the community MCP.

6

LLM: synthesize bull/bear summary

Strict factual basis from sources only.

7

Send to Slack / email digest

One ticker per card.

Python Implementation

Python
import requests, os
H = {'x-api-key': os.environ['SCAVIO_API_KEY']}

def context(ticker):
    return {
        'news': requests.post('https://api.scavio.dev/api/v1/search',
            headers=H, json={'query': f'{ticker} stock news', 'search_type': 'news'}).json(),
        'reddit': requests.post('https://api.scavio.dev/api/v1/reddit/search',
            headers=H, json={'query': f'{ticker} stock'}).json(),
        'filings': requests.post('https://api.scavio.dev/api/v1/search',
            headers=H, json={'query': f'site:sec.gov {ticker} 10-Q 2026'}).json(),
    }

JavaScript Implementation

JavaScript
// Same flow in TS.

Platforms Used

Google

Web search with knowledge graph, PAA, and AI overviews

Reddit

Community, posts & threaded comments from any subreddit

Frequently Asked Questions

Per tracked ticker: pull last-7d headlines, top WSB/r/stocks threads, daily chart context, generate bull/bear summary.

This workflow uses a daily cron 8am. Daily 8am.

This workflow uses the following Scavio platforms: google, reddit. Each platform is called via the same unified API endpoint.

Yes. Scavio's free tier includes 500 credits per month with no credit card required. That is enough to test and validate this workflow before scaling it.

Trading Context Research Workflow

Daily cron per ticker: Scavio news + Reddit sentiment + TradingView chart context + LLM bull/bear summary.