Skip to main content
Documentationv2.4
Open dashboard →
DocsStrategy Builder

Strategy Builder

Composing entry and exit rules without writing code.

UPDATED 3 DAYS AGO·6 MIN READ·03 SECTIONS
01

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.

02

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.

03

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.

ENTRY RULE — EXAMPLE
1ENTRY WHEN
2 AO crosses above 0
3 AND Williams %R < -60 (within 5 bars)
4EXIT WHEN
5 AO crosses below 0
6 OR stop_loss = 2.5%
7 OR take_profit = 6.0%
Was this page helpful?Report an issue →