Build a testable crypto strategy without code
A visual builder removes programming work, not the need for precision. If two people interpret a rule differently, the strategy is not ready to test.
Express the strategy as rules
Replace phrases such as “strong trend” or “small pullback” with indicator conditions, thresholds, timeframes, and unambiguous entry logic.
Define exits before optimizing entries
Position size, stop-loss, take-profit, break-even, and other exit conditions determine the risk profile. They belong in the first version, not as a later patch.
Keep one version tied to one result
Save the tested dates, starting balance, cost assumptions, and complete configuration. Create a new version when a rule changes so comparisons remain honest.
Rewrite the idea as a specification
Use one sentence per decision the bot must make.
- State which market and instruments are eligible and which timeframe drives the signal.
- Write separate entry, sizing, exit, and safety rules with measurable values.
- Mark every word that still depends on judgement, then replace it with a condition or remove it.
Minimum research record
Keep these inputs with every result so the test can be reproduced and compared without relying on memory.
- Exchange, market type, symbols, timeframe, and exact date range.
- Starting balance, position sizing, leverage, and risk limits.
- Entry, exit, stop-loss, take-profit, and filter configuration.
- Fee, funding, and execution assumptions used by the simulation.
- Net result, drawdown, trade count, losing periods, and known anomalies.
What this evidence cannot prove
A backtest cannot guarantee future returns or fully reproduce liquidity, order-book depth, latency, slippage, rejected orders, exchange downtime, or future funding rates. Use the result to reject weak assumptions and design the next controlled test—not as permission to take unlimited risk.
Make the strategy readable before making it complex
Open the builder with one simple hypothesis. Add indicators only when each addition answers a specific weakness found in evidence.