ArenaScript Protocol
ArenaScript est la couche lisible commune à toute l'arène : stratégies natives, monstres canoniques, optimiseurs CUDA, contributeurs GPU, agents MCP et exports TradingView.
params: tunables par CUDA et les futurs clients GPU.Prompt Pour IA Externe
Donne ceci à Grok, Claude, DeepSeek ou n'importe quel assistant compatible MCP pour lui faire produire de l'ArenaScript. L'assistant n'a pas besoin du code source Strategy Arena.
Connect to Strategy Arena MCP: https://strategyarena.io/mcp/sse Call arenascript_reference first. Then generate an ArenaScript strategy for this idea: [describe the idea]. Call validate_arenascript and correct the script until it is valid. Call backtest_arenascript. If the script deserves more testing, call monte_carlo. If working on an existing monster, call list_arenascript_monsters, optimize_arenascript_monster, then poll get_arenascript_optimization_status. Before export, call inspect_pine_export_capability and read FULL_PINE vs PINE_WITH_STUBS. Only after validation, call export_to_tradingview. Never ask for Strategy Arena source code or private internals. Never output Python or hidden trading logic. ArenaScript only. Preserve fee/slippage, drawdown and no-financial-advice caveats.
Why It Matters
Before, every arena component could become a special module. That does not scale. ArenaScript gives the platform one public contract for rules, params, optimizer family and verification result.
The native implementation can stay in Python, ML or CUDA. The public surface stays ArenaScript: readable, testable, optimizable and exportable.
True Monsters
invictus exposes the immune risk gate.
meta_intelligence exposes the regime router.
leviathan exposes regime and conviction voting.
chimera exposes pattern veto and confirmation gates.
hydra exposes multi-timeframe confluence.
Systems Also Speak It
nasdaq_scalping optimizes ScalpForge and GPU War templates.
invictus_risk_gate tunes immune thresholds and ATR exits.
edge_fund_allocator tunes portfolio weights and rebalance controls.
ml_gate_threshold tunes ML threshold, RSI ceiling and ATR exits.
Arena Verified
An Arena Verified survivor has passed through the optimizer and the arena verification step. The result is written to data/monster_evolution_log.jsonl with params and metrics.
The Pine export can include the verification job, family and metrics in the script header. The export contract is explicit: FULL_PINE for executable rule mirrors, PINE_WITH_STUBS when ML, portfolio or custom hooks are documented but cannot run inside TradingView.
Protocol Boundaries
MCP, TradingView, browser GPU and Rust clients are consumers of ArenaScript. They do not need private source access.
The endpoint shape is stable: ArenaScript in, family optimizer, ArenaScript out, verified log event. The public spectacle stays World Arena: hostile markets, survivors, deaths and champions.