Strategy
Data ready, Strategy turn.
Once the Market Data is in place, the Strategies Python come in to build the strategy. The script backtests and recreates the indicators and the triggers on the candles, and produces one folder for every strategy it generates. This is the key to backtesting millions of combinations in the most efficient way possible. Once the results exist, all that is left is selecting the best ones.
The creation process
Market datathe foundation of the strategy
Parameter setevery combination
Backtest
WrittenWrite the strategy produced on each folder
Scale big without a touch
Every trigger is recreated directly on the candle arrays instead of being simulated candle by candle. That single choice is what turns millions of combinations from a job of days into a job of hours, that run automatically, and it is what makes testing the whole space possible at all.