DEV Community

Nic Jordan
Nic Jordan

Posted on

SolNexus Trade Roadmap: Building a Transparent, Self-Calibrating Solana Trading Bot

SolNexus Trade Roadmap: Building a Transparent, Self-Calibrating Solana Trading Bot

SolNexus Trade is a live Solana trading bot that closes the full loop most platforms stop short of: Detect → ML Score → Execute → Review → self-calibrate. Unlike copy-trading terminals or static sniping bots, our pipeline learns from every closed trade and adapts without manual retraining. This post outlines what's shipping now, what's next, and why we're building in public.

What's Live Now

The core loop is operational on https://solnexus.xyz. Traders can already use the free tier to explore the interface, run paper trades, and review sample whale alerts with a 4h delay.

Detection Engines

Two independent real-time engines power detection. TokenPricePoller aggregates data from Jupiter and DexScreener to catch DEX pool breakouts across Raydium, Orca, and Meteora. WalletAlertPoller monitors on-chain whale and shark wallets via Helius RPC, flagging large movements before they hit the broader market. Free users receive delayed sample alerts; Pro and Overmind users get live pushes to Telegram and Discord.

These engines run continuously, scanning for new pools and unusual wallet flows. Because they are independent, a signal must pass both price-based and wallet-flow checks to advance to the ML scoring layer, reducing false positives.

ML Scoring Pipeline

Every detected signal runs through a four-layer ML scoring pipeline before it can reach your dashboard. Layer 1 applies a deterministic formula based on on-chain metrics. Layer 2 provides historical reinforcement, nudging confidence scores based on how similar signal types performed in the past. Layer 3 is the core ML engine: a Thompson Sampling bandit using Beta(α,β) posteriors to balance exploration and exploitation. Layer 4 produces the final execution-policy score.

The Emit Gate enforces three hard thresholds — confidence ≥ 50, execution_confidence ≥ 58, and token_quality ≥ 62 — and silently drops anything below them. This prevents low-conviction signals from cluttering your workflow.

Execution & Review

Execution uses Jupiter for wallet-native, on-chain swaps. Every transaction is verifiable on Solscan. Paper trading requires no wallet connection. Live trading uses a dedicated trade wallet you authorize; its key is secured in Azure Key Vault with RBAC scoped to SolNexus. Your login wallet is self-custody (Ed25519, no keys shared) and never holds bot funds.

The signal accountability dashboard scores every alert on +15m, +1h, +4h, and +1d. You can audit exactly how every signal played out, reverse-engineer what your own trade would have done, and calibrate your decision-making against real outcomes.

What's Shipping Next

Live Trading Rollout

Live execution is feature-complete and entering final market-condition validation. Once live, users will authorize a dedicated trade wallet (secured in Azure Key Vault) and let the bot act autonomously on scored signals. No deposits to a central account. Every trade is on-chain and Solscan-verifiable.

Overmind Tier

The Overmind tier ($199/month) will include frontier GPT daily AI plan refreshes. Each plan includes entry triggers, position sizing, take-profit levels, hard stops, and three invalidators. A second-pass verifier reviews every plan and downgrades over-optimistic output, keeping the risk-first design intact.

Extended Signal Coverage

More whale wallets will be added to the monitoring set, DEX pool analytics will deepen across Raydium, Orca, and Meteora, and early-detection heuristics will surface new-launch tokens and micro-caps before they appear on major aggregators.

Open-Source Proof

The SolNexus freqtrade adapter is MIT-licensed, CI green, and forkable now. You can inspect the scoring logic, the bandit implementation, and the integration tests yourself. This is not a marketing claim — it is a public repository you can clone, run, and verify.

Why We Build in Public

We treat every signal's outcome as training data. When a position closes, its P&L feeds back into Layer 2 historical reinforcement and the Layer 3 Thompson Sampling bandit, re-tuning the model automatically. Fresh bots start conservative and earn aggression as samples build.

This means the system improves with every trade — yours, ours, anyone's using it. We publish the roadmap and the audit trail so the community can verify progress, not just trust a pitch deck. To our knowledge, no other Solana trading tool closes this entire loop with an ML pipeline that learns from every closed trade.

Test the Loop Before Launch

We're onboarding traders to test the end-to-end Detect → Score → Execute → Review → self-calibrate loop before public launch. Testers get 3 months of Pro free in exchange for structured feedback at go-live. While testing, you extract real product value: live whale and shark alerts for smart-money tracking, the signal accountability dashboard that audits every alert on +15m, +1h, +4h, and +1d, paper trading across Smart-Money, Non-Pump, and AI Curated strategies with adjustable confidence scores and parallel backtests, pool and token analytics for on-chain market dynamics, and early detection of new-launch tokens and micro-caps you'd never find manually.

If you want to help break the loop, join the waitlist at https://solnexus.xyz/waitlist.

Top comments (0)