Skip to content

FAQ

Is this financial advice?

No. StockClaw produces AI-generated summaries and impact scores based on public news. They are for information only, are not a recommendation to buy or sell any security, and are not a substitute for professional advice. See Terms of Service for the formal disclaimers.

Can other users see my watchlist or signals?

No. Every user-owned table (watchlists, signals, user_settings, rag_query_logs, push_subscriptions) is protected by a PostgreSQL row-level security policy that filters rows by your user id. Your FastAPI session runs as the authenticated role, not as a superuser, so RLS is actively enforced at the database layer.

Which AI model is used?

Right now, the synthesis engine and Claw chat route their LLM calls to anthropic/claude-sonnet-4-6 through OpenRouter. Ticker-to-alias resolution uses Yahoo Finance. Embeddings for retrieval use the open-source sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2.

If OpenRouter's primary model is temporarily unavailable, the system falls back to deepseek/deepseek-chat-v3-0324. Both are disclosed in our Privacy Policy.

Why five agents and not one?

See How it works → Agents. The short version: a single-prompt "is this important" call drifts quickly; splitting concern across five lanes (ticker facts, macro, sector, sentiment, regulation) keeps each output tight, enables Reflexion critique, and gives the UI a meaningful per-agent breakdown to show.

How often does the pipeline run?

Celery Beat schedules a crawl every 20 minutes. Adding a ticker to your watchlist also fires an on-demand crawl so you don't have to wait for the next cycle. Individual users can trigger only their own crawl; global crawls run once globally per cycle and fan out per-user synthesis from the shared raw-item set.

Can I use StockClaw on iOS?

Yes — the dashboard works on iOS Safari out of the box. For notifications you need to Add to Home Screen (turning StockClaw into a PWA); iOS 16.4 and later supports Web Push for installed PWAs. See Browser notifications → iOS PWA install.

Native iOS and Android apps via Capacitor are planned for a later phase.

Can I export my data?

A JSON export endpoint is planned (Settings → Account → Export my data). For now, you can pull /api/v1/signals, /api/v1/watchlists, /api/v1/settings, and /api/v1/claw/rules directly with your session token.

Can I delete my account?

Yes. Until the in-app delete flow ships, email the support address on the Privacy Policy page and we complete deletion within 30 days. All your watchlists, signals, rules, chat history, and push subscriptions are purged; aggregate, non-identifiable metrics may persist.

How much does this cost?

Free during early access. When paid tiers are introduced, pricing is disclosed at the point of purchase and added to the Terms. OpenRouter token cost is ours, not yours.

I'm a developer — can I call the API directly?

The backend exposes an OpenAPI schema at /docs when you run locally. Current endpoints are HTTP+JSON with a Bearer token (Supabase-issued JWT). A formal public API with stable endpoints and rate limits is planned for a later phase; for now it's "works on my machine" stable, not "breakage will be announced" stable.

Something's wrong — who do I contact?