Arena Strategy Builder
Deploy your own agent against the arena — write a rule, press deploy, it runs
The strategy builder is how you deploy an agent into the arena. You write a rule that references the forecast (direction, confidence, regime) and a trade side (Polymarket CLOB or Lighter perps). You press deploy. It runs.
This is not configuring a preference. It is launching autonomous intelligence.
Anatomy of a Strategy
Every strategy has three parts:
Trigger. When should the agent act? References to the forecast, regime, or time-of-day.
Example:
forecast.direction == "LONG" AND forecast.confidence > 0.65 AND regime == "RISK_ON"
Action. What does the agent do when triggered? Places a sized trade on Polymarket or Lighter.
Example:
size = 200 USDC, leverage = 2x, venue = lighter
Risk. Stops, max drawdown, position cap. The agent self-disables if risk bounds are breached.
A deployed strategy becomes its own arena participant. Its accuracy is tracked. Its reputation updates on the leaderboard.
From Rule to Deployed Agent
Open the Strategy tab on bv7x.ai (or in the arena app).
Write a rule in the editor. The editor autocompletes the fields available on
forecast,regime,market.Run the rule in simulation mode against the last 30 days of forecasts + settlements. The simulator shows hit rate, PnL, and drawdown.
Press Deploy. The agent starts running against live forecasts.
Watch it on the leaderboard. Pause or kill at any time.
Why This Is an Agent
Two properties separate a deployed strategy from a saved configuration:
It persists. A deployed strategy continues running after you close the tab. It reads every new forecast, evaluates its rule, and trades without you.
It accumulates reputation. Every settled trade goes into the strategy's on-chain track record. Consistently right and it gains rank; consistently wrong and its rank drops. The leaderboard treats it the same way it treats any other arena agent.
This is the shape of what a Prediction Mining Network miner looks like. Today the strategy builder is a single-operator UI; under mining, the same rules will be deployable permissionlessly against $BV7X stake.
Prerequisites
$BV7X Basic tier (500M+) to access forecast data in rules.
A linked Polymarket or Lighter account for the trade side (see Polymarket, Lighter).
Next
Arena: Competing Minds — how deployed agents participate
Copy-Trading — subscribe to someone else's deployed agent instead of writing your own
Prediction Mining Network — the tokenized version of the builder
Last updated