Charts + PineNode DSL + dark pool + options flow + sentiment — in one workspace. Every backtest ships to a public /verify URL so proof travels with the idea. From $29.99/mo. All exchanges. No add-ons.
No credit card required · Cancel anytime
Compare vs TradingView Premium ($69.95/mo + $30 per exchange) →
Why Sentimentor
Every other platform gives you the information. None let you validate it — you just take their word for it. Sentimentor gives you the holistic insight and the tools to run its logic against measurable parameters on live data. So you don't have to trust. You get to prove.
The information problem
Every research platform gives you information. None let you test whether it still holds. A chart. A rating. A "strong buy." With no way to reproduce it, no way to walk it forward, no way to know if the same logic works on today's tape.
That's not intelligence. That's an opinion in a nicer wrapper.
How Sentimentor verifies
Every signal on Sentimentor is queryable — the exact feeds, weights, and bar-by-bar computation are open. Every strategy is runnable in PineNode — walk-forward, Monte Carlo, out-of-sample, right in the browser. Every result gets a public /verify link, so the proof travels with the idea.
Queryable
See the raw feeds and weights behind every signal
Runnable
Walk-forward and Monte Carlo test on live bars
Shareable
Public /verify link — no screenshots, no cherry-picks
Past performance is not indicative of future results. Sentimentor provides analytical tools, not financial advice. Always do your own research before trading.
Radical transparency
TradingView's community scripts show you the winning window. We show you every strategy's real return versus simply holding the stock — including the ones that lost. Public, reproducible, benchmarked against buy-and-hold. No cherry-picks, no hidden drawdowns.
See the live strategy ledger →The wedge
Market Agent answer requests with a PineNode strategy you can read, edit, and audit — no black-box recommendations.
Chain screeners, enrichment, sentiment, and strategy emission into a DAG you can schedule or trigger on a signal.
Activate any saved strategy — the server scans it every 15 minutes during market hours and stores the latest signal. Check in when convenient, don’t sit staring at charts.
The data hedge funds price into the tape — surfaced as native signals you can route into any strategy node.
Ask in plain English: a strategy idea, a market scan, or a backtest hypothesis. No prompt engineering required.
Daily premarket scan for semi names crossing RSI 28 with intact 200d trend and positive call flow.
The model emits a PineNode strategy — universe, signals, risk, schedule — auditable line by line, not a black box.
Monte Carlo across 1,000 paths, walk-forward windows, and out-of-sample. Ship to /verify for a public proof link.
By the time you've stitched six tools together, the opportunity has already traded. Sentimentor collapses the loop.
Charts
Stream live market data, annotate it with persistent time-and-price objects, validate the historical evidence behind a level, monitor it as an alert, and convert a trade plan into editable PineNode logic.
Explore the chart drawing guideCandlestick, OHLC, line, area — with end-of-line value labels.
1m · 5m · 15m · 30m · 1h · 2h · 4h · 1d · 1w · 1M.
Price + volume + indicator panes with pan, zoom and replay bar.
Time-and-price anchors persist through pan, zoom, live ticks, compatible interval changes and historical loading.
Magnetic OHLC, indicator, VWAP, pivot, gap and volume-node targets with visible attachment labels.
Describe a channel, support and resistance, or chart pattern; review the rationale before accepting a proposal.
Test touches, breaks, false breakouts, hold rate and subsequent return with a transparent confluence score.
Turn chart structures into monitored cross conditions that continue evaluating when another symbol is open.
Risk/reward geometry recalculates position size, costs, partial targets and expected value — then exports to PineNode.
Search, rename, group, lock, duplicate, reorder and multi-select drawings; attach theses, scenarios, events and comments.
2–5 tickers side-by-side in % change, price or volume mode.
Step through historical bars to practice setups bar-by-bar.
Indicators
Tuned defaults plus full parameter control. Stack them across panes or overlay on price.
Market data
One ticker search, one chart engine — stocks, ETFs, crypto, forex, futures and indices.
| Asset class | Snapshot | Historical | Real-time |
|---|---|---|---|
| US Stocks | |||
| ETFs | |||
| Crypto | |||
| Forex | |||
| Futures | — | — | |
| Indices |
Insights
Every insight is queryable from the AI agent and renderable on the chart.
0–10 composite from news velocity.
Short-term direction + confidence from trendline & technical confluence.
Off-exchange institutional block prints, mapped to price.
Sweeps, unusual activity, P/C ratio and max pain.
Buy vs. sell pressure aggregated per interval.
One-glance regime across 1d / 4h / 1h / 15m.
Historical month and quarter performance overlays.
Form 4 timeline, insider sentiment, institutional Δ.
Recommendations and target prices, normalized.
P/E, EPS, revenue, margins, ROE, debt — at a glance.
Reddit buzz + X trending velocity per ticker.
PineNode
A custom JavaScript DSL — no TradingView lock-in. 13 indicator classes, Pine Script import, backtests, walk-forward, Monte Carlo and a parameter optimizer.
strategy("SMA Cross", { initialCash: 10_000 })
const fast = SMA(close, param("fast", 20))
const slow = SMA(close, param("slow", 50))
if (crossover(fast, slow)) strategy.entry("long", "long")
if (crossunder(fast, slow)) strategy.close("long")
plot(fast, { color: "#3DDC97" })
plot(slow, { color: "#9CA3AF" })Transpile TradingView strategies into PineNode in one click.
1,000 simulated sequences with p5–p95 / p25–p75 distributions.
Grid search via strategy.param() — surfaces robust parameter zones.
MEET 'AUGUR' - CUSTOM MARKET AGENT THAT CAN RESEARCH, ANALYZE AND EXECUTE STRATEGIES
37 tools wired in — snapshots, sentiment, news, movers, screeners, dark pool, options flow, dashboard + options-strategy visualization, URL fetch, and PineNode strategy generation.
Agent emits a research plan, you approve, it executes — every step is auditable.
Agent picks up the best modal automatically based on the request
SnapshotCard, SentimentGauge, NewsCards, MoversTable, ScreenerTable, StrategyCard.
Verify & Alerts
Enter ticker, entry, stop, target, timeframe and lookback. Get a verdict headline, stats grid, Monte Carlo distribution and the full trade list. Shareable via query-param URL — built for Reddit and X.
Price thresholds and multi-factor combinations (price × volume × %-move) with in-app notifications. More alert types (RSI extremes, MACD cross, golden/death cross, volume spike, 52w bands, email digests) rolling in.
PineNode CLI
The same engine that powers the in-app Strategy Tester, exposed as a single binary. Backtest locally on Pro, fetch institutional data on Elite, deploy live on Trader — all without leaving your editor.
# install once
$ npm install -g @sentimentor/pinenode-cli
# connect via personal access token
$ pn login
Connected as you@email — Plan: Elite
# fetch 30 days of bars and run a backtest
$ pn fetch --ticker AAPL --days 30 --out bars.json
$ pn run strat.pinenode --bars bars.json
# crypto / forex / indices
$ pn fetch --ticker BTCUSD --crypto --days 30 --out btc.json
# sweep parameters in the cloud
$ pn optimize strat.pinenode --ticker AAPL
# save + deploy (paper, Trader-only)
$ pn push strat.pinenode --name "smoke"
$ pn deploy strat.pinenode --ticker AAPL --paperTradingView Premium is $69.95/mo, then $30 per exchange for real-time data. Other AI platforms start around $199+/mo with capped workflows. Dark pool flow is a $99/mo third-party add-on. Sentimentor Pro is $29.99/mo — and includes all of it.
| Capability | Sentimentor Pro($29.99/mo) | TradingView Premium($69.95/mo) | Other AI Platforms($199+/mo) |
|---|---|---|---|
| Real-time market data | ✓ Included | + $30/mo per exchange | Limited |
| Dark pool & institutional flow | ✓ Included | ✗ Not available | ✗ Not available |
| Options flow + gamma walls | ✓ Included | ✗ Not available | ✗ Not available |
| AI sentiment scoring | ✓ Included | ✗ Not available | Limited |
| AI research workflows | ✓ 3/day (preset digests) | ✗ Not available | Capped monthly runs |
| Visual workflow DAG editor | ✓ Included | ✗ Not available | ✗ Not available |
| Walk-forward + Monte Carlo backtest | ✓ Included | Manual (Pine Script) | ✗ Not available |
| Strategy engine | ✓ PineNode (JavaScript DSL) | Pine Script v5 | ✗ Not available |
| PineNode CLI (local + cloud) | ✓ Local (cloud on Elite+) | ✗ Not available | ✗ Not available |
| Predictive price model | ✓ Included | ✗ Not available | ✗ Not available |
| Insider trades, 13F, analyst data | ✓ Included | ✗ Add-on required | ✗ Not available |
Same charts. Same broker integrations. More tools. Fraction of all-in cost.
No credit card required · Cancel anytime
Your edge is one question away. Ship a backtested strategy in the next five minutes.
No credit card required · Cancel anytime
We use cookies and similar technologies to enhance your experience, analyze usage, and provide personalized content. Your preferences will be saved and applied across your visits. California residents have additional privacy rights under CCPA.