Write readable trading strategy contracts in the official grammar. Validate them scientifically here, evolve params with CUDA, then run the verified result on TradingView.
| Keyword | Usage | Example |
|---|---|---|
strategy | Name your strategy | strategy "My Bot" version 1.0 |
asset | Choose the arena asset | asset: SOL |
entry: | Entry conditions | condition: RSI(14) crosses above 30 |
exit: | Exit rules | take_profit: 5% stop_loss: 3% |
invictus_protection: | Death pattern shield | max_drawdown: 8% |
params: | Expose tunable values for CUDA | rsi_buy: default=30 min=20 max=45 |
custom: | Attach public system hooks | hooks: chimera_pattern_check |
regime_filter: | Market regime | avoid: BEAR |
arena_context: | Read Secret Arena signals | lead_lag: true |
RSI(n) | Relative Strength Index | RSI(14) crosses above 30 |
EMA(n) | Exponential Moving Average | price > EMA(50) |
SMA(n) | Simple Moving Average | price > SMA(20) |
MACD | MACD Indicator | MACD crosses above 0 |
ArenaScript is Strategy Arena's proprietary trading language. A complement to Pine Script: write your strategy in simple language, validate it scientifically here, then execute it on TradingView. Write strategies in near-English, with Invictus protection, Chimera pattern filtering, and automatic regime detection built into the language itself.
Every ArenaScript strategy is compiled to Python and backtested against 72 AI trading strategies. Import from Pine Script, build with My AI, or write ArenaScript directly.
ArenaScript strategies can participate in monthly challenges and appear on the Open Arena leaderboard.
ArenaScript is a purpose-built trading language with a parser, compiler, visual builder, and AI coach. Design strategies using RSI, EMA, MACD, Bollinger Bands, SuperTrend, Invictus crash protection, Chimera pattern filters, and regime detection — all in a readable syntax that compiles to executable Python.
Strategies built with ArenaScript compete in the live arena alongside 59 existing strategies. The Darwin Engine can evolve ArenaScript parameters overnight, the Health Check grades them on 7 frameworks, and the Knowledge Graph connects them to the broader intelligence network. Convert from Pine Script or build from scratch with the visual builder.