Strategy Builder
Composing entry and exit rules without writing code.
Market and timeframe
Start by selecting your market and timeframe in the left column. The engine loads real exchange candles for that pair, and every rule you add is evaluated against them immediately so you can see behaviour before running a full validation.
Timeframe matters more than most beginners expect. The same rule set on 15m and 4h are effectively two different strategies with different cost profiles, because trade frequency drives total fees paid.
Adding indicators
The indicator selector offers 55 built-in indicators spanning trend, momentum, volatility and volume families. Pro and Elite can define custom indicators from arithmetic combinations of existing series, up to 20 per account.
Each indicator you add exposes its own parameters. Leave them at defaults for a first pass — tuning before you know whether the base idea works is the fastest route to an overfitted result.
Entry and exit rules
Rules are composed as conditions joined by AND / OR. A typical entry might be an oscillator crossing above zero while a second indicator confirms oversold conditions. Exits can be rule-based, time-based, or driven by stop-loss and take-profit levels.
Always define an explicit exit. Strategies that only specify entries inherit whatever default exit the engine applies, and that is rarely what you intended.
1ENTRY WHEN2 AO crosses above 03 AND Williams %R < -60 (within 5 bars)4EXIT WHEN5 AO crosses below 06 OR stop_loss = 2.5%7 OR take_profit = 6.0%