DEV Community

Nic Jordan
Nic Jordan

Posted on

What a Risk-First Solana AI Trading Plan Actually Looks Like

What a Risk-First Solana AI Trading Plan Actually Looks Like

Most "AI trading bots" on Solana will hand you a paragraph of advice and call it a plan. A real Solana AI trading plan is something else entirely: a structured, auditable artifact with an entry trigger, position sizing, a take-profit target, a hard stop, and three invalidators that tell you exactly when the thesis is dead. This post breaks down how SolNexus Trade builds plans that are risk-first by design — and how a second-pass verifier keeps over-optimistic output away from your screen.

The problem with most "AI trading plans"

The common failure mode is simple: a model generates text, the user reads it as a recommendation, and nobody checks whether the numbers survive contact with volatility. There is no entry discipline, no sizing math, and — most dangerously — no defined exit when the idea is wrong. A plan without invalidators is a hope with formatting.

SolNexus treats a plan as a machine-readable contract, not a chat reply. Every plan is generated and then independently reviewed before it reaches you. The plan-generation prompt itself forbids promising profit or guaranteeing returns — risk-first is enforced in code, not claimed in a slogan.

Anatomy of a SolNexus AI plan

Entry trigger

The entry is defined by a concrete condition, not "buy the dip." It is derived from the same ML confidence_score that drives the product's Emit Gate — on-chain whale/shark flow, DEX breakout signals, or new-coin detection that clears the three Emit thresholds (confidence ≥ 50, execution_confidence ≥ 58, token_quality ≥ 62). If a signal doesn't clear the gate, it is dropped silently. The plan's entry is the human-readable export of that screening.

Position sizing

Sizing is expressed as a percentage of the allocated wallet, with the math shown. No "go big" language. The point is repeatability: a plan you can run ten times and still survive the losers.

Take-profit

A defined TP level tied to the signal's measured move, not a round-number fantasy. The verifier checks TP against recent volatility; an unrealistic target gets flagged before publish.

Hard stop

A hard stop is mandatory. It is the line where the thesis is proven wrong, stated in price and percentage terms. No plan ships without one.

The three invalidators

This is the part most tools skip. An invalidator is a condition that kills the trade regardless of P&L — for example, the whale wallet that triggered the alert rotates out, liquidity drops below a threshold, or the broader signal context flips. Three of them, explicitly written, so you always know what "I was wrong" looks like before you enter.

The second-pass verifier

Every plan passes through a separate verification pass — a second model check that scores the plan for over-optimism: unrealistic take-profit versus volatility, a stop set too tight to survive noise, or missing invalidators. When the verifier finds a problem, it downgrades the plan before you ever see it. The system argues with itself so you are not sold a pipe dream.

How the ML pipeline backs the plan

This is the part that separates SolNexus from copy-trading terminals. The plan is not a disconnected chat box — it rides the same four-layer ML scoring pipeline that runs the bots: L1 deterministic formula → L2 historical reinforcement → L3 contextual Thompson Sampling bandit (Beta(α,β) posteriors) → L4 execution-policy score. The confidence_score the plan references is the same one that gates live signals. To our knowledge, no other Solana trading tool closes this entire loop with an ML pipeline that learns from every closed trade. See the mechanics at https://solnexus.xyz/bot/guide.

Self-calibration: plans that learn from closed trades

When a planned trade closes, its realized P&L flows back into L2 and the L3 bandit, which re-tune automatically — no manual retraining. That means the next plan you receive is informed by how the last one actually performed. Fresh accounts start conservative and earn aggression as samples build. The loop is Detect → Score → Execute → Review → self-Calibrate, and the AI plan is the readable face of that loop.

Tiers and access

AI plans are available on every tier. The Overmind tier ($199/month, paid in USDC) adds daily GPT-refreshed plans — your plan is re-derived each day against live market conditions instead of being left to stale. Pro ($99/month, USDC) includes the plan engine, live whale alerts to Telegram/Discord, full wallet tracking, and bot access. Founding members lock $25/month for three months via the waitlist.

Paper trading is live now and requires no keys. Live execution is feature-complete and in final market-condition validation — we describe it as controlled rollout, not generally available, and we will not imply open live trading before that validation completes. Login is wallet-native self-custody (Ed25519, no keys shared); live trading uses a dedicated trade wallet you authorize, with the key secured in Azure Key Vault and RBAC-scoped to SolNexus. Every on-chain action is verifiable on Solscan.

See it for yourself

A trading plan should be able to show you where it is wrong. That is the bar SolNexus holds. Explore the live product and read the bot guide at https://solnexus.xyz, or join the founding waitlist at https://solnexus.xyz/waitlist to watch how risk-first AI plans are built day to day.

Top comments (0)