← Blog
5 min read

Introducing the Polaris CLI — Financial Intelligence From Your Terminal

12 commands. 891 tickers. JSON-first for agents, human-readable when you need it.

Today we're shipping @veroq/cli — a command-line interface that gives AI agents (and humans) instant access to the entire Polaris intelligence layer from the terminal.

bash
npm install -g @veroq/cli
export POLARIS_API_KEY=pr_live_xxx
veroq ask "What's happening with NVDA?"

Why a CLI?

AI agents live in terminals. Claude Code, Codex, coding agents, trading bots — they all run in shell environments. The CLI gives them native access to financial intelligence without SDKs, imports, or HTTP libraries. One command, structured JSON back.

12 Commands

CommandWhat it does
veroq askNatural language — ask anything financial
veroq price NVDALive price
veroq screen "oversold semiconductors"NLP screener — parses natural language into filters
veroq compare AAPL MSFT GOOGLSide-by-side comparison
veroq signal MSFTTrade readiness score (0-100) with factor breakdown
veroq earnings TSLANext earnings date + EPS/revenue estimates
veroq insider NVDASEC Form 4 insider transactions
veroq technicals AMDRSI, MACD, SMA, signal summary
veroq full AAPL9 data sources in one call
veroq marketMarket snapshot with VIX interpretation
veroq news "AI stocks"Search verified intelligence briefs
veroq verify "claim"Fact-check against brief corpus

Agent-First Output

JSON by default — agents parse it directly. Add --human for formatted output when you're the one reading.

bash
# Agent gets structured JSON
veroq signal MSFT

# Human gets formatted output
veroq signal MSFT --human
# → MSFT Trade Signal: LEAN_BUY (56/100)
#   - RSI deeply oversold (23) — bounce potential
#   - Sentiment bearish
#   - Technical signal: buy
#   - Price well below SMA 20

The NLP Screener Is the Standout

Type what you're looking for in plain English. The CLI parses it into structured filters.

bash
veroq screen "low RSI semiconductors" --human
# → Screening: Semiconductors + RSI < 40
# → 8 matches:
#   SNPS    Synopsys          $386   RSI: 33.1  Signal: sell
#   QCOM    Qualcomm          $128   RSI: 34.7  Signal: sell
#   NVDA    Nvidia            $169   RSI: 37.0  Signal: sell
#   ...

Trade Signal — New

Every single-ticker query now returns a composite trade readiness score (0-100) combining RSI, sentiment, technical signals, SMA trend, VIX level, and earnings proximity. One number that tells an agent whether conditions are favorable.

bash
veroq signal MSFT --human
# → LEAN_BUY (56/100)
# → RSI deeply oversold at 23 — bounce potential
# → Sentiment bearish
# → Technical signal: buy
# → Price well below SMA 20

How It Compares

Other CLIs give agents generic web search results. Polaris gives agents 891 tickers, 20 technical indicators, insider trades, earnings estimates, sentiment signals, and a trade readiness score — all structured, all from real data sources, not scraped web pages.

Get Started

bash
npm install -g @veroq/cli

1,000 free credits/month. No credit card. Get your API key or try the /ask demo.