Settings

Configuration status and manual actions.

Integration Status

Claude API (Anthropic)

Telegram Bot

Morning Brief

Runs at 8:00 AM on weekdays. Sends StockTwits trending tickers + sentiment and the latest RSS headlines to Telegram. No AI call — fast and cheap.

Evening Recap

Runs at 9:00 PM on weekdays. Full AI analysis of your portfolio and market with RSS headlines.

VPS Cron Setup

Add both lines to your VPS crontab (crontab -e):

# Morning brief — 8:00 AM weekdays
0 8  * * 1-5  curl -s -X POST https://your-domain.com/api/cron/morning-brief \
              -H "Authorization: Bearer $CRON_SECRET"

# Evening recap — 9:00 PM weekdays
0 21 * * 1-5  curl -s -X POST https://your-domain.com/api/cron/morning-recap \
              -H "Authorization: Bearer $CRON_SECRET"