Market history
Query any ticker stored in the Billionr database with bounded date windows and stable structured responses.
Billionr terminal access
Authenticated CLI access to historical ticker data, proprietary calls and puts signals, squeeze setups, and the Billionr RoRo gauge. Recommendations are informed by the learnings and trading philosophy of Simon Ree's The Tao of Trading.
$ npm install -g billionr
$ billionr config set api-url https://www.billionr.ai
$ billionr signup # confirm email from your inbox
$ billionr login
$ billionr calls --symbol NVDA --latest
{
"request_id": "7fb55f43-f5d7-41df-8c61-8a4c2d5f06d1",
"as_of": "2026-05-10T22:00:00.000Z",
"data": {
"symbol": "NVDA",
"model": "calls",
"signals": [
{
"price_date": "2026-05-08",
"decision": "Buy Stock NVDA",
"close": 921.34,
"roro_v1": 6.8,
"roro_v2": 3.2
}
]
},
"warnings": []
}Query any ticker stored in the Billionr database with bounded date windows and stable structured responses.
Access calls, puts, and squeeze recommendations after the model runs persist their structured outputs. The system is built around disciplined risk, trend awareness, and selective setups rather than constant trading.
Pull the latest mid-term Risk-on/Risk-off v1 and v2 snapshots or historical gauge values directly from the terminal. The cleanest read is when both gauges move in the same direction.
Free access is authenticated with Supabase email/password sessions. Signup sends a confirmation email; login only succeeds after the link is clicked. JSON is the canonical output format for AI agents, with table output available for human terminal use.
billionr config set api-url https://www.billionr.ai billionr signup # confirm email link billionr login billionr whoami billionr ticker AAPL billionr history AAPL --days 90 billionr calls --latest billionr calls --symbol NVDA billionr puts --symbol TSLA billionr squeeze --latest billionr roro --latest
Agent guide
Copy this Markdown into an AI agent so it understands how to use the `billionr` CLI, interpret RoRo v1/v2, and summarize model outputs without exposing proprietary algorithm details.
# Billionr CLI Agent Guide Use the Billionr CLI as an authenticated research interface for ticker history, proprietary options-trading signals, squeeze setups, and the Billionr RoRo gauge. ## Important Boundaries - Nothing from Billionr is financial advice. - Treat all output as research input, not as an instruction to buy, sell, or hold. - Do not claim certainty. Use probabilities, scenarios, and risk language. - Do not reverse-engineer or infer the proprietary model internals. - Do not expose or request Supabase tokens, database credentials, or Slack webhook URLs. ## Install ```bash npm install -g billionr billionr config set api-url https://www.billionr.ai ``` Always use `https://www.billionr.ai` (the apex `billionr.ai` 301-redirects). ## Authentication Signup requires email confirmation. The full first-time flow is: ```bash billionr signup # creates account, sends confirmation email # open the confirmation link from your inbox billionr login # only succeeds after the email is confirmed billionr whoami ``` If you try to login before confirming, the API will return `Email not confirmed`. Re-trigger the email by running `billionr signup` again with the same address, or use the Supabase resend flow. Useful session commands: ```bash billionr logout billionr config get ``` ## Core Commands Ticker discovery: ```bash billionr tickers --search NV --limit 20 billionr ticker AAPL ``` Historical candles: ```bash billionr history AAPL --days 90 billionr history NVDA --days 180 --limit 120 ``` Proprietary model signals: ```bash billionr calls --latest billionr calls --symbol NVDA --latest billionr puts --latest billionr puts --symbol TSLA --latest billionr squeeze --latest billionr squeeze --symbol AAPL --latest ``` RoRo: ```bash billionr roro --latest billionr roro --limit 30 ``` Output modes: ```bash billionr calls --symbol NVDA --latest billionr calls --symbol NVDA --latest --table ``` JSON is the canonical format. Prefer JSON for agent workflows and use table output only for quick human inspection. ## What RoRo Means RoRo means Risk-on/Risk-off. Billionr exposes two mid-term RoRo gauges: v1 and v2. - v1 is the faster mid-term read. - v2 is the smoother mid-term confirmation read. - The cleanest regime signal is when v1 and v2 move in the same direction. - When both rise together, risk appetite is generally improving. - When both fall together, risk appetite is generally deteriorating. - When they diverge, describe the regime as mixed or transitional. Use RoRo as market-context framing before interpreting calls, puts, or squeeze signals. Do not treat RoRo alone as a trade. ## How To Approach Predictions Billionr predictions are proprietary model outputs informed by historical ticker behavior, trend context, risk regime, volatility context, and disciplined trading principles inspired by Simon Ree's The Tao of Trading. Use the predictions this way: 1. Check RoRo first to understand the market regime. 2. Pull the relevant model signals: calls, puts, or squeeze. 3. Pull ticker details and recent history for any symbol under consideration. 4. Compare the signal with recent price action, liquidity, and broader market conditions. 5. Present a research-ranked watchlist, not a guaranteed trade instruction. Calls generally represent upside-oriented opportunities. Puts generally represent downside-oriented opportunities. Squeeze signals generally represent compression setups that may precede expansion, but direction and timing still require context. ## Recommended Agent Response Style When summarizing an opportunity, include: - Symbol - Signal type: calls, puts, or squeeze - Signal date - Latest available price context - RoRo v1 and v2 context - Whether RoRo gauges agree or diverge - Main bullish and bearish considerations - Risk notes - A clear statement that this is not financial advice Avoid exposing algorithm details, exact formulas, feature weights, thresholds beyond what the CLI returns, or implementation assumptions not present in the output.